Archived
1
0

template and plugin option groups, experimental

This commit is contained in:
Garvin Hicking
2011-01-03 09:11:17 +00:00
parent 01bb87240e
commit 8420699997
9 changed files with 121 additions and 21 deletions
+5
View File
@@ -36,6 +36,11 @@ if ($serendipity['GET']['adminModule'] == 'templates') {
}
}
$template_config_groups = array(
THEME_COLORSET => array('colorset', 'userstylesheet', 'layouttype', 'jscolumns'),
THEME_HEADER => array('custheader', 'headerimage', 'headertype')
);
$template_config = array(
array(
'var' => 'colorset',
+2
View File
@@ -1,6 +1,8 @@
<?php
// Colorsets
@define('THEME_COLORSET', 'Colorset');
@define('THEME_HEADER', 'Header');
@define('USER_STYLESHEET','Use additional user stylesheet. Users have to create this stylesheet in the template directory. It has to be named user.css and can be used to override selected styles.');
// Layout
@define('LAYOUT_TYPE','Blog layout (B = Blog entriee, S = Sidebar, CF = Content first)');