1 | <?php |
---|
2 | /* |
---|
3 | Theme Name: hr_glass_xl |
---|
4 | Version: auto |
---|
5 | Description: A theme with an horizontal menu everywhere and a simple modern design |
---|
6 | Theme URI: http://fr.piwigo.org/ext/extension_view.php?eid=502 |
---|
7 | Author: flop25 |
---|
8 | Author URI: http://www.planete-flop.fr |
---|
9 | */ |
---|
10 | $themeconf = array( |
---|
11 | 'name' => 'hr_glass_xl', |
---|
12 | 'parent' => 'default', |
---|
13 | 'icon_dir' => 'themes/hr_glass_xl/icon', |
---|
14 | 'mime_icon_dir' => 'themes/hr_glass_xl/icon/mimetypes/', |
---|
15 | 'local_head' => 'local_head.tpl', |
---|
16 | 'activable' => true, |
---|
17 | 'add_menu_on_public_pages' => true, # activation |
---|
18 | 'Exclude' => array('theNBMPage','thePopuphelpPage',), # Excluded pages |
---|
19 | ); |
---|
20 | @include(PHPWG_ROOT_PATH. 'local/config/hr_glass_xl.inc.php'); |
---|
21 | if (isset($conf['local_dir_site'])) |
---|
22 | { |
---|
23 | @include(PHPWG_ROOT_PATH.PWG_LOCAL_DIR. 'config/hr_glass_xl.inc.php'); |
---|
24 | } |
---|
25 | |
---|
26 | // thx to Vdigital and his plugin spreadmenus |
---|
27 | if ( !function_exists( 'add_menu_on_public_pages' ) ) { |
---|
28 | if ( defined('IN_ADMIN') and IN_ADMIN ) return false; |
---|
29 | add_event_handler('loc_after_page_header', 'add_menu_on_public_pages', 20); |
---|
30 | |
---|
31 | function add_menu_on_public_pages() { |
---|
32 | if ( function_exists( 'initialize_menu') ) return false; # The current page has already the menu |
---|
33 | if ( !get_themeconf('add_menu_on_public_pages') ) return false; # The current page has already the menu |
---|
34 | global $template, $page, $conf; |
---|
35 | if ( isset($page['body_id']) and in_array($page['body_id'], get_themeconf('Exclude')) ) return false; |
---|
36 | |
---|
37 | $template->set_filenames(array( |
---|
38 | 'add_menu_on_public_pages' => dirname(__FILE__) . '/template/add_menu_on_public_pages.tpl', |
---|
39 | )); |
---|
40 | include_once(PHPWG_ROOT_PATH.'include/menubar.inc.php'); |
---|
41 | $template->parse('add_menu_on_public_pages'); |
---|
42 | |
---|
43 | if (is_admin()) |
---|
44 | { |
---|
45 | $template->assign( |
---|
46 | 'U_ADMIN', get_root_url().'admin.php?page=picture_modify' |
---|
47 | .'&cat_id='.(isset($page['category']) ? $page['category']['id'] : '') |
---|
48 | .( isset($page['image_id']) ? '&image_id='.$page['image_id'] : '') |
---|
49 | ); |
---|
50 | } |
---|
51 | |
---|
52 | } |
---|
53 | } |
---|
54 | ?> |
---|