source: extensions/simple_themes/simple/themeconf.inc.php @ 29752

Last change on this file since 29752 was 29752, checked in by plg, 10 years ago

mark theme simple as a dark theme

File size: 1.2 KB
RevLine 
[13546]1<?php
2/*
3Theme Name: Simple Grey
[13561]4Version: auto
[13549]5Description: Simple Grey
[13547]6Theme URI: http://piwigo.org/ext/extension_view.php?eid=308
[19421]7Author: Saïmon, plg
[13546]8Author URI: http://saimon.org/
9*/
10
11$themeconf = array(
[13547]12  'parent' => 'default',
13  'load_parent_css' => false,
14  'load_parent_local_head' => false,
[13546]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/',
[13547]20  'local_head' => 'local_head.tpl',
[29752]21  'url' => 'http://saimon.org/log/theme-simple-grey-pour-piwigo.html',
22  'colorscheme' => 'dark',
[13546]23);
24
[13555]25// set this if you want to restrict the width of pictures to a specifc width
26// global $user;
27// $user['maxwidth'] = 800;
[13549]28
29load_language('theme.lang', PHPWG_THEMES_PATH.'simple/');
30
[13554]31// debug - do not combine files
[13559]32// $conf['template_combine_files'] = false;
[13554]33
[13558]34if (!isset($conf['simple']))
35{
36  $conf['simple'] = serialize(array('albumDisplay' => 'column'));
37}
38$conf['simple'] = unserialize($conf['simple']);
39
40add_event_handler('loc_begin_page_header', 'simple_set_config');
41function simple_set_config()
42{
43  global $template, $conf;
44 
45  $template->assign('simple_conf', $conf['simple']);
46}
47
[13546]48?>
Note: See TracBrowser for help on using the repository browser.