00001 <?php
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034 class Mage_Adminhtml_Block_Page_Menu extends Mage_Adminhtml_Block_Template
00035 {
00036 protected $_url;
00037 const CACHE_TAGS = 'BACKEND_MAINMENU';
00038
00039 protected function _construct()
00040 {
00041 parent::_construct();
00042 $this->setTemplate('page/menu.phtml');
00043 $this->_url = Mage::getModel('adminhtml/url');
00044 $this->setCacheTags(array(self::CACHE_TAGS));
00045 }
00046
00047 public function getCacheLifetime()
00048 {
00049 return 86400;
00050 }
00051
00052 public function getCacheKey()
00053 {
00054
00055 $id = Mage::getSingleton('admin/session')->getUser()->getId();
00056 return 'admin_top_nav_'.$this->getActive().'_'.$id.'_'.Mage::app()->getLocale()->getLocaleCode();
00057 }
00058
00059 public function getMenuArray()
00060 {
00061 return $this->_buildMenuArray();
00062 }
00063
00064 protected function _getHelperValue(Varien_Simplexml_Element $child)
00065 {
00066 $helperName = 'adminhtml';
00067 $titleNodeName = 'title';
00068 $childAttributes = $child->attributes();
00069 if (isset($childAttributes['module'])) {
00070 $helperName = (string)$childAttributes['module'];
00071 }
00072
00073
00074
00075
00076 return Mage::helper($helperName)->__((string)$child->$titleNodeName);
00077 }
00078
00079 protected function _buildMenuArray(Varien_Simplexml_Element $parent=null, $path='', $level=0)
00080 {
00081 if (is_null($parent)) {
00082 $parent = Mage::getConfig()->getNode('adminhtml/menu');
00083
00084
00085 }
00086 $parentArr = array();
00087 $sortOrder = 0;
00088 foreach ($parent->children() as $childName=>$child) {
00089
00090 $aclResource = 'admin/'.$path.$childName;
00091 if (!$this->_checkAcl($aclResource)) {
00092 continue;
00093 }
00094
00095 if ($child->depends && !$this->_checkDepends($child->depends)) {
00096 continue;
00097 }
00098
00099 $menuArr = array();
00100
00101 $menuArr['label'] = $this->_getHelperValue($child);
00102
00103 $menuArr['sort_order'] = $child->sort_order ? (int)$child->sort_order : $sortOrder;
00104
00105 if ($child->action) {
00106 $menuArr['url'] = $this->_url->getUrl((string)$child->action);
00107 } else {
00108 $menuArr['url'] = '#';
00109 $menuArr['click'] = 'return false';
00110 }
00111 #print_r($this->getActive().','.$path.$childName."<hr>");
00112 $menuArr['active'] = ($this->getActive()==$path.$childName)
00113 || (strpos($this->getActive(), $path.$childName.'/')===0);
00114
00115 $menuArr['level'] = $level;
00116
00117 if ($child->children) {
00118 $menuArr['children'] = $this->_buildMenuArray($child->children, $path.$childName.'/', $level+1);
00119 }
00120 $parentArr[$childName] = $menuArr;
00121
00122 $sortOrder++;
00123 }
00124
00125 uasort($parentArr, array($this, '_sortMenu'));
00126
00127 while (list($key, $value) = each($parentArr)) {
00128 $last = $key;
00129 }
00130 if (isset($last)) {
00131 $parentArr[$last]['last'] = true;
00132 }
00133
00134 return $parentArr;
00135 }
00136
00137 protected function _sortMenu($a, $b)
00138 {
00139 return $a['sort_order']<$b['sort_order'] ? -1 : ($a['sort_order']>$b['sort_order'] ? 1 : 0);
00140 }
00141
00142 protected function _checkDepends(Varien_Simplexml_Element $depends)
00143 {
00144 if ($depends->module) {
00145 $modulesConfig = Mage::getConfig()->getNode('modules');
00146 foreach ($depends->module as $module) {
00147 if (!$modulesConfig->$module || !$modulesConfig->$module->is('active')) {
00148 return false;
00149 }
00150 }
00151 }
00152
00153 if ($depends->config) {
00154 foreach ($depends->config as $path) {
00155 if (!Mage::getStoreConfigFlag((string)$path)) {
00156 return false;
00157 }
00158 }
00159 }
00160
00161 return true;
00162 }
00163
00164
00165
00166
00167
00168
00169
00170
00171
00172 protected function _checkAcl($resource)
00173 {
00174 try {
00175 $res = Mage::getSingleton('admin/session')->isAllowed($resource);
00176 } catch (Exception $e) {
00177 return false;
00178 }
00179 return $res;
00180 }
00181 }