source: extensions/floOS/OS_glass_dark/themeconf.inc.php @ 17475

Last change on this file since 17475 was 9675, checked in by flop25, 13 years ago

updating tpl files
delete of picture.css
Theme URI updated

File size: 1.1 KB
Line 
1<?php
2/*
3Theme Name: OS_glass_dark
4Version: auto
5Description:
6Theme URI: http://piwigo.org/ext/extension_view.php?eid=515
7Author: flop25
8Author URI: http://www.planete-flop.fr
9*/
10
11$themeconf = array(
12  'name'         => 'OS_glass_dark',
13  'parent'        => 'OS_default',
14  'icon_dir'      => 'themes/OS_default/icon',
15  'mime_icon_dir' => 'themes/OS_default/icon/mimetypes/',
16  'local_head' => 'local_head.tpl',
17  'activable' => true,
18        'add_menu_on_public_pages'                      => true,        # activation
19        'Exclude'                       => array('theNBMPage','thePicturePage','thePopuphelpPage',),    # Excluded pages
20        'tab_system'                    => true,        # activation
21        'tab_closed'                    => array('mbLinks','mbTags','mbSpecials','mbIdentification'),   # tabs which are closed when the page is loaded
22);
23@include(PHPWG_ROOT_PATH. 'local/config/OS_glass_dark.inc.php');
24if (isset($conf['local_dir_site']))
25{
26  @include(PHPWG_ROOT_PATH.PWG_LOCAL_DIR. 'config/OS_glass_dark.inc.php');
27}
28
29add_event_handler('init', 'dynamic_tab', 20);
30function  dynamic_tab() {
31        global $template, $conf;
32        $template->assign(
33                array(
34                        'tab_system' => get_themeconf('tab_system'),
35                        'tab_closed' => get_themeconf('tab_closed'),
36                        ));
37}
38?>
Note: See TracBrowser for help on using the repository browser.