Changeset 1363 for trunk/include


Ignore:
Timestamp:
Jun 18, 2006, 2:04:59 PM (18 years ago)
Author:
nikrou
Message:

Issue 426: first step; separation of admin and public into two templates
Need to simplify and delete files not needed

Location:
trunk/include
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/common.inc.php

    r1303 r1363  
    202202// TODO : replace initial $user['template'] by $user['layout']
    203203
     204if (IN_ADMIN)
     205{
     206  $template_root = 'admin';
     207}
     208else
     209{
     210  $template_root = 'public';
     211}
    204212include(
    205213  PHPWG_ROOT_PATH
    206   .'template/'.$user['template']
     214  .'template/'.$template_root.'/'.$user['template']
    207215  .'/theme/'.$user['theme']
    208216  .'/themeconf.inc.php'
  • trunk/include/functions.inc.php

    r1361 r1363  
    598598 * returns available template/theme
    599599 */
    600 function get_pwg_themes()
     600function get_pwg_themes($template_root = 'public')
    601601{
    602602  $themes = array();
    603603
    604   $template_dir = PHPWG_ROOT_PATH.'template';
     604  $template_dir = PHPWG_ROOT_PATH.'template'.'/'.$template_root;
    605605
    606606  foreach (get_dirs($template_dir) as $template)
  • trunk/include/page_header.php

    r1303 r1363  
    2929// Start output of page
    3030//
    31 $template->set_filenames(array('header'=>'header.tpl'));
     31if (IN_ADMIN)
     32{
     33  $template->set_rootdir(PHPWG_ROOT_PATH.'template/admin/'.$user['template']);
     34  $template->set_filenames(array('header'=>'header.tpl'));
     35}
     36else
     37{
     38  $template->set_rootdir(PHPWG_ROOT_PATH.'template/public/'.$user['template']);
     39  $template->set_filenames(array('header'=>'header.tpl'));
     40}
    3241
    3342$template->assign_vars(
Note: See TracChangeset for help on using the changeset viewer.