aboutsummaryrefslogtreecommitdiff
path: root/class/moar.php
blob: 822640fa4efbfe603ea6f2be893d344a89fff54a (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
<?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(){
		if ( ! empty( $this->header ) ){
			foreach( $this->header as $value ){
				echo $value;
			}
		}
		$this->deleteHeader();
	}

	public function playFooter(){
		if ( ! empty( $this->footer ) ){
			foreach( $this->footer as $value ){
				echo $value;
			}
		}
		$this->deleteFooter();
	}

	public function deleteHeader(){
		unset( $this->header );
	}

	public function deleteFooter(){
		unset( $this->footer );

	}

	public function magicHeader($html){
		ob_start();
		$this->playHeader();
		$header = ob_get_contents();
		ob_end_clean();
		return preg_replace("/\<\!\-\-%%placeholder\-head%%\-\-\>/", $header, $html);
	}

	public function __destruct(){
		return true;
	}
}