'default', 'icon_dir' => 'themes/montblancxl/icon', 'local_head' => 'local_head.tpl', ); add_event_handler('loc_begin_page_header', 'set_mbxl_header'); function set_mbxl_header() { global $page, $conf, $template; $config = unserialize($conf['MontblancXL']); if (isset($page['body_id']) and $page['body_id'] == 'theCategoryPage') { $header = isset($page['category']) ? $config['categories'] : $config['home']; } elseif (isset($page['body_id']) and $page['body_id'] == 'thePicturePage') { $header = $config['picture']; } else { $header = $config['other']; } $template->assign('display_mbxl_banner', $header); } ?>