blob: 6fec6951c3390a54e0ee51995d77ed02e6e66e64 (
plain) (
blame)
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
<?php
global $site_path;
global $site_url;
include_once('../../function.php');
include_once('../survey/definition.php');
/**
* @desc Class za generacijo slike za heatmap
*/
class imageIzvozHeatmap {
var $anketa;// = array(); // trenutna anketa
var $pi=array('canCreate'=>false); // za shrambo parametrov in sporocil
var $pdf;
var $image;
var $currentStyle;
private $headFileName = null; # pot do header fajla
private $dataFileName = null; # pot do data fajla
private $dataFileStatus = null; # status data datoteke
private $CID = null; # class za inkrementalno dodajanje fajlov
var $current_loop = 'undefined';
/**
* @desc konstruktor
*/
function __construct ($anketa = null, $sprID = null, $loop = null)
{
global $site_path;
global $global_user_id;
// preverimo ali imamo stevilko ankete
if ( is_numeric($anketa) )
{
$this->anketa['id'] = $anketa;
$this->spremenljivka = $sprID;
SurveyAnalysis::Init($anketa);
SurveyAnalysis::$setUpJSAnaliza = false;
}
else
{
$this->pi['msg'] = "Anketa ni izbrana!";
$this->pi['canCreate'] = false;
return false;
}
if ( SurveyInfo::getInstance()->SurveyInit($this->anketa['id']) && $this->init())
{
$this->anketa['uid'] = $global_user_id;
SurveyUserSetting::getInstance()->Init($this->anketa['id'], $this->anketa['uid']);
}
else
return false;
// ce smo prisli do tu je vse ok
$this->pi['canCreate'] = true;
return true;
}
// SETTERS && GETTERS
function getFile($fileName)
{
global $site_path;
global $site_url;
//echo '<img alt="" src="'.$site_url.'main/survey/uploads/'.$fileName.'"></br>';
$src = $site_url.'main/survey/uploads/'.$fileName;
$image = imagecreatefrompng($src);
imagealphablending($image, false);
imagesavealpha($image, true);
//header('Content-Disposition: Attachment;filename='.$fileName);
header('Content-Disposition: Attachment;filename='.$fileName.';filename*=utf8'.$fileName);
header('Content-Type: image/png');
//header('Content-Type: image/png; charset=utf-8');
//header('Content-Type: application/force-download');
imagepng($image);
imagedestroy($image);
}
function init()
{
global $lang;
return true;
}
}
?>
|