blob: b917c1dc12ad6cda766cfab190eee0f513e09627 (
plain)
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
|
<?php
class Moar {
private $header = array();
private $footer = array();
public function __construct(){
return true;
}
public function addHeader($string){
$this->header[] = $string;
}
public function addFooter($string){
$this->footer[] = $string;
}
public function playHeader($output = true){
if ( ! empty( $this->header ) ){
if ( ! $output )
$buffer = "";
foreach( $this->header as $value ){
if ( $output )
echo $value;
else
$buffer .= $value;
}
}
$this->deleteHeader();
if ( isset($buffer) )
return $buffer;
}
public function playFooter($output = true){
if ( ! empty( $this->footer ) ){
if ( ! $output )
$buffer = "";
foreach( $this->footer as $value ){
if ( $output )
echo $value;
else
$buffer .= $value;
}
}
$this->deleteFooter();
if ( isset($buffer) )
return $buffer;
}
public function deleteHeader(){
unset( $this->header );
}
public function deleteFooter(){
unset( $this->footer );
}
public function magicHeader($html){
$header = $this->playHeader(false);
return preg_replace("/\<\!\-\-%%placeholder\-head%%\-\-\>/", $header, $html);
}
public function __destruct(){
return true;
}
}
|