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/' ); } //Possibly legacy and only for old template. Remove in 1.2 function renderStoreMenu( $menu, $level = 0 ){ $menu = (array)$menu; $result = ''; if ( $level ) $result .= "\r\n"; return $result; } //New menu tree builder (1.2+) function buildStoreFrontMenuTree( $menu_array, $level = 0 ){ $menu_array = (array)$menu_array; if (!$menu_array) { return ''; } $result = ''; //for submenus build new UL node if ( $level > 0 ) $result .= "\r\n"; return $result; } function renderAdminMenu( $menu, $level = 0, $current_rt = ''){ $result = ''; if ( $level ) $result .= "\r\n"; return $result; }