mirror of
https://github.com/joomla-extensions/weblinks.git
synced 2025-02-10 13:18:28 +00:00
Merge remote-tracking branch 'upstream/master' into phpcs
This commit is contained in:
commit
b97d472f8f
@ -21,6 +21,7 @@ $listOrder = $this->escape($this->state->get('list.ordering'));
|
|||||||
$listDirn = $this->escape($this->state->get('list.direction'));
|
$listDirn = $this->escape($this->state->get('list.direction'));
|
||||||
$canOrder = $user->authorise('core.edit.state', 'com_weblinks.category');
|
$canOrder = $user->authorise('core.edit.state', 'com_weblinks.category');
|
||||||
$saveOrder = $listOrder == 'a.ordering';
|
$saveOrder = $listOrder == 'a.ordering';
|
||||||
|
|
||||||
if ($saveOrder)
|
if ($saveOrder)
|
||||||
{
|
{
|
||||||
$saveOrderingUrl = 'index.php?option=com_weblinks&task=weblinks.saveOrderAjax&tmpl=component';
|
$saveOrderingUrl = 'index.php?option=com_weblinks&task=weblinks.saveOrderAjax&tmpl=component';
|
||||||
@ -80,27 +81,21 @@ if ($saveOrder)
|
|||||||
</tr>
|
</tr>
|
||||||
</tfoot>
|
</tfoot>
|
||||||
<tbody>
|
<tbody>
|
||||||
<?php foreach ($this->items as $i => $item) :
|
<?php foreach ($this->items as $i => $item) : ?>
|
||||||
$ordering = ($listOrder == 'a.ordering');
|
<?php $ordering = ($listOrder == 'a.ordering'); ?>
|
||||||
$item->cat_link = JRoute::_('index.php?option=com_categories&extension=com_weblinks&task=edit&type=other&cid[]='. $item->catid);
|
<?php $item->cat_link = JRoute::_('index.php?option=com_categories&extension=com_weblinks&task=edit&type=other&cid[]=' . $item->catid); ?>
|
||||||
$canCreate = $user->authorise('core.create', 'com_weblinks.category.' . $item->catid);
|
<?php $canCreate = $user->authorise('core.create', 'com_weblinks.category.' . $item->catid); ?>
|
||||||
$canEdit = $user->authorise('core.edit', 'com_weblinks.category.' . $item->catid);
|
<?php $canEdit = $user->authorise('core.edit', 'com_weblinks.category.' . $item->catid); ?>
|
||||||
$canCheckin = $user->authorise('core.manage', 'com_checkin') || $item->checked_out == $user->get('id') || $item->checked_out == 0;
|
<?php $canCheckin = $user->authorise('core.manage', 'com_checkin') || $item->checked_out == $user->get('id') || $item->checked_out == 0; ?>
|
||||||
$canChange = $user->authorise('core.edit.state', 'com_weblinks.category.' . $item->catid) && $canCheckin;
|
<?php $canChange = $user->authorise('core.edit.state', 'com_weblinks.category.' . $item->catid) && $canCheckin; ?>
|
||||||
?>
|
|
||||||
<tr class="row<?php echo $i % 2; ?>" sortable-group-id="<?php echo $item->catid; ?>">
|
<tr class="row<?php echo $i % 2; ?>" sortable-group-id="<?php echo $item->catid; ?>">
|
||||||
<td class="order nowrap center hidden-phone">
|
<td class="order nowrap center hidden-phone">
|
||||||
<?php
|
<?php $iconClass = ''; ?>
|
||||||
$iconClass = '';
|
<?php if (!$canChange) : ?>
|
||||||
if (!$canChange)
|
<?php $iconClass = ' inactive'; ?>
|
||||||
{
|
<?php elseif (!$saveOrder) : ?>
|
||||||
$iconClass = ' inactive';
|
<?php $iconClass = ' inactive tip-top hasTooltip" title="' . JHtml::tooltipText('JORDERINGDISABLED'); ?>
|
||||||
}
|
<?php endif; ?>
|
||||||
elseif (!$saveOrder)
|
|
||||||
{
|
|
||||||
$iconClass = ' inactive tip-top hasTooltip" title="' . JHtml::tooltipText('JORDERINGDISABLED');
|
|
||||||
}
|
|
||||||
?>
|
|
||||||
<span class="sortable-handler<?php echo $iconClass ?>">
|
<span class="sortable-handler<?php echo $iconClass ?>">
|
||||||
<i class="icon-menu"></i>
|
<i class="icon-menu"></i>
|
||||||
</span>
|
</span>
|
||||||
@ -114,14 +109,12 @@ if ($saveOrder)
|
|||||||
<td class="center">
|
<td class="center">
|
||||||
<div class="btn-group">
|
<div class="btn-group">
|
||||||
<?php echo JHtml::_('jgrid.published', $item->state, $i, 'weblinks.', $canChange, 'cb', $item->publish_up, $item->publish_down); ?>
|
<?php echo JHtml::_('jgrid.published', $item->state, $i, 'weblinks.', $canChange, 'cb', $item->publish_up, $item->publish_down); ?>
|
||||||
<?php // Create dropdown items and render the dropdown list.
|
<?php // Create dropdown items and render the dropdown list. ?>
|
||||||
if ($canChange)
|
<?php if ($canChange) : ?>
|
||||||
{
|
<?php JHtml::_('actionsdropdown.' . ((int) $item->state === 2 ? 'un' : '') . 'archive', 'cb' . $i, 'weblinks'); ?>
|
||||||
JHtml::_('actionsdropdown.' . ((int) $item->state === 2 ? 'un' : '') . 'archive', 'cb' . $i, 'weblinks');
|
<?php JHtml::_('actionsdropdown.' . ((int) $item->state === -2 ? 'un' : '') . 'trash', 'cb' . $i, 'weblinks'); ?>
|
||||||
JHtml::_('actionsdropdown.' . ((int) $item->state === -2 ? 'un' : '') . 'trash', 'cb' . $i, 'weblinks');
|
<?php echo JHtml::_('actionsdropdown.render', $this->escape($item->title)); ?>
|
||||||
echo JHtml::_('actionsdropdown.render', $this->escape($item->title));
|
<?php endif; ?>
|
||||||
}
|
|
||||||
?>
|
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td class="nowrap has-context">
|
<td class="nowrap has-context">
|
||||||
|
@ -32,9 +32,11 @@ class WeblinksController extends JControllerLegacy
|
|||||||
// Huh? Why not just put that in the constructor?
|
// Huh? Why not just put that in the constructor?
|
||||||
$cacheable = true;
|
$cacheable = true;
|
||||||
|
|
||||||
// Set the default view name and format from the Request.
|
/**
|
||||||
// Note we are using w_id to avoid collisions with the router and the return page.
|
* Set the default view name and format from the Request.
|
||||||
// Frontend is a bit messier than the backend.
|
* Note we are using w_id to avoid collisions with the router and the return page.
|
||||||
|
* Frontend is a bit messier than the backend.
|
||||||
|
*/
|
||||||
$id = $this->input->getInt('w_id');
|
$id = $this->input->getInt('w_id');
|
||||||
$vName = $this->input->get('view', 'categories');
|
$vName = $this->input->get('view', 'categories');
|
||||||
$this->input->set('view', $vName);
|
$this->input->set('view', $vName);
|
||||||
|
@ -180,7 +180,7 @@ abstract class WeblinksHelperRoute
|
|||||||
/**
|
/**
|
||||||
* Find items per given $needles
|
* Find items per given $needles
|
||||||
*
|
*
|
||||||
* @params array $needles
|
* @param array $needles
|
||||||
*
|
*
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
@ -223,9 +223,11 @@ abstract class WeblinksHelperRoute
|
|||||||
|
|
||||||
if (isset($item->query['id']))
|
if (isset($item->query['id']))
|
||||||
{
|
{
|
||||||
// Here it will become a bit tricky
|
/**
|
||||||
// language != * can override existing entries
|
* Here it will become a bit tricky
|
||||||
// language == * cannot override existing entries
|
* language != * can override existing entries
|
||||||
|
* language == * cannot override existing entries
|
||||||
|
*/
|
||||||
if (!isset(self::$lookup[$language][$view][$item->query['id']]) || $item->language != '*')
|
if (!isset(self::$lookup[$language][$view][$item->query['id']]) || $item->language != '*')
|
||||||
{
|
{
|
||||||
self::$lookup[$language][$view][$item->query['id']] = $item->id;
|
self::$lookup[$language][$view][$item->query['id']] = $item->id;
|
||||||
|
@ -34,8 +34,6 @@ class WeblinksViewForm extends JViewLegacy
|
|||||||
public function display($tpl = null)
|
public function display($tpl = null)
|
||||||
{
|
{
|
||||||
$user = JFactory::getUser();
|
$user = JFactory::getUser();
|
||||||
// Get the application
|
|
||||||
$app = JFactory::getApplication();
|
|
||||||
|
|
||||||
// Get model data.
|
// Get model data.
|
||||||
$this->state = $this->get('State');
|
$this->state = $this->get('State');
|
||||||
@ -62,11 +60,13 @@ class WeblinksViewForm extends JViewLegacy
|
|||||||
if (!empty($this->item))
|
if (!empty($this->item))
|
||||||
{
|
{
|
||||||
// Override the base weblink data with any data in the session.
|
// Override the base weblink data with any data in the session.
|
||||||
$temp = (array) $app->getUserState('com_weblinks.edit.weblink.data', array());
|
$temp = (array) JFactory::getApplication()->getUserState('com_weblinks.edit.weblink.data', array());
|
||||||
|
|
||||||
foreach ($temp as $k => $v)
|
foreach ($temp as $k => $v)
|
||||||
{
|
{
|
||||||
$this->item->$k = $v;
|
$this->item->$k = $v;
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->form->bind($this->item);
|
$this->form->bind($this->item);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -9,25 +9,21 @@
|
|||||||
|
|
||||||
defined('_JEXEC') or die;
|
defined('_JEXEC') or die;
|
||||||
?>
|
?>
|
||||||
<?php
|
|
||||||
if($params->get('groupby', 0)) :
|
|
||||||
|
|
||||||
$cats = array();
|
<?php if ($params->get('groupby', 0)) : ?>
|
||||||
$cols = $params->get('groupby_columns', 3);
|
<?php $cats = array(); ?>
|
||||||
|
<?php $cols = $params->get('groupby_columns', 3); ?>
|
||||||
foreach ($list as $l)
|
<?php foreach ($list as $l) : ?>
|
||||||
$cats[] = array('catid' => $l->catid, 'title' => $l->category_title);
|
<?php $cats[] = array('catid' => $l->catid, 'title' => $l->category_title); ?>
|
||||||
|
<?php endforeach; ?>
|
||||||
$cats = array_values(array_map('unserialize', array_unique(array_map('serialize', $cats))));
|
<?php $cats = array_values(array_map('unserialize', array_unique(array_map('serialize', $cats)))); ?>
|
||||||
|
<?php foreach ($cats as $k => $cat) : ?>
|
||||||
foreach ($cats as $k => $cat) :
|
<?php $items = array(); ?>
|
||||||
|
<?php foreach ($list as $item) : ?>
|
||||||
$items = array();
|
<?php if ($item->catid == $cat['catid']) : ?>
|
||||||
|
<?php $items[] = $item; ?>
|
||||||
foreach ($list as $item)
|
<?php endif; ?>
|
||||||
if ($item->catid == $cat['catid'])
|
<?php endforeach; ?>
|
||||||
$items[] = $item;
|
|
||||||
?>
|
|
||||||
<?php if ($cols > 1) : ?>
|
<?php if ($cols > 1) : ?>
|
||||||
<?php if ($k % $cols == 0) : ?>
|
<?php if ($k % $cols == 0) : ?>
|
||||||
<div class="row row-fluid">
|
<div class="row row-fluid">
|
||||||
@ -35,14 +31,13 @@ if($params->get('groupby', 0)) :
|
|||||||
<div class="span<?php echo (12 / $cols); ?>">
|
<div class="span<?php echo (12 / $cols); ?>">
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
<?php if ($params->get('groupby_showtitle', 1)) : ?>
|
<?php if ($params->get('groupby_showtitle', 1)) : ?>
|
||||||
<h4><?php echo htmlspecialchars($cat['title']); ?></h4>
|
<h4><?php echo htmlspecialchars($cat['title'], ENT_COMPAT, 'UTF-8')); ?></h4>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
<ul class="weblinks<?php echo $moduleclass_sfx; ?>">
|
<ul class="weblinks<?php echo $moduleclass_sfx; ?>">
|
||||||
<?php foreach ($items as $item) : ?>
|
<?php foreach ($items as $item) : ?>
|
||||||
<li>
|
<li>
|
||||||
|
<?php $link = $item->link; ?>
|
||||||
<?php
|
<?php
|
||||||
$link = $item->link;
|
|
||||||
|
|
||||||
switch ($item->params->get('target', 3))
|
switch ($item->params->get('target', 3))
|
||||||
{
|
{
|
||||||
case 1:
|
case 1:
|
||||||
@ -63,17 +58,14 @@ if($params->get('groupby', 0)) :
|
|||||||
htmlspecialchars($item->title, ENT_COMPAT, 'UTF-8') . '</a>';
|
htmlspecialchars($item->title, ENT_COMPAT, 'UTF-8') . '</a>';
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($params->get('description', 0))
|
|
||||||
{
|
|
||||||
echo nl2br($item->description);
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($params->get('hits', 0))
|
|
||||||
{
|
|
||||||
echo '(' . $item->hits . ' ' . JText::_('MOD_WEBLINKS_HITS') . ')';
|
|
||||||
}
|
|
||||||
?>
|
?>
|
||||||
|
<?php if ($params->get('description', 0)) : ?>
|
||||||
|
<?php echo nl2br($item->description); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
|
||||||
|
<?php if ($params->get('hits', 0)) : ?>
|
||||||
|
<?php echo '(' . $item->hits . ' ' . JText::_('MOD_WEBLINKS_HITS') . ')'; ?>
|
||||||
|
<?php endif; ?>
|
||||||
</li>
|
</li>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
</ul>
|
</ul>
|
||||||
@ -88,9 +80,8 @@ if($params->get('groupby', 0)) :
|
|||||||
<ul class="weblinks<?php echo $moduleclass_sfx; ?>">
|
<ul class="weblinks<?php echo $moduleclass_sfx; ?>">
|
||||||
<?php foreach ($list as $item) : ?>
|
<?php foreach ($list as $item) : ?>
|
||||||
<li>
|
<li>
|
||||||
|
<?php $link = $item->link; ?>
|
||||||
<?php
|
<?php
|
||||||
$link = $item->link;
|
|
||||||
|
|
||||||
switch ($item->params->get('target', 3))
|
switch ($item->params->get('target', 3))
|
||||||
{
|
{
|
||||||
case 1:
|
case 1:
|
||||||
@ -111,17 +102,15 @@ if($params->get('groupby', 0)) :
|
|||||||
htmlspecialchars($item->title, ENT_COMPAT, 'UTF-8') . '</a>';
|
htmlspecialchars($item->title, ENT_COMPAT, 'UTF-8') . '</a>';
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($params->get('description', 0))
|
|
||||||
{
|
|
||||||
echo nl2br($item->description);
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($params->get('hits', 0))
|
|
||||||
{
|
|
||||||
echo '(' . $item->hits . ' ' . JText::_('MOD_WEBLINKS_HITS') . ')';
|
|
||||||
}
|
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
<?php if ($params->get('description', 0)) : ?>
|
||||||
|
<?php echo nl2br($item->description); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
|
||||||
|
<?php if ($params->get('hits', 0)) : ?>
|
||||||
|
<?php echo '(' . $item->hits . ' ' . JText::_('MOD_WEBLINKS_HITS') . ')'; ?>
|
||||||
|
<?php endif; ?>
|
||||||
</li>
|
</li>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
</ul>
|
</ul>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user