Line | |
---|
1 | <?php |
---|
2 | /* |
---|
3 | Theme Name: Wood |
---|
4 | Version: 1.0.0 |
---|
5 | Description: Piwigo theme. |
---|
6 | Theme URI: |
---|
7 | Author: Miklfe |
---|
8 | Author URI: http://piwigo.org |
---|
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 | function modify_nb_thumbnail_page() |
---|
19 | { |
---|
20 | global $user, $page; |
---|
21 | $user['nb_image_page']=999; |
---|
22 | $page['nb_image_page']=999; |
---|
23 | |
---|
24 | } |
---|
25 | |
---|
26 | |
---|
27 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.