?
Path : /home/admin/public_html/old/happy2/administrator/components/com_newsfeeds/helpers/ |
Current File : /home/admin/public_html/old/happy2/administrator/components/com_newsfeeds/helpers/newsfeeds.php |
<?php /** * @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ // No direct access. defined('_JEXEC') or die; /** * Newsfeeds component helper. * * @package Joomla.Administrator * @subpackage com_newsfeeds * @since 1.6 */ class NewsfeedsHelper { public static $extension = 'com_newsfeeds'; /** * Configure the Linkbar. * * @param string The name of the active view. */ public static function addSubmenu($vName) { JSubMenuHelper::addEntry( JText::_('COM_NEWSFEEDS_SUBMENU_NEWSFEEDS'), 'index.php?option=com_newsfeeds&view=newsfeeds', $vName == 'newsfeeds' ); JSubMenuHelper::addEntry( JText::_('COM_NEWSFEEDS_SUBMENU_CATEGORIES'), 'index.php?option=com_categories&extension=com_newsfeeds', $vName == 'categories' ); if ($vName=='categories') { JToolBarHelper::title( JText::sprintf('COM_CATEGORIES_CATEGORIES_TITLE', JText::_('com_newsfeeds')), 'newsfeeds-categories'); } } /** * Gets a list of the actions that can be performed. * * @param int The category ID. * * @return JObject */ public static function getActions($categoryId = 0, $newsfeedId = 0) { $user = JFactory::getUser(); $result = new JObject; if (empty($categoryId)) { $assetName = 'com_newsfeeds'; $level = 'component'; } else { $assetName = 'com_newsfeeds.category.'.(int) $categoryId; $level = 'category'; } $actions = JAccess::getActions('com_newsfeeds', $level); foreach ($actions as $action) { $result->set($action->name, $user->authorise($action->name, $assetName)); } return $result; } }