-
Notifications
You must be signed in to change notification settings - Fork 0
/
display_banner.php
44 lines (35 loc) · 1010 Bytes
/
display_banner.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php
/**
* @package tikiwiki
*/
// (c) Copyright 2002-2016 by authors of the Tiki Wiki CMS Groupware Project
//
// All Rights Reserved. See copyright.txt for details and a complete list of authors.
// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details.
// $Id$
// Only to be called from edit_banner or view_banner to display the banner without adding
// impressions to the banner
if (!isset($_REQUEST["id"])) {
die;
}
require_once ('tiki-setup.php');
// CHECK FEATURE BANNERS HERE
$access->check_feature('feature_banners');
$bannerlib = TikiLib::lib('banner');
$data = $bannerlib->get_banner($_REQUEST["id"]);
$id = $data["bannerId"];
switch ($data["which"]) {
case 'useHTML':
$raw = $data["HTMLData"];
break;
case 'useImage':
$raw = "<img src=\"banner_image.php?id=" . $id . "\" />";
break;
case 'useFixedURL':
$raw = '<img src="'.$data["fixedURLData"].'">"';
break;
case 'useText':
$raw = $data["textData"];
break;
}
print ($raw);