Ignore:
Timestamp:
May 9, 2011, 5:08:05 PM (13 years ago)
Author:
flop25
Message:

adding an admin page for the header based on P@t's work

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/hr_os/themeconf.inc.php

    r9670 r10826  
    2323  @include(PHPWG_ROOT_PATH.PWG_LOCAL_DIR. 'config/hr_os.inc.php');
    2424}
     25// thx to P@t
     26add_event_handler('loc_begin_page_header', 'set_hr_os_header');
     27
     28function set_hr_os_header()
     29{
     30  global $page, $conf, $template;
     31
     32  $config = unserialize($conf['hr_os']);
     33
     34  if (isset($page['body_id']) and $page['body_id'] == 'theCategoryPage')
     35  {
     36    $header = isset($page['category']) ? $config['categories'] : $config['home'];
     37  }
     38  elseif (isset($page['body_id']) and $page['body_id'] == 'thePicturePage')
     39  {
     40    $header = $config['picture'];
     41  }
     42  else
     43  {
     44    $header = $config['other'];
     45  }
     46
     47  $template->assign('display_hr_os_banner', $header);
     48}
     49
    2550// thx to Vdigital and his plugin spreadmenus
    2651if ( !function_exists( 'add_menu_on_public_pages' ) ) {
Note: See TracChangeset for help on using the changeset viewer.