-
Notifications
You must be signed in to change notification settings - Fork 1
/
banner_image.php
executable file
·57 lines (47 loc) · 1.46 KB
/
banner_image.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
45
46
47
48
49
50
51
52
53
54
55
56
57
<?php
// $Id: /cvsroot/tikiwiki/tiki/banner_image.php,v 1.16.2.1 2008-03-01 17:12:54 leyan Exp $
// Copyright (c) 2002-2007, Luis Argerich, Garland Foster, Eduardo Polidor, et. al.
// 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.
// application to display an image from the database with
// option to resize the image dynamically creating a thumbnail on the fly.
if (!isset($_REQUEST["id"])) {
die;
}
require_once ('tiki-setup.php');
// CHECK FEATURE BANNERS HERE
if ($prefs['feature_banners'] != 'y') {
$smarty->assign('msg', tra("This feature is disabled").": feature_banners");
$smarty->display("error.tpl");
die;
}
$bannercachefile = $prefs['tmpDir'];
if ($tikidomain) { $bannercachefile.= "/$tikidomain"; }
$bannercachefile.= "/banner.".$_REQUEST["id"];
if (is_file($bannercachefile) and (!isset($_REQUEST["reload"]))) {
$size = getimagesize($bannercachefile);
$type = $size['mime'];
} else {
include_once ('lib/banners/bannerlib.php');
if (!isset($bannerlib)) {
$bannerlib = new BannerLib($dbTiki);
}
$data = $bannerlib->get_banner($_REQUEST["id"]);
if (!$data) {
die;
}
$type = $data["imageType"];
$data = $data["imageData"];
if ($data) {
$fp = fopen($bannercachefile,"wb");
fputs($fp,$data);
fclose($fp);
}
}
header ("Content-type: $type");
if (is_file($bannercachefile)) {
readfile($bannercachefile);
} else {
echo $data;
}
?>