Changeset 13558 for extensions/simple_themes/simple/themeconf.inc.php
- Timestamp:
- Mar 14, 2012, 2:53:41 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/simple_themes/simple/themeconf.inc.php
r13557 r13558 2 2 /* 3 3 Theme Name: Simple Grey 4 Version: 2.5. 24 Version: 2.5.3 5 5 Description: Simple Grey 6 6 Theme URI: http://piwigo.org/ext/extension_view.php?eid=308 … … 29 29 30 30 // debug - do not combine files 31 // $conf['template_combine_files'] = false; 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 } 32 46 33 47 ?>
Note: See TracChangeset
for help on using the changeset viewer.