UPGRADE NOTE: Do not edit or add to this file if you wish to upgrade AbanteCart to newer versions in the future. If you wish to customize AbanteCart for your needs please refer to http://www.AbanteCart.com for more information. ------------------------------------------------------------------------------*/ if (! defined ( 'DIR_CORE' )) { header ( 'Location: static_pages/' ); } class ControllerBlocksMenu extends AController { public $data=array(); private $menu_items; public function main() { $this->loadLanguage('blocks/menu'); $this->loadLanguage('common/header'); $this->data['heading_title'] = $this->language->get('heading_title'); $cache_name = 'storefront_menu'; $this->menu_items = $this->cache->get($cache_name, $this->config->get('storefront_language_id')); if(!$this->menu_items){ $menu = new AMenu_Storefront(); $this->menu_items = $menu->getMenuItems(); $this->menu_items = $this->_buildMenu(''); //writes into cache result of calling _buildMenu func! $this->cache->set($cache_name, $this->menu_items, $this->config->get('storefront_language_id')); } $storefront_menu = $this->menu_items; $this->session->data['storefront_menu'] = $storefront_menu; $this->data['storemenu'] = $storefront_menu; $this->view->batchAssign($this->data); $this->processTemplate(); } private function _buildMenu( $parent = '' ) { $menu = array(); if ( empty($this->menu_items[$parent]) ) return $menu; $lang_id = (int)$this->config->get('storefront_language_id'); foreach ( $this->menu_items[$parent] as $item ) { if( preg_match ( "/^http/i", $item ['item_url'] ) ){ $href = $item ['item_url']; } else { $href = $this->html->getURL ( $item ['item_url'] ); } $menu[] = array( 'id' => $item['item_id'], 'current' => $item['current'], 'icon' => $item['item_icon'], 'icon_rl_id' => $item['item_icon_rl_id'], 'href' => $href, 'text' => $item['item_text'][$lang_id], 'children' => $this->_buildMenu( $item['item_id'] ), ); } return $menu; } }