| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/awebpaca/boutiques/app/code/core/Mage/Adminhtml/Block/Permissions/Tab/ |
Upload File : |
<?php
/**
* Magento
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@magentocommerce.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade Magento to newer
* versions in the future. If you wish to customize Magento for your
* needs please refer to http://www.magentocommerce.com for more information.
*
* @category Mage
* @package Mage_Adminhtml
* @copyright Copyright (c) 2010 Magento Inc. (http://www.magentocommerce.com)
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
class Mage_Adminhtml_Block_Permissions_Tab_Rolesedit extends Mage_Adminhtml_Block_Widget_Form implements Mage_Adminhtml_Block_Widget_Tab_Interface
{
/**
* Get tab label
*
* @return string
*/
public function getTabLabel()
{
return Mage::helper('adminhtml')->__('Role Resources');
}
/**
* Get tab title
*
* @return string
*/
public function getTabTitle()
{
return $this->getTabLabel();
}
/**
* Whether tab is available
*
* @return bool
*/
public function canShowTab()
{
return true;
}
/**
* Whether tab is visible
*
* @return bool
*/
public function isHidden()
{
return false;
}
public function __construct()
{
parent::__construct();
$rid = Mage::app()->getRequest()->getParam('rid', false);
$resources = Mage::getModel('admin/roles')->getResourcesList();
$rules_set = Mage::getResourceModel('admin/rules_collection')->getByRoles($rid)->load();
$selrids = array();
foreach ($rules_set->getItems() as $item) {
if (array_key_exists(strtolower($item->getResource_id()), $resources) && $item->getPermission() == 'allow') {
$resources[$item->getResource_id()]['checked'] = true;
array_push($selrids, $item->getResource_id());
}
}
$this->setSelectedResources($selrids);
$this->setTemplate('permissions/rolesedit.phtml');
//->assign('resources', $resources);
//->assign('checkedResources', join(',', $selrids));
}
public function getEverythingAllowed()
{
return in_array('all', $this->getSelectedResources());
}
public function getResTreeJson()
{
$rid = Mage::app()->getRequest()->getParam('rid', false);
$resources = Mage::getModel('admin/roles')->getResourcesTree();
$rootArray = $this->_getNodeJson($resources->admin, 1);
$json = Mage::helper('core')->jsonEncode(isset($rootArray['children']) ? $rootArray['children'] : array());
return $json;
}
protected function _sortTree($a, $b)
{
return $a['sort_order']<$b['sort_order'] ? -1 : ($a['sort_order']>$b['sort_order'] ? 1 : 0);
}
protected function _getNodeJson($node, $level=0)
{
$item = array();
$selres = $this->getSelectedResources();
if ($level != 0) {
$item['text']= (string)$node->title;
$item['sort_order']= isset($node->sort_order) ? (string)$node->sort_order : 0;
$item['id'] = (string)$node->attributes()->aclpath;
if (in_array($item['id'], $selres))
$item['checked'] = true;
}
if (isset($node->children)) {
$children = $node->children->children();
} else {
$children = $node->children();
}
if (empty($children)) {
return $item;
}
if ($children) {
$item['children'] = array();
//$item['cls'] = 'fiche-node';
foreach ($children as $child) {
if ($child->getName()!='title' && $child->getName()!='sort_order') {
if (!(string)$child->title) {
continue;
}
if ($level != 0) {
$item['children'][] = $this->_getNodeJson($child, $level+1);
} else {
$item = $this->_getNodeJson($child, $level+1);
}
}
}
if (!empty($item['children'])) {
usort($item['children'], array($this, '_sortTree'));
}
}
return $item;
}
}