-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pagina.php
78 lines (70 loc) · 1.31 KB
/
Pagina.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?php
class Pagina
{
private $_titulo;
private $_cuerpo;
private $_hr; //human readable
private $_arr_archivos_css=array();
function __construct($titulo='',$hr=false)
{
$this->_titulo=$titulo;
$this->_hr=$hr;
}
public function toHtml()
{
$head=$this->head();
$body=$this->body();
$html=<<<html
<!DOCTYPE html>
<html>
$head
$body
</html>
html;
//TODO aqui hacer arreglos a html antes de enviar
if($this->_hr==false)
{
$html=str_replace("\n",'',$html);
}
return $html;
}
public function agregarBody($cuerpo)
{
$this->_cuerpo=$cuerpo;
}
public function agregarTitle($titulo)
{
$this->_titulo=$titulo;
}
public function agregarCss($nombre)
{
$this->_arr_archivos_css[]=$nombre;
}
private function head()
{
$titulo=$this->_titulo;
$html_css='';
foreach($this->_arr_archivos_css as $valor)
{
$html_css.=<<<html
<link rel="stylesheet" type="text/css" href="$valor" />
html;
}
return <<<html
<head>
<title>$titulo</title>
$html_css
</head>
html;
}
private function body()
{
$cuerpo=$this->_cuerpo;
return <<<html
<body>
$cuerpo
</body>
html;
}
}
?>