30
1
mirror of https://github.com/joomla-extensions/weblinks.git synced 2024-09-27 12:39:05 +00:00

Merge remote-tracking branch 'upstream/master' into phpcs

This commit is contained in:
Yves Hoppe 2016-08-01 19:50:42 +02:00
commit b97d472f8f
8 changed files with 152 additions and 166 deletions

View File

@ -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">

View File

@ -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);

View File

@ -45,7 +45,7 @@ abstract class WeblinksHelperRoute
{ {
$needles['category'] = array_reverse($category->getPath()); $needles['category'] = array_reverse($category->getPath());
$needles['categories'] = $needles['category']; $needles['categories'] = $needles['category'];
$link .= '&catid='.$catid; $link .= '&catid=' . $catid;
} }
} }
@ -62,7 +62,7 @@ abstract class WeblinksHelperRoute
if ($item = self::_findItem($needles)) if ($item = self::_findItem($needles))
{ {
$link .= '&Itemid='.$item; $link .= '&Itemid=' . $item;
} }
return $link; return $link;
@ -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;

View File

@ -188,7 +188,7 @@ class WeblinksModelCategory extends JModelList
} }
// If grouping by subcategory, add the subcategory list ordering clause. // If grouping by subcategory, add the subcategory list ordering clause.
if($this->getState('category.group', 0)) if ($this->getState('category.group', 0))
{ {
$query->order( $query->order(
$db->escape($this->getState('category.ordering', 'c.lft')) . ' ' . $db->escape($this->getState('category.ordering', 'c.lft')) . ' ' .

View File

@ -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);
} }

View File

@ -9,40 +9,35 @@
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 ($k % $cols == 0) : ?>
<?php if($cols > 1) : ?>
<?php if($k % $cols == 0) : ?>
<div class="row row-fluid"> <div class="row row-fluid">
<?php endif; ?> <?php endif; ?>
<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,21 +58,18 @@ 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>
<?php if($cols > 1) : ?> <?php if ($cols > 1) : ?>
</div> </div>
<?php if(($k + 1) % $cols == 0 || $k == count($cats) - 1) : ?> <?php if(($k + 1) % $cols == 0 || $k == count($cats) - 1) : ?>
</div> </div>
@ -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>