Line | |
---|
1 | <?php |
---|
2 | /* |
---|
3 | Theme Name: Full_Background |
---|
4 | Version: auto |
---|
5 | Description: theme Full_Background pour Piwigo. |
---|
6 | Theme URI: http://piwigo.org/ext/extension_view.php?eid=649 |
---|
7 | Author:Miklfe [piwitheme.fr] |
---|
8 | Author URI: http://piwitheme.fr |
---|
9 | */ |
---|
10 | $themeconf = array( |
---|
11 | 'name' => 'Full_Background', |
---|
12 | 'parent' => 'default', |
---|
13 | 'local_head' => 'local_head.tpl', |
---|
14 | |
---|
15 | ); |
---|
16 | |
---|
17 | load_language('theme.lang', PHPWG_THEMES_PATH.'Full_Background/'); |
---|
18 | |
---|
19 | |
---|
20 | add_event_handler('loc_begin_index', 'modify_nb_thumbnail_page'); |
---|
21 | if(!function_exists('modify_nb_thumbnail_page')) |
---|
22 | { |
---|
23 | function modify_nb_thumbnail_page() |
---|
24 | { |
---|
25 | global $user, $page; |
---|
26 | $user['nb_image_page']=999; |
---|
27 | $page['nb_image_page']=999; |
---|
28 | } |
---|
29 | } |
---|
30 | |
---|
31 | add_event_handler('get_categories_menu_sql_where', 'mic_get_categories_menu_sql_where', EVENT_HANDLER_PRIORITY_NEUTRAL, 3 ); |
---|
32 | if(!function_exists('mic_get_categories_menu_sql_where')) |
---|
33 | { |
---|
34 | function mic_get_categories_menu_sql_where($where){ |
---|
35 | global $page; |
---|
36 | $where = '1'; |
---|
37 | return $where; |
---|
38 | } |
---|
39 | } |
---|
40 | |
---|
41 | add_event_handler('allow_increment_element_hit_count', 'stop_increment'); |
---|
42 | function stop_increment(){ |
---|
43 | } |
---|
44 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.