Changeset 1363 for trunk/include
- Timestamp:
- Jun 18, 2006, 2:04:59 PM (18 years ago)
- Location:
- trunk/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/common.inc.php
r1303 r1363 202 202 // TODO : replace initial $user['template'] by $user['layout'] 203 203 204 if (IN_ADMIN) 205 { 206 $template_root = 'admin'; 207 } 208 else 209 { 210 $template_root = 'public'; 211 } 204 212 include( 205 213 PHPWG_ROOT_PATH 206 .'template/'.$ user['template']214 .'template/'.$template_root.'/'.$user['template'] 207 215 .'/theme/'.$user['theme'] 208 216 .'/themeconf.inc.php' -
trunk/include/functions.inc.php
r1361 r1363 598 598 * returns available template/theme 599 599 */ 600 function get_pwg_themes( )600 function get_pwg_themes($template_root = 'public') 601 601 { 602 602 $themes = array(); 603 603 604 $template_dir = PHPWG_ROOT_PATH.'template' ;604 $template_dir = PHPWG_ROOT_PATH.'template'.'/'.$template_root; 605 605 606 606 foreach (get_dirs($template_dir) as $template) -
trunk/include/page_header.php
r1303 r1363 29 29 // Start output of page 30 30 // 31 $template->set_filenames(array('header'=>'header.tpl')); 31 if (IN_ADMIN) 32 { 33 $template->set_rootdir(PHPWG_ROOT_PATH.'template/admin/'.$user['template']); 34 $template->set_filenames(array('header'=>'header.tpl')); 35 } 36 else 37 { 38 $template->set_rootdir(PHPWG_ROOT_PATH.'template/public/'.$user['template']); 39 $template->set_filenames(array('header'=>'header.tpl')); 40 } 32 41 33 42 $template->assign_vars(
Note: See TracChangeset
for help on using the changeset viewer.