Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 7145 | Rev 15152 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
5866 eleazar 1
<?php
2
 
3
namespace LeadersLinked\Library;
4
 
5
use Fpdf\Fpdf;
6
use Amenadiel\JpGraph\Graph;
7
use Amenadiel\JpGraph\Plot;
8
 
9
class SurveyReport extends FPDF {
10
 
11
    /**
12
     * Header PDF
13
     */
14
    function Header() {
6847 eleazar 15
        $this->Image($_SERVER['DOCUMENT_ROOT'] . '/pdf/header_background.png', 10, 8, 190);
16
        $this->Image($_SERVER['DOCUMENT_ROOT'] . '/pdf/header_logo.png', 130, 20, 60);
5866 eleazar 17
    }
18
    /**
19
     * Header custom PDF
20
     * @param string $headerFormName
21
     * @param string $headerUsername
22
     */
23
    function customHeader($headerFormName, $headerUsername) {
24
        $s = utf8_decode(' Página: ' . $this->PageNo());
25
        $this->SetFont('Arial', '', 10);
26
        $this->SetY(40);
27
        $this->Cell(190, 10, $s, 0, 0, 'R');
28
 
29
        $this->SetFont('Arial', 'B', 15);
30
        $this->SetY(50);
31
        $this->Cell(180, 10, $headerFormName, 0, 0, 'C');
32
        $this->setY($this->getY() + 8);
33
 
34
 
35
        $this->SetFont('Arial', '', 10);
36
        $this->Cell(180, 10, $headerUsername, 0, 0, 'C');
37
        $this->setY($this->getY() + 10);
38
    }
39
    /**
40
     * Footer PDF
41
     */
42
    function Footer() {
43
        $this->SetY(-30);
44
        $this->Image($_SERVER['DOCUMENT_ROOT'] . '/pdf/footer_background.jpg', 10, $this->getY(), 190);
45
    }
46
    /**
47
     * Create chart PDF
48
     * @param string[] $labels
49
     * @param float[] $values
50
     * @param string $title
51
     * @param string $filename
52
     */
6039 eleazar 53
    function pieChart($labels, $values, $title, $filename) {
6916 eleazar 54
 
5866 eleazar 55
        // We need some data
56
        $datay = $values;
57
        $datax = $labels;
58
 
59
        // Setup the graph.
6106 eleazar 60
        $graph = new Graph\PieGraph(400, 240);
5866 eleazar 61
        $graph->clearTheme();
62
        $graph->SetShadow();
63
 
64
        // Create the bar pot
65
        $bplot = new Plot\PiePlot($datay);
7001 eleazar 66
        $bplot->SetLegends($datax);
7005 eleazar 67
        $bplot->SetCenter(0.3);
5866 eleazar 68
 
69
        // Setup color for gradient fill style
70
        // Set color for the frame of each bar
71
        $bplot->SetColor("white");
6128 eleazar 72
        $bplot->SetLabelType(PIE_VALUE_PER);
5866 eleazar 73
        $graph->Add($bplot);
74
 
75
 
6098 eleazar 76
        $graph->Stroke($filename);
5866 eleazar 77
    }
6143 eleazar 78
 
79
    function barChart($label, $values, $title, $filename)
80
    {
6168 eleazar 81
        $graph = new Graph\Graph(700, count($values) * 50, 'auto');
6148 eleazar 82
        $graph->SetScale('textint');
6143 eleazar 83
        $graph->clearTheme();
84
        $graph->SetShadow();
6179 eleazar 85
        $graph->Set90AndMargin(130, 30, 60, 30);
6144 eleazar 86
 
87
        $bplot = new Plot\BarPlot($values);
7048 eleazar 88
        $bplot->SetFillColor('orange');
89
        $bplot->SetWidth(0.5);
90
        $bplot->SetShadow();
7021 eleazar 91
        $bplot->SetCenter(0.3);
6144 eleazar 92
 
93
        $bplot->value->Show();
94
        $graph->Add($bplot);
95
 
96
        $graph->Stroke($filename);
6143 eleazar 97
    }
6908 eleazar 98
 
6935 eleazar 99
     /**
100
     * Create Table
101
     * @param string $title
102
     * @param array $content
103
     */
104
    function borderTable($title, $content) {
105
 
106
        // Header Table
107
        $this->SetFillColor(204, 204, 204);
108
        $this->SetDrawColor(0, 0, 0);
109
        $this->SetLineWidth(0);
110
        $this->SetFont('Arial', 'B', 9);
111
 
112
        $this->Cell(190, 6, utf8_decode($title), 1, 0, 'L', true);
113
        $this->Ln();
114
 
115
        // Body Table
116
        $this->SetFillColor(225, 255, 255);
117
        $this->SetTextColor(0);
118
 
119
        foreach ($content as $rs) {
120
            if (isset($rs['title'])) {
121
 
122
                $this->SetFont('Arial', 'B', 9);
123
                $this->Cell(50, 10, utf8_decode($rs['title']), 1, 0, 'L', false);
124
                $this->MultiCell(140, 10, utf8_decode($rs['content']), 1, 'L', false);
125
                $this->Ln();
126
            } else {
127
 
128
                $this->SetFont('Arial', '', 9);
129
                $this->MultiCell(190, 6, utf8_decode($rs['content']), 1, 'L', false);
130
            }
131
        }
132
        $this->Ln(5);
133
    }
5866 eleazar 134
}