45 lines
870 B
PHP
45 lines
870 B
PHP
<?php
|
|
/**
|
|
* @package Joomla.Administrator
|
|
* @subpackage com_joomlaupdate
|
|
*
|
|
* @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;
|
|
|
|
/**
|
|
* Joomla! update helper.
|
|
*
|
|
* @package Joomla.Administrator
|
|
* @subpackage com_joomlaupdate
|
|
* @since 2.5.4
|
|
*/
|
|
class JoomlaupdateHelper
|
|
{
|
|
/**
|
|
* Gets a list of the actions that can be performed.
|
|
*
|
|
* @return JObject
|
|
*
|
|
* @since 2.5.4
|
|
*/
|
|
public static function getActions()
|
|
{
|
|
$user = JFactory::getUser();
|
|
$result = new JObject;
|
|
|
|
$assetName = 'com_joomlaupdate';
|
|
|
|
$actions = JAccess::getActions($assetName);
|
|
|
|
foreach ($actions as $action)
|
|
{
|
|
$result->set($action->name, $user->authorise($action->name, $assetName));
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
}
|