|
Revision 13558, 1.2 KB
(checked in by plg, 15 months ago)
|
|
import theme Simple version 2.5.3
add an option and admin page to choose the layout for albums (with description under or next to the album thumbnail)
|
| Line | |
|---|
| 1 | <?php |
|---|
| 2 | /* |
|---|
| 3 | Theme Name: Simple Grey |
|---|
| 4 | Version: 2.5.3 |
|---|
| 5 | Description: Simple Grey |
|---|
| 6 | Theme URI: http://piwigo.org/ext/extension_view.php?eid=308 |
|---|
| 7 | Author: Saïmon |
|---|
| 8 | Author URI: http://saimon.org/ |
|---|
| 9 | */ |
|---|
| 10 | |
|---|
| 11 | $themeconf = array( |
|---|
| 12 | 'parent' => 'default', |
|---|
| 13 | 'load_parent_css' => false, |
|---|
| 14 | 'load_parent_local_head' => false, |
|---|
| 15 | 'name' => 'simple-grey', |
|---|
| 16 | 'theme_dir' => 'simple', |
|---|
| 17 | 'icon_dir' => 'themes/simple/icon', |
|---|
| 18 | 'admin_icon_dir' => 'themes/default/icon/admin', |
|---|
| 19 | 'mime_icon_dir' => 'themes/default/icon/mimetypes/', |
|---|
| 20 | 'local_head' => 'local_head.tpl', |
|---|
| 21 | 'url' => 'http://saimon.org/log/theme-simple-grey-pour-piwigo.html' |
|---|
| 22 | ); |
|---|
| 23 | |
|---|
| 24 | // set this if you want to restrict the width of pictures to a specifc width |
|---|
| 25 | // global $user; |
|---|
| 26 | // $user['maxwidth'] = 800; |
|---|
| 27 | |
|---|
| 28 | load_language('theme.lang', PHPWG_THEMES_PATH.'simple/'); |
|---|
| 29 | |
|---|
| 30 | // debug - do not combine files |
|---|
| 31 | $conf['template_combine_files'] = false; |
|---|
| 32 | |
|---|
| 33 | if (!isset($conf['simple'])) |
|---|
| 34 | { |
|---|
| 35 | $conf['simple'] = serialize(array('albumDisplay' => 'column')); |
|---|
| 36 | } |
|---|
| 37 | $conf['simple'] = unserialize($conf['simple']); |
|---|
| 38 | |
|---|
| 39 | add_event_handler('loc_begin_page_header', 'simple_set_config'); |
|---|
| 40 | function simple_set_config() |
|---|
| 41 | { |
|---|
| 42 | global $template, $conf; |
|---|
| 43 | |
|---|
| 44 | $template->assign('simple_conf', $conf['simple']); |
|---|
| 45 | } |
|---|
| 46 | |
|---|
| 47 | ?> |
|---|