Relatorio.php
1.18 KB
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
<?php
abstract class Relatorio
{
private $m_titulo;
private $m_header;
private $m_body = array();
private $m_rowAttr = array();
private $m_cellColor = array();
public function setTitulo($titulo)
{
$this->m_titulo = $titulo;
}
public function getTitulo()
{
return $this->m_titulo;
}
public function setRowColor($row, $r, $g, $b)
{
$this->m_rowAttr[$row] = array($r, $g, $b);
}
public function getRowColor($row)
{
return $this->m_rowAttr[$row];
}
public function setCellColor($row, $col, $rgb)
{
$this->m_cellColor[$row][$col] = $rgb;
}
public function getCellColor($row, $col)
{
if (!isset($this->m_cellColor[$row][$col]))
{
return FALSE;
}
return $this->m_cellColor[$row][$col];
}
public function setTableHeader(array $header)
{
$this->m_header = $header;
}
public function addRow(array $row)
{
$this->m_body[] = $row;
}
public function getHeader()
{
return $this->m_header;
}
public function getBody()
{
return $this->m_body;
}
public function relstrip($html)
{
return strip_tags(str_ireplace('<br>', "\n", $html));
}
public abstract function output();
}
?>