Source for file helper.php
Documentation is available at helper.php
* @subpackage mod_articles_popular
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
require_once JPATH_SITE.
'/components/com_content/helpers/route.php';
* Helper for mod_articles_popular
* @subpackage mod_articles_popular
public static function getList(&$params)
// Get an instance of the generic articles model
// Set application parameters in model
$appParams =
$app->getParams();
$model->setState('params', $appParams);
// Set the filters based on the module params
$model->setState('list.start', 0);
$model->setState('list.limit', (int)
$params->get('count', 5));
$model->setState('filter.published', 1);
$model->setState('filter.featured', $params->get('show_front', 1) ==
1 ?
'show' :
'hide');
$model->setState('filter.access', $access);
$model->setState('filter.category_id', $params->get('catid', array()));
$model->setState('filter.language', $app->getLanguageFilter());
$model->setState('list.ordering', 'a.hits');
$model->setState('list.direction', 'DESC');
$items =
$model->getItems();
foreach ($items as &$item)
$item->slug =
$item->id.
':'.
$item->alias;
$item->catslug =
$item->catid.
':'.
$item->category_alias;
if ($access ||
in_array($item->access, $authorised))
// We know that user has the privilege to view the article
$item->link =
JRoute::_('index.php?option=com_users&view=login');
Documentation generated on Tue, 19 Nov 2013 15:04:16 +0100 by phpDocumentor 1.4.3