Rev | Line | |
---|
[18812] | 1 | <?php |
---|
| 2 | /* |
---|
| 3 | Theme Name: Slimi |
---|
[25998] | 4 | Version: 1.3 |
---|
[18812] | 5 | Description: Piwigo theme. |
---|
[18833] | 6 | Theme URI: http://piwigo.org/ext/extension_view.php?eid=644 |
---|
[19046] | 7 | Author:Miklfe [piwitheme.fr] |
---|
| 8 | Author URI: http://piwitheme.fr |
---|
[18812] | 9 | */ |
---|
| 10 | |
---|
| 11 | |
---|
| 12 | global $conf, $user, $Slimi, $template; |
---|
| 13 | |
---|
| 14 | $themeconf = array( |
---|
| 15 | 'name' => 'Slimi', |
---|
| 16 | 'parent' => 'Slim', |
---|
| 17 | 'local_head' => 'local_head.tpl', |
---|
| 18 | |
---|
| 19 | |
---|
| 20 | ); |
---|
| 21 | |
---|
| 22 | |
---|
| 23 | |
---|
| 24 | $Slimi = array_merge( unserialize( $conf['Slimi'] ), (array)$Slimi ); |
---|
| 25 | |
---|
| 26 | |
---|
| 27 | |
---|
| 28 | if($Slimi['lytebox_slimi']=='1') |
---|
| 29 | { |
---|
| 30 | add_event_handler('blockmanager_apply', 'no_comm' ); |
---|
| 31 | function no_comm( $menu_ref_arr ) |
---|
| 32 | { |
---|
| 33 | $menu = & $menu_ref_arr[0]; |
---|
| 34 | $block = $menu->get_block( 'mbMenu' ); |
---|
| 35 | unset( $block->data['comments'] ); |
---|
| 36 | } |
---|
| 37 | } |
---|
| 38 | |
---|
| 39 | add_event_handler('loc_end_page_header', 'load_Slimi' ); |
---|
| 40 | function load_Slimi() |
---|
| 41 | { |
---|
| 42 | include('slimi.php'); |
---|
| 43 | } |
---|
| 44 | |
---|
| 45 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.