80 lines
1.7 KiB
PHP
80 lines
1.7 KiB
PHP
<?php
|
|
/**
|
|
* @package Joomla.Administrator
|
|
* @subpackage com_weblinks
|
|
*
|
|
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
|
*/
|
|
|
|
defined('_JEXEC') or die;
|
|
|
|
/**
|
|
* Weblinks helper.
|
|
*
|
|
* @package Joomla.Administrator
|
|
* @subpackage com_weblinks
|
|
* @since 1.6
|
|
*/
|
|
class WeblinksHelper
|
|
{
|
|
/**
|
|
* Configure the Linkbar.
|
|
*
|
|
* @param string The name of the active view.
|
|
* @since 1.6
|
|
*/
|
|
public static function addSubmenu($vName = 'weblinks')
|
|
{
|
|
JHtmlSidebar::addEntry(
|
|
JText::_('COM_WEBLINKS_SUBMENU_WEBLINKS'),
|
|
'index.php?option=com_weblinks&view=weblinks',
|
|
$vName == 'weblinks'
|
|
);
|
|
JHtmlSidebar::addEntry(
|
|
JText::_('COM_WEBLINKS_SUBMENU_CATEGORIES'),
|
|
'index.php?option=com_categories&extension=com_weblinks',
|
|
$vName == 'categories'
|
|
);
|
|
if ($vName == 'categories')
|
|
{
|
|
JToolbarHelper::title(
|
|
JText::sprintf('COM_CATEGORIES_CATEGORIES_TITLE', JText::_('com_weblinks')),
|
|
'weblinks-categories');
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Gets a list of the actions that can be performed.
|
|
*
|
|
* @param integer The category ID.
|
|
* @return JObject
|
|
* @since 1.6
|
|
*/
|
|
public static function getActions($categoryId = 0)
|
|
{
|
|
$user = JFactory::getUser();
|
|
$result = new JObject;
|
|
|
|
if (empty($categoryId))
|
|
{
|
|
$assetName = 'com_weblinks';
|
|
$level = 'component';
|
|
}
|
|
else
|
|
{
|
|
$assetName = 'com_weblinks.category.'.(int) $categoryId;
|
|
$level = 'category';
|
|
}
|
|
|
|
$actions = JAccess::getActions('com_weblinks', $level);
|
|
|
|
foreach ($actions as $action)
|
|
{
|
|
$result->set($action->name, $user->authorise($action->name, $assetName));
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
}
|