Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 7146 | Rev 15154 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 7146 Rev 15152
Línea 1... Línea 1...
1
<?php
1
<?php
Línea 2... Línea 2...
2
 
2
 
Línea 3... Línea 3...
3
namespace LeadersLinked\Library;
3
namespace LeadersLinked\Library;
-
 
4
 
-
 
5
use Fpdf\Fpdf;
4
 
6
use Amenadiel\JpGraph\Graph\PieGraph;
-
 
7
use Amenadiel\JpGraph\Plot\PiePlot;
5
use Fpdf\Fpdf;
8
use Amenadiel\JpGraph\Graph\Graph;
-
 
9
use Amenadiel\JpGraph\Plot\LinePlot;
-
 
10
use Amenadiel\JpGraph\Plot\BarPlot;
-
 
11
use Amenadiel\JpGraph\Themes\UniversalTheme;
-
 
12
use Amenadiel\JpGraph\Themes\PastelTheme;
Línea 6... Línea 13...
6
use Amenadiel\JpGraph\Graph;
13
use Amenadiel\JpGraph\Themes\SoftyTheme;
Línea -... Línea 14...
-
 
14
 
-
 
15
 
-
 
16
class SurveyReport extends FPDF {
-
 
17
 
-
 
18
    
7
use Amenadiel\JpGraph\Plot;
19
    public $header;
8
 
20
    public $footer;
9
class SurveyReport extends FPDF {
21
    
10
 
22
    
-
 
23
    /**
11
    /**
24
     * Header PDF
12
     * Header PDF
25
     */
-
 
26
    function Header() {
-
 
27
        
13
     */
28
        if ($this->header != '') {
14
    function Header() {
29
            $this->Image($this->header, 10, 8, 190);
15
        $this->Image($_SERVER['DOCUMENT_ROOT'] . '/pdf/header_background.png', 10, 8, 190);
30
            $this->SetY(55);
16
        $this->Image($_SERVER['DOCUMENT_ROOT'] . '/pdf/header_logo.png', 130, 20, 60);
31
        }
17
    }
32
    }
Línea 38... Línea 53...
38
    }
53
    }
39
    /**
54
    /**
40
     * Footer PDF
55
     * Footer PDF
41
     */
56
     */
42
    function Footer() {
57
    function Footer() {
-
 
58
        if ($this->footer != '') {
43
        $this->SetY(-30);
59
            $this->SetY(-40);
44
        $this->Image($_SERVER['DOCUMENT_ROOT'] . '/pdf/footer_background.jpg', 10, $this->getY(), 190);
60
            $this->Image($this->footer, 10, $this->getY(), 190);
-
 
61
        }
45
    }
62
    }
46
    /**
63
    /**
47
     * Create chart PDF
64
     * Create chart PDF
48
     * @param string[] $labels
65
     * @param string[] $labels
49
     * @param float[] $values
66
     * @param float[] $values
50
     * @param string $title
67
     * @param string $title
51
     * @param string $filename
68
     * @param string $filename
52
     */
69
     */
53
    function pieChart($labels, $values, $title, $filename) {
70
    function pieChart($labels, $values, $title, $filename) {
Línea 54... Línea -...
54
        
-
 
55
        // We need some data
-
 
56
        $datay = $values;
-
 
57
        $datax = $labels;
-
 
58
 
71
        
59
        // Setup the graph.
72
        // Setup the graph.
-
 
73
        $graph = new PieGraph(600, 240);
60
        $graph = new Graph\PieGraph(400, 240);
74
        $graph->SetTheme(new SoftyTheme());
61
        $graph->clearTheme();
75
        //$graph->clearTheme();
-
 
76
        //$graph->SetShadow();
Línea 62... Línea 77...
62
        $graph->SetShadow();
77
 
63
 
78
 
64
        // Create the bar pot
79
        // Create the bar pot
65
        $bplot = new Plot\PiePlot($datay);
80
        $bplot = new PiePlot($values);
Línea 66... Línea 81...
66
        $bplot->SetLegends($datax);
81
        $bplot->SetLegends($labels);
67
        $bplot->SetCenter(0.3);
82
        $bplot->SetCenter(0.2);
68
 
83
 
69
        // Setup color for gradient fill style
84
        // Setup color for gradient fill style
-
 
85
        // Set color for the frame of each bar
70
        // Set color for the frame of each bar
86
        $bplot->SetColor("white");
-
 
87
        $bplot->SetLabelType(PIE_VALUE_PER);
Línea 71... Línea 88...
71
        $bplot->SetColor("white");
88
        
72
        $bplot->SetLabelType(PIE_VALUE_PER);
89
        $graph->Add($bplot);
-
 
90
        
-
 
91
 
Línea 73... Línea 92...
73
        $graph->Add($bplot);
92
 
74
 
93
        $graph->Stroke($filename);
75
 
94
    }
76
        $graph->Stroke($filename);
95
    
77
    }
96
 
78
 
97
 
79
    function barChart($label, $values, $title, $filename)
98
    function barChart($labels, $values, $title, $filename)
-
 
99
    {
-
 
100
        $graph = new Graph(700, count($values) * 100, 'auto');
-
 
101
        $graph->SetScale('textint');
-
 
102
        $graph->clearTheme();
-
 
103
        $graph->SetShadow();
-
 
104
        $graph->Set90AndMargin(130, 30, 60, 30);
-
 
105
        
Línea 80... Línea 106...
80
    {
106
        $graph->yscale->ticks->SupressZeroLabel(false);
81
        $graph = new Graph\Graph(700, count($values) * 50, 'auto');
107
        
82
        $graph->SetScale('textint');
-
 
-
 
108
        // Setup X-axis labels
83
        $graph->clearTheme();
109
        $graph->xaxis->SetTickLabels($labels);
84
        $graph->SetShadow();
110
        $graph->xaxis->SetLabelAngle(40);
-
 
111
        
Línea 85... Línea 112...
85
        $graph->Set90AndMargin(130, 30, 60, 30);
112
 
86
 
113
        $bplot = new BarPlot($values);
Línea 87... Línea 114...
87
        $bplot = new Plot\BarPlot($values);
114
        $bplot->SetFillColor('orange');
Línea 107... Línea 134...
107
        $this->SetFillColor(204, 204, 204);
134
        $this->SetFillColor(204, 204, 204);
108
        $this->SetDrawColor(0, 0, 0);
135
        $this->SetDrawColor(0, 0, 0);
109
        $this->SetLineWidth(0);
136
        $this->SetLineWidth(0);
110
        $this->SetFont('Arial', 'B', 9);
137
        $this->SetFont('Arial', 'B', 9);
Línea 111... Línea 138...
111
 
138
 
112
        $this->Cell(190, 6, utf8_decode($title), 1, 0, 'L', true);
139
        $this->Cell(190, 6, $this-> cleanStringToPdf($title), 1, 0, 'L', true);
Línea 113... Línea 140...
113
        $this->Ln();
140
        $this->Ln();
114
 
141
 
115
        // Body Table
142
        // Body Table
Línea 116... Línea 143...
116
        $this->SetFillColor(225, 255, 255);
143
        $this->SetFillColor(225, 255, 255);
117
        $this->SetTextColor(0);
144
        $this->SetTextColor(0);
Línea 118... Línea 145...
118
 
145
 
119
        foreach ($content as $rs) {
146
        foreach ($content as $rs) {
120
            if (isset($rs['title'])) {
147
            if (isset($rs['title'])) {
121
 
148
 
122
                $this->SetFont('Arial', 'B', 9);
149
                $this->SetFont('Arial', 'B', 9);
Línea 123... Línea 150...
123
                $this->Cell(50, 10, utf8_decode($rs['title']), 1, 0, 'L', false);
150
                $this->Cell(50, 10, $this-> cleanStringToPdf($rs['title']), 1, 0, 'L', false);
124
                $this->MultiCell(140, 10, utf8_decode($rs['content']), 1, 'L', false);
151
                $this->MultiCell(140, 10, $this-> cleanStringToPdf($rs['content']), 1, 'L', false);
125
                $this->Ln();
152
                $this->Ln();
126
            } else {
153
            } else {
127
 
154
 
128
                $this->SetFont('Arial', '', 9);
155
                $this->SetFont('Arial', '', 9);
-
 
156
                $this->MultiCell(190, 6, $this-> cleanStringToPdf($rs['content']), 1, 'L', false);
-
 
157
            }
-
 
158
        }
-
 
159
        $this->Ln(5);
-
 
160
    }
-
 
161
    
-
 
162
    
-
 
163
    private function cleanStringToPdf($s)
-
 
164
    {
-
 
165
        
-
 
166
        $s = html_entity_decode($s);
-
 
167
        $detect = mb_detect_encoding($s);
-
 
168
        
-
 
169
        if(strtoupper($detect) != 'UTF8') {
-
 
170
            
-
 
171
            $s = mb_convert_encoding($s, 'UTF8', $detect);
-
 
172
            
129
                $this->MultiCell(190, 6, utf8_decode($rs['content']), 1, 'L', false);
173
        }