Line | |
---|
1 | <?php |
---|
2 | /* |
---|
3 | Theme Name: Wood |
---|
4 | Version: auto |
---|
5 | Description: Piwigo theme. |
---|
6 | Theme URI: http://piwigo.org/ext/extension_view.php?eid=641 |
---|
7 | Author:Miklfe [piwitheme.fr] |
---|
8 | Author URI: http://piwitheme.fr |
---|
9 | */ |
---|
10 | $themeconf = array( |
---|
11 | 'name' => 'Wood', |
---|
12 | 'parent' => 'PwgCarbon_dft', |
---|
13 | 'local_head' => 'local_head.tpl' |
---|
14 | ); |
---|
15 | |
---|
16 | |
---|
17 | add_event_handler('loc_begin_index', 'modify_nb_thumbnail_page'); |
---|
18 | if(!function_exists('modify_nb_thumbnail_page')) |
---|
19 | { |
---|
20 | function modify_nb_thumbnail_page() |
---|
21 | { |
---|
22 | global $user, $page; |
---|
23 | $user['nb_image_page']=999; |
---|
24 | $page['nb_image_page']=999; |
---|
25 | } |
---|
26 | } |
---|
27 | |
---|
28 | |
---|
29 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.