From abb2f22b2e96a89a44ad9d36db3bf612c6f88b9f Mon Sep 17 00:00:00 2001 From: rvelices Date: Thu, 28 Aug 2008 00:32:39 +0000 Subject: - based on test_menu by grum (thanks to you) - integration of dynamic menu bar to pwg - the menubar is composed now of dynamic blocks that can be ordered/hidden - plugins can add their own blocks git-svn-id: http://piwigo.org/svn/trunk@2488 68402e56-0260-453c-a942-63ccdbb3a9ee --- plugins/test_menu/index.php | 33 -- plugins/test_menu/main.inc.php | 53 --- plugins/test_menu/maintain.inc.php | 44 -- plugins/test_menu/menu.class.inc.php | 511 --------------------- .../menu_templates/menubar_categories.tpl | 24 - .../test_menu/menu_templates/menubar_generic.tpl | 10 - .../menu_templates/menubar_identification.tpl | 67 --- plugins/test_menu/menu_templates/menubar_links.tpl | 17 - plugins/test_menu/menu_templates/menubar_main.tpl | 15 - plugins/test_menu/menu_templates/menubar_menu.tpl | 21 - .../test_menu/menu_templates/menubar_special.tpl | 10 - plugins/test_menu/menu_templates/menubar_tags.tpl | 19 - plugins/test_menu/menubar.inc.php | 320 ------------- 13 files changed, 1144 deletions(-) delete mode 100755 plugins/test_menu/index.php delete mode 100755 plugins/test_menu/main.inc.php delete mode 100644 plugins/test_menu/maintain.inc.php delete mode 100644 plugins/test_menu/menu.class.inc.php delete mode 100644 plugins/test_menu/menu_templates/menubar_categories.tpl delete mode 100644 plugins/test_menu/menu_templates/menubar_generic.tpl delete mode 100644 plugins/test_menu/menu_templates/menubar_identification.tpl delete mode 100644 plugins/test_menu/menu_templates/menubar_links.tpl delete mode 100644 plugins/test_menu/menu_templates/menubar_main.tpl delete mode 100644 plugins/test_menu/menu_templates/menubar_menu.tpl delete mode 100644 plugins/test_menu/menu_templates/menubar_special.tpl delete mode 100644 plugins/test_menu/menu_templates/menubar_tags.tpl delete mode 100644 plugins/test_menu/menubar.inc.php (limited to 'plugins/test_menu') diff --git a/plugins/test_menu/index.php b/plugins/test_menu/index.php deleted file mode 100755 index db1eae0d9..000000000 --- a/plugins/test_menu/index.php +++ /dev/null @@ -1,33 +0,0 @@ - diff --git a/plugins/test_menu/main.inc.php b/plugins/test_menu/main.inc.php deleted file mode 100755 index 72abbe9e6..000000000 --- a/plugins/test_menu/main.inc.php +++ /dev/null @@ -1,53 +0,0 @@ -> --------------------------------------------------------------------------------- - -:: HISTORY - --------------------------------------------------------------------------------- -*/ - -// pour faciliter le debug :o) - ini_set('error_reporting', E_ALL); - ini_set('display_errors', true); - -if(!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); - - -define('TEST_MENU_DIR' , basename(dirname(__FILE__))); -define('TEST_MENU_PATH' , PHPWG_PLUGINS_PATH . TEST_MENU_DIR . '/'); - -define('TEST_MENU_VERSION' , '1.0.0'); // => ne pas oublier la version dans l'entĂȘte !! - -global $prefixeTable, $menu; - -include_once("menu.class.inc.php"); - -function filemenu() -{ - return(TEST_MENU_PATH."menubar.inc.php"); -} - -$menu = new Menu(); - -if(basename($_SERVER["PHP_SELF"])!='admin.php') -{ - add_event_handler('menubar_file', 'filemenu'); -} - - -?> diff --git a/plugins/test_menu/maintain.inc.php b/plugins/test_menu/maintain.inc.php deleted file mode 100644 index 5aa42e213..000000000 --- a/plugins/test_menu/maintain.inc.php +++ /dev/null @@ -1,44 +0,0 @@ -register('mbLinks', 'Links', 1, 'piwigo'); - $menu->register('mbCategories', 'Categories', 2, 'piwigo'); - $menu->register('mbTags', 'Related tags', 3, 'piwigo'); - $menu->register('mbSpecial', 'special_categories', 4, 'piwigo'); - $menu->register('mbMenu', 'title_menu', 5, 'piwigo'); - $menu->register('mbIdentification', 'identification', 6, 'piwigo'); -} - -function plugin_activate($plugin_id, $plugin_version, &$errors) -{ -} - -function plugin_deactivate($plugin_id) -{ -} - -function plugin_uninstall($plugin_id) -{ -} - - - -?> diff --git a/plugins/test_menu/menu.class.inc.php b/plugins/test_menu/menu.class.inc.php deleted file mode 100644 index 7eece66bd..000000000 --- a/plugins/test_menu/menu.class.inc.php +++ /dev/null @@ -1,511 +0,0 @@ -> - ------------------------------------------------------------------------------ - - this classes provides base functions to manage the public gallery menu - - ** The Section class ** - This class allows you to easily make a section block for the menu - Public methods - get_id() - get_name() - get_template() - get_position() - get_tag() - get_items() - set_name($value) - set_template($value) - set_tag($value) - set_items($value) - items_count() - get() - Constructor - $id : section's id have to be unique in the menu - $name : section's name is displayed on the menu - $template : name of smarty template file ; if file doesn't exist, use of the - generic template - $tag : a facultative data ; use it as you want ! - $items : items of the menu : no specfic structure because it depends of - the template model - - ** The Menu class ** - This class allows to easily manage the menu - Public methods - add($section_datas) - remove($id) - replace($section_datas) - clear() - section($id) - sections() - ids() - count() - register($id, $name, $position, $owner) - register_position($id, $position) - unregister($id) - registered() - apply() - get_registered_filename() - - How to use Menu class : - 1/ create an instance - $menu = new Menu(); - instance have to be created by piwigo, plugin have to use of a global - variable - - 2/ register your menu section - register a section allows to know sections even if $menu is not loaded - register a section allows to manage position into menu - register function only reference some information about section, it does - not create the section of menu (an only registered section is not - displayed in menu) - best place to register a section : when plugin is activated - when deactivate plugin, unregister the section - - 3/ add section to menu - add a section allows to really create section into menu - - - - - ------------------------------------------------------------------------------ - :: HISTORY - - 1.0.0 - 2008-07-25 - first lines of code... - - --------------------------------------------------------------------------- */ - -// theses constant ave to be adapted for a piwigo's integration -define('MENU_TEMPLATES_DIR' , dirname(__FILE__)); -define('MENU_TEMPLATES_PATH' , MENU_TEMPLATES_DIR . '/menu_templates/'); -define('MENU_REGISTERED_PATH' , - PHPWG_PLUGINS_PATH . basename(dirname(__FILE__)) . '/'); - - -class Menu -{ - protected $sections=array(); //array key is unique ID of sections - protected $registered_sections=array(); - protected $registered_file="registered.dat"; - - public function Menu($registered_path='') - { - if($registered_path!='') - { - $this->registered_file=$registered_path.$this->registered_file; - } - $this->load_registered(); - } - - /* - public functions - */ - public function get_registered_filename() - { - // return filename of file for maintain of registered sections - return($this->registered_file); - } - - public function add($section_datas) - { - // add a section to the menu ; datas can be made with the Section class - if($this->section_is_valid($section_datas) and - !isset($this->sections[$section_datas['ID']]) ) - { - $this->sections[$section_datas['ID']]=$section_datas; - - if(isset($this->registered_sections[$section_datas['ID']])) - { - $this->sections[$section_datas['ID']]['POSITION']=$this->registered_sections[$section_datas['ID']]['POSITION']; - } - else - { - $this->sections[$section_datas['ID']]['POSITION']=0; - } - return(true); - } - return(false); - } - - public function remove($id) - { - // remove a section from the menu - unset($this->sections[$id]); - } - - public function replace($section_datas) - { - // replace an existing section description by another one - if($this->section_is_valid($section_datas) and - isset($this->sections[$section_datas['ID']]) ) - { - $this->sections[$section_datas['ID']]=$section_datas; - return(true); - } - return(false); - } - - public function clear() - { - // clear all sections of the menu - $this->sections=array(); - } - - public function section($id) - { - //return a section structure or false if requested ID not exists - if(isset($this->sections[$id])) - { - return($this->sections[$id]); - } - return(false); - } - - public function sections() - { - //return all sections - return($this->sections); - } - - public function ids() - { - //return all section's ids - return(array_keys($this->sections)); - } - - public function count() - { - //return number of sections - return(count($this->sections)); - } - - public function register($id, $name, $position, $owner) - { - /* - register section for menu ; register a section allows to know sections list - even if menu is not made (ie: we are in admin interface) - - register a section is not adding a section : it's just for making a list of - potential sections. - you can add in the menu a section who is not registered - - $id : section id - $name : name of section - $position : position of section - $owner : owner of section (piwigo or plugin's name) - */ - if(!isset($this->registered_sections[$id])) - { - if($position<1) - { - $position=1; - } - $this->registered_sections[$id]=array( - 'NAME' => $name, - 'POSITION'=>$position, - 'OWNER' => $owner - ); - $this->register_position($id, $position); - //$this->save_registered(); ==> made with register_position - return(true); - } - return(false); - } - - public function unregister($id) - { - // just unregister a section from menu - if(isset($this->registered_sections[$id])) - { - unset($this->registered_sections[$id]); - $this->registered_sections=$this->renum_position($this->registered_sections); - $this->save_registered(); - return(true); - } - return(false); - } - - public function register_position($id, $position) - { - // register a new position for section - // if a section already have the same position, all section are shifted - - // sort registered sections by position - $this->sort_registered(); - //preparing sections - $incpos=false; - foreach($this->registered_sections as $key => $val) - { - if(($val['POSITION']==$position)and($key!=$id)) - { - $incpos=true; - } - if(($incpos)and($key!=$id)) - { - $this->registered_sections[$key]['POSITION']++; - } - } - //affect new position - $this->registered_sections[$id]['POSITION']=$position; - //sort - $this->sort_registered(); - //renum positions - $this->registered_sections=$this->renum_position($this->registered_sections); - $this->save_registered(); - } - - public function registered() - { - // return list of registered sections - return($this->registered_sections); - } - - public function apply() - { - //apply datas on the template - global $template; - - $template->set_filenames( - array('menubar' => MENU_TEMPLATES_PATH.'menubar_main.tpl') - ); - - trigger_action('loc_begin_menubar'); - $this->sort(); - $template->assign('sections', $this->sections); - trigger_action('loc_end_menubar'); - - $template->assign_var_from_handle('MENUBAR', 'menubar'); - } - - /* - protected functions - */ - protected function section_is_valid($section_datas) - { - if(is_array($section_datas) and - isset($section_datas['ID']) and - isset($section_datas['NAME']) and - isset($section_datas['TEMPLATE']) and - isset($section_datas['ITEMS']) and - isset($section_datas['TAG'])) - { - return(true); - } - return(false); - } - - protected function load_registered() - { - //load registered sections : database or file ?? - $this->registered_sections=array(); - - $filename=MENU_REGISTERED_PATH.$this->registered_file; - - if(file_exists($filename)) - { - $fhandle=fopen($filename, "r"); - if($fhandle) - { - $datas=fread($fhandle, filesize($filename)); - fclose($fhandle); - $this->registered_sections=unserialize($datas); - return(true); - } - } - return(false); - } - - protected function save_registered() - { - //save registered sections : database or file ?? - $filename=MENU_REGISTERED_PATH.$this->registered_file; - - $fhandle=fopen($filename, "w"); - if($fhandle) - { - $written=fwrite($fhandle, serialize($this->registered_sections)); - fclose($fhandle); - return($written); - } - return(false); - } - - - protected function sort() - { - $tmp=$this->sections; - uksort($tmp, array(&$this, 'sort_sections_cmpfct')); - $this->sections=$tmp; - } - - protected function sort_registered() - { - $tmp=$this->registered_sections; - uksort($tmp, array(&$this, 'sort_registered_cmpfct')); - $this->registered_sections=$tmp; - } - - - private function sort_sections_cmpfct($a, $b) - { - if($this->sections[$a]['POSITION']==$this->sections[$b]['POSITION']) - { - return(($this->sections[$a]['ID']<$this->sections[$b]['ID'])?-1:1); - } - return(($this->sections[$a]['POSITION']<$this->sections[$b]['POSITION'])?-1:1); - } - - private function sort_registered_cmpfct($a, $b) - { - return(($this->registered_sections[$a]['POSITION']<$this->registered_sections[$b]['POSITION'])?-1:1); - } - - private function renum_position($datas) - { - $i=1; - foreach($datas as $key => $val) - { - $datas[$key]['POSITION']=$i; - $i+=1; - } - return($datas); - } - - - - -} // class Menu - - - - - -class Section -{ - protected $name; - protected $template="generic.tpl"; - protected $id; - protected $tag; - protected $items=array(); - - public function Section($id, $name, $template="", $tag="") - { - $this->id = $id; - $this->tag = $tag; - $this->set_name($name); - if(!$this->set_template($template)) - { - $this->template=MENU_TEMPLATES_PATH."generic.tpl"; - } - - } // constructor - - /* - public functions - */ - public function get() - { - //this method returns a data structure ready to be used with the Menu class - return( - array( - 'ID' => $this->id, - 'NAME' => $this->name, - 'TEMPLATE' => $this->template, - 'ITEMS' => $this->items, - 'TAG' => $this->tag - ) - ); - } - - public function get_id() - { - return($this->id); - } - - public function get_name() - { - return($this->name); - } - - public function get_template() - { - return($this->template); - } - - public function get_tag() - { - return($this->tag); - } - - public function get_items() - { - return($this->items); - } - - public function set_name($value) - { - $this->name=$value; - } - - public function set_template($value) - { - if($this->is_template($value)) - { - $this->template=$value; - return(true); - } - return(false); - } - - public function set_tag($value) - { - $this->tag=$value; - } - - public function set_items($value) - { - $this->items=$value; - } - - public function items_count() - { - if(is_array($this->items)) - { - return(count($this->items)); - } - else - { - return(-1); - } - } - - /* - protected functions - */ - protected function is_template($templatename) - { - if(file_exists($templatename) and (preg_match('/.+\.tpl$/i',$templatename))) - { - return(true); - } - return(false); - } // is_template - -} //class Section - - - - -?> \ No newline at end of file diff --git a/plugins/test_menu/menu_templates/menubar_categories.tpl b/plugins/test_menu/menu_templates/menubar_categories.tpl deleted file mode 100644 index 050f503c3..000000000 --- a/plugins/test_menu/menu_templates/menubar_categories.tpl +++ /dev/null @@ -1,24 +0,0 @@ - - - -
- {if isset($section.ITEMS.U_START_FILTER)} - start filter - {/if} - {if isset($section.ITEMS.U_STOP_FILTER)} - stop filter - {/if} - - {$section.NAME|@translate} -
-
- {$section.ITEMS.MENU_CATEGORIES_CONTENT} - {if isset($section.ITEMS.U_UPLOAD)} - - {/if} -

{$pwg->l10n_dec('%d element', '%d elements', $section.ITEMS.NB_PICTURE)}

-
diff --git a/plugins/test_menu/menu_templates/menubar_generic.tpl b/plugins/test_menu/menu_templates/menubar_generic.tpl deleted file mode 100644 index e9991c280..000000000 --- a/plugins/test_menu/menu_templates/menubar_generic.tpl +++ /dev/null @@ -1,10 +0,0 @@ - - -
{$section.NAME|@translate}
-
- -
diff --git a/plugins/test_menu/menu_templates/menubar_identification.tpl b/plugins/test_menu/menu_templates/menubar_identification.tpl deleted file mode 100644 index c0c3891fe..000000000 --- a/plugins/test_menu/menu_templates/menubar_identification.tpl +++ /dev/null @@ -1,67 +0,0 @@ - - -
{$section.NAME|@translate}
-
- {if isset($section.ITEMS.USERNAME)} -

{'hello'|@translate} {$section.ITEMS.USERNAME} !

- {/if} - - - -{if isset($section.ITEMS.U_IDENTIFY)} -
-
- {'Quick connect'|@translate} - - - - - - {if $section.ITEMS.AUTHORIZE_REMEMBERING} - - {/if} -

- -

- -
    -
  • {'Forgot your password?'|@translate}
  • - {if isset($section.ITEMS.U_REGISTER)} -
  • {'Register'|@translate}
  • - {/if} -
- -
-
- {/if} - -
diff --git a/plugins/test_menu/menu_templates/menubar_links.tpl b/plugins/test_menu/menu_templates/menubar_links.tpl deleted file mode 100644 index 87862f1d6..000000000 --- a/plugins/test_menu/menu_templates/menubar_links.tpl +++ /dev/null @@ -1,17 +0,0 @@ - - - -
{$section.NAME|@translate}
-
- -
\ No newline at end of file diff --git a/plugins/test_menu/menu_templates/menubar_main.tpl b/plugins/test_menu/menu_templates/menubar_main.tpl deleted file mode 100644 index 82d7cb208..000000000 --- a/plugins/test_menu/menu_templates/menubar_main.tpl +++ /dev/null @@ -1,15 +0,0 @@ - - - -{if isset($sections) and count($sections)} - -{/if} \ No newline at end of file diff --git a/plugins/test_menu/menu_templates/menubar_menu.tpl b/plugins/test_menu/menu_templates/menubar_menu.tpl deleted file mode 100644 index 7b80881ed..000000000 --- a/plugins/test_menu/menu_templates/menubar_menu.tpl +++ /dev/null @@ -1,21 +0,0 @@ - - -
{$section.NAME|@translate}
-
- {if isset($section.ITEMS.qsearch) and $section.ITEMS.qsearch=='y'} -
-

- -

-
- - {/if} - - -
diff --git a/plugins/test_menu/menu_templates/menubar_special.tpl b/plugins/test_menu/menu_templates/menubar_special.tpl deleted file mode 100644 index 0bc9588ee..000000000 --- a/plugins/test_menu/menu_templates/menubar_special.tpl +++ /dev/null @@ -1,10 +0,0 @@ - - -
{$section.NAME|@translate}
-
- -
diff --git a/plugins/test_menu/menu_templates/menubar_tags.tpl b/plugins/test_menu/menu_templates/menubar_tags.tpl deleted file mode 100644 index b0fd9cf04..000000000 --- a/plugins/test_menu/menu_templates/menubar_tags.tpl +++ /dev/null @@ -1,19 +0,0 @@ - - -
{$section.NAME|@translate}
-
- -
diff --git a/plugins/test_menu/menubar.inc.php b/plugins/test_menu/menubar.inc.php deleted file mode 100644 index 45da0dc13..000000000 --- a/plugins/test_menu/menubar.inc.php +++ /dev/null @@ -1,320 +0,0 @@ - $user['nb_total_images'], - 'MENU_CATEGORIES_CONTENT' => get_categories_menu(), - 'U_CATEGORIES' => make_index_url(array('section' => 'categories')), - 'U_UPLOAD' => get_upload_menu_link() -); - -//------------------------------------------------------------------------ filter -if (!empty($conf['filter_pages']) and get_filter_page_value('used')) -{ - if ($filter['enabled']) - { - $datas['categories']['U_STOP_FILTER']= - add_url_params(make_index_url(array()), array('filter' => 'stop')); - } - else - { - $datas['categories']['U_START_FILTER']= - add_url_params(make_index_url(array()), array('filter' => 'start-recent-'.$user['recent_period'])); - } -} - - - -//-------------------------------------------------------------- external links -$datas['links']=array(); -foreach ($conf['links'] as $url => $url_data) -{ - if (!is_array($url_data)) - { - $url_data = array('label' => $url_data); - } - - if - ( - (!isset($url_data['eval_visible'])) - or - (eval($url_data['eval_visible'])) - ) - { - $tpl_var = array( - 'URL' => $url, - 'LABEL' => $url_data['label'] - ); - - if (!isset($url_data['new_window']) or $url_data['new_window']) - { - $tpl_var['new_window'] = - array( - 'NAME' => (isset($url_data['nw_name']) ? $url_data['nw_name'] : ''), - 'FEATURES' => (isset($url_data['nw_features']) ? $url_data['nw_features'] : '') - ); - } - $datas['links'][]=$tpl_var; - } -} - - - - - -//------------------------------------------------------------------------ tags -$datas['tags']=array(); -if ('tags' == @$page['section']) -{ - // display tags associated to currently tagged items, less current tags - $tags = array(); - if ( !empty($page['items']) ) - { - $tags = get_common_tags($page['items'], - $conf['menubar_tag_cloud_items_number'], $page['tag_ids']); - } - - $tags = add_level_to_tags($tags); - - foreach ($tags as $tag) - { - $datas['tags'][]= - array_merge( $tag, - array( - 'URL' => make_index_url( - array( - 'tags' => array($tag) - ) - ), - - 'U_ADD' => make_index_url( - array( - 'tags' => array_merge( - $page['tags'], - array($tag) - ) - ) - ), - ) - ); - } -} - - - -//---------------------------------------------------------- special categories -/* - ** note for usage with Menu class ** - items of Special section are defined with a named key rather than a - numeric key - - Example : - $datas['special']=array( - 'favorite_cat' => array( ... ), - 'most_visited_cat' => array( ... ), - 'best_rated_cat' => array( ... ), - [...] - ); - - This permits to easily find datas and modify content with a callback on the - 'loc_begin_menubar' event. - - Example : - $section_special=$menu->section('mbSpecial'); - unset($section['ITEMS']['favorite_cat']); - $menu->replace($section_special); - - this code permit to remove the items "favorite_cat" from the - section "mbSpecial" -*/ -$datas['special']=array(); -if ( !is_a_guest() ) -{ - $datas['special']['favorite_cat']=array( - 'URL' => make_index_url(array('section' => 'favorites')), - 'TITLE' => l10n('favorite_cat_hint'), - 'NAME' => l10n('favorite_cat') - ); -} -// most visited - $datas['special']['most_visited_cat']=array( - 'URL' => make_index_url(array('section' => 'most_visited')), - 'TITLE' => l10n('most_visited_cat_hint'), - 'NAME' => l10n('most_visited_cat') - ); -// best rated -if ($conf['rate']) -{ - $datas['special']['best_rated_cat']=array( - 'URL' => make_index_url(array('section' => 'best_rated')), - 'TITLE' => l10n('best_rated_cat_hint'), - 'NAME' => l10n('best_rated_cat') - ); -} -// random - $datas['special']['random_cat']=array( - 'URL' => get_root_url().'random.php', - 'TITLE' => l10n('random_cat_hint'), - 'NAME' => l10n('random_cat'), - 'REL'=> 'rel="nofollow"' - ); - -// recent pics - $datas['special']['recent_pics_cat']=array( - 'URL' => make_index_url(array('section' => 'recent_pics')), - 'TITLE' => l10n('recent_pics_cat_hint'), - 'NAME' => l10n('recent_pics_cat'), - ); -// recent cats - $datas['special']['recent_cats_cat']=array( - 'URL' => make_index_url(array('section' => 'recent_cats')), - 'TITLE' => l10n('recent_cats_cat_hint'), - 'NAME' => l10n('recent_cats_cat'), - ); - -// calendar - $datas['special']['calendar']=array( - 'URL' => - make_index_url( - array( - 'chronology_field' => ($conf['calendar_datefield']=='date_available' - ? 'posted' : 'created'), - 'chronology_style'=> 'monthly', - 'chronology_view' => 'calendar' - ) - ), - 'TITLE' => l10n('calendar_hint'), - 'NAME' => l10n('calendar'), - 'REL'=> 'rel="nofollow"' - ); - - - -//--------------------------------------------------------------- identification -$datas['identification']=array(); -if (is_a_guest()) -{ - $datas['identification']=array( - 'U_IDENTIFY' => get_root_url().'identification.php', - 'AUTHORIZE_REMEMBERING' => $conf['authorize_remembering'], - 'U_LOST_PASSWORD' => get_root_url().'password.php', - ); - - if ($conf['allow_user_registration']) - { - $datas['identification']['U_REGISTER']=get_root_url().'register.php'; - } -} -else -{ - $datas['identification']['USERNAME']= $user['username']; - - if (is_autorize_status(ACCESS_CLASSIC)) - { - $datas['identification']['U_PROFILE']=get_root_url().'profile.php'; - } - - // the logout link has no meaning with Apache authentication : it is not - // possible to logout with this kind of authentication. - if (!$conf['apache_authentication']) - { - $datas['identification']['U_LOGOUT']= get_root_url().'?act=logout'; - } - - if (is_admin()) - { - $datas['identification']['U_ADMIN']= get_root_url().'admin.php'; - } -} - - -//--------------------------------------------------------------- menu summaries -/* - ** note for usage with Menu class ** - items of menu section are defined with a named key rather than a numeric key - - see notes from "sepcial categories" for more informations -*/ -$datas['menu']=array(); -//qsearch input zone visible y/n ; if set to 'n' the qsearch zone isn't visible -$datas['menu']['qsearch']='y'; - -// tags link -$datas['menu']['Tags']=array( - 'TITLE' => l10n('See available tags'), - 'NAME' => l10n('Tags'), - 'U_SUMMARY'=> get_root_url().'tags.php', - ); - -// search link -$datas['menu']['Search']=array( - 'TITLE'=>l10n('hint_search'), - 'NAME'=>l10n('Search'), - 'U_SUMMARY'=> get_root_url().'search.php', - 'REL'=> 'rel="search"' - ); - -// comments link -$datas['menu']['comments']=array( - 'TITLE'=>l10n('hint_comments'), - 'NAME'=>l10n('comments'), - 'U_SUMMARY'=> get_root_url().'comments.php', - ); - -// about link -$datas['menu']['About']=array( - 'TITLE' => l10n('about_page_title'), - 'NAME' => l10n('About'), - 'U_SUMMARY' => get_root_url().'about.php', - ); - -// notification -$datas['menu']['Notification']=array( - 'TITLE'=>l10n('RSS feed'), - 'NAME'=>l10n('Notification'), - 'U_SUMMARY'=> get_root_url().'notification.php', - 'REL'=> 'rel="nofollow"' - ); - - - - -$section = new Section('mbLinks', 'Links', MENU_TEMPLATES_PATH.'menubar_links.tpl'); -$section->set_items($datas['links']); -$menu->add($section->get()); - - -$section = new Section('mbTags', 'Related tags', MENU_TEMPLATES_PATH.'menubar_tags.tpl'); -$section->set_items($datas['tags']); -$menu->add($section->get()); - -$section = new Section('mbSpecial', 'special_categories', MENU_TEMPLATES_PATH.'menubar_special.tpl'); -$section->set_items($datas['special']); -$menu->add($section->get()); - -$section = new Section('mbMenu', 'title_menu', MENU_TEMPLATES_PATH.'menubar_menu.tpl'); -$section->set_items($datas['menu']); -$menu->add($section->get()); - -$section = new Section('mbIdentification', 'identification', MENU_TEMPLATES_PATH.'menubar_identification.tpl'); -$section->set_items($datas['identification']); -$menu->add($section->get()); - -$section = new Section('mbCategories', 'Categories', MENU_TEMPLATES_PATH.'menubar_categories.tpl'); -$section->set_items($datas['categories']); -$menu->add($section->get()); - - -$menu->apply(); - - - - -?> -- cgit v1.2.3