[15854] | 1 | <?php |
---|
| 2 | if (!defined('HEADER_MANAGER_PATH')) die('Hacking attempt!'); |
---|
| 3 | |
---|
| 4 | /** |
---|
| 5 | * add personal banner to page banner |
---|
| 6 | */ |
---|
| 7 | function header_manager_render($page_banner) |
---|
| 8 | { |
---|
[16937] | 9 | global $conf, $user, $template, $page; |
---|
[15854] | 10 | |
---|
[17734] | 11 | if ( script_basename() == 'picture' and !$conf['header_manager']['banner_on_picture'] ) |
---|
| 12 | { |
---|
| 13 | return null; |
---|
| 14 | } |
---|
| 15 | |
---|
[16937] | 16 | // search banner for a specific category |
---|
| 17 | if (isset($page['category'])) |
---|
[15854] | 18 | { |
---|
[16937] | 19 | // we use the banner configured for this category |
---|
| 20 | // if no banner is configured we use the banner of the first parent category with a "deep" banner |
---|
| 21 | // if nothing found we use the default banner |
---|
| 22 | $query = ' |
---|
| 23 | SELECT * |
---|
| 24 | FROM '.HEADER_MANAGER_TABLE.' |
---|
| 25 | WHERE |
---|
| 26 | category_id IN ('.$page['category']['uppercats'].') |
---|
| 27 | AND (category_id = '.$page['category']['id'].' OR deep = 1) |
---|
| 28 | ;'; |
---|
| 29 | $cat_banners = hash_from_query($query, 'category_id'); |
---|
| 30 | |
---|
| 31 | if (count($cat_banners)) |
---|
| 32 | { |
---|
[17644] | 33 | usort($cat_banners, 'hm_uppercats_sort'); |
---|
[16937] | 34 | |
---|
| 35 | foreach ($cat_banners as $cat_banner) |
---|
| 36 | { |
---|
| 37 | $cat_banner = get_banner($cat_banner['image']); |
---|
| 38 | if ($cat_banner !== false) |
---|
| 39 | { |
---|
| 40 | $banner = $cat_banner; |
---|
| 41 | break; |
---|
| 42 | } |
---|
| 43 | } |
---|
| 44 | } |
---|
[15854] | 45 | } |
---|
[16937] | 46 | |
---|
| 47 | // use default banner |
---|
| 48 | if (!isset($banner)) |
---|
[15854] | 49 | { |
---|
[18710] | 50 | if ( empty($conf['header_manager']['image']) or $conf['header_manager']['image'] == 'random') |
---|
[16937] | 51 | { |
---|
| 52 | $banners = list_banners(); |
---|
| 53 | if (!count($banners)) return $page_banner; |
---|
| 54 | $banner = $banners[ mt_rand(0, count($banners)-1) ]; |
---|
| 55 | } |
---|
| 56 | else |
---|
| 57 | { |
---|
| 58 | $banner = get_banner($conf['header_manager']['image']); |
---|
| 59 | if ($banner === false) return $page_banner; |
---|
| 60 | } |
---|
[15854] | 61 | } |
---|
| 62 | |
---|
| 63 | // for MontBlancXL and BlancMontXL the banner is displayed as background of the header |
---|
| 64 | if ( in_array($user['theme'], array('blancmontxl','montblancxl')) ) |
---|
| 65 | { |
---|
| 66 | $template->append('head_elements', |
---|
| 67 | '<style type="text/css"> |
---|
| 68 | #theHeader { background: transparent url('.$banner['PATH'].') center bottom no-repeat; } |
---|
| 69 | </style>' |
---|
| 70 | ); |
---|
| 71 | |
---|
| 72 | if ($conf['header_manager']['display'] == 'image_only') |
---|
| 73 | { |
---|
| 74 | $page_banner = null; |
---|
| 75 | } |
---|
| 76 | else |
---|
| 77 | { |
---|
| 78 | $page_banner = str_replace('%header_manager%', null, $page_banner); |
---|
| 79 | } |
---|
| 80 | } |
---|
| 81 | // no support for Kardon (not enough space) |
---|
| 82 | else if ($user['theme'] != 'kardon') |
---|
| 83 | { |
---|
| 84 | $template->append('head_elements', |
---|
| 85 | '<style type="text/css"> |
---|
[17012] | 86 | #theHeader div.banner { background:transparent url(\''.$banner['PATH'].'\') center center no-repeat;height:'.$banner['SIZE'][1].'px;line-height:'.($banner['SIZE'][1]-12).'px;font-size:2.5em;color:#fff;text-shadow:0 0 5px #000;text-align:center; } |
---|
[15854] | 87 | </style>' |
---|
| 88 | ); |
---|
| 89 | |
---|
| 90 | $banner_img = '<div class="banner">'.($conf['header_manager']['display']=='with_title' ? $conf['gallery_title'] : ' ').'</div>'; |
---|
| 91 | |
---|
| 92 | if ($conf['header_manager']['display'] == 'with_text') |
---|
| 93 | { |
---|
| 94 | $page_banner = str_replace('%header_manager%', $banner_img, $page_banner); |
---|
| 95 | } |
---|
| 96 | else |
---|
| 97 | { |
---|
| 98 | $page_banner = '<a href="'.get_gallery_home_url().'">'.$banner_img.'</a>'; |
---|
| 99 | } |
---|
| 100 | } |
---|
| 101 | |
---|
| 102 | return $page_banner; |
---|
| 103 | } |
---|
| 104 | |
---|
[17644] | 105 | function hm_uppercats_sort($a, $b) |
---|
[15854] | 106 | { |
---|
[17644] | 107 | global $page; |
---|
| 108 | $ids = explode(',', $page['category']['uppercats']); |
---|
| 109 | return array_search($a['category_id'], $ids) < array_search($b['category_id'], $ids); |
---|
[15854] | 110 | } |
---|
| 111 | |
---|
| 112 | ?> |
---|