forked from josantonius/php-hook
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathExample.php
108 lines (89 loc) · 1.91 KB
/
Example.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<?php
/**
* Library for handling hooks.
*
* @author Josantonius - [email protected]
* @copyright Copyright (c) 2017
* @license https://opensource.org/licenses/MIT - The MIT License (MIT)
* @link https://github.com/Josantonius/PHP-Hook
* @since 1.0.0
*/
namespace Josantonius\Hook\Tests;
/**
* Example class.
*
* @since 1.0.0
*/
class Example {
/**
* Instance.
*
* @since 1.0.0
*
* @var array
*/
private static $_instance = array();
/**
* Singleton pattern is used to create a single instance of the class.
*
* @since 1.0.0
*
* @return object → instance
*/
public static function getInstance() {
if (isset(self::$_instance)) {
return self::$_instance;
}
return self::$_instance = new self;
}
/**
* Singleton pattern with custom name.
*
* @since 1.0.0
*
* @return object → instance
*/
public static function newSingletonMethodName() {
return self::getInstance();
}
/**
* Actions for css hook.
*
* @since 1.0.0
*/
public function meta($title = 'A title') {
print("<title>$title</title>");
}
/**
* Actions for css hook.
*
* @since 1.0.0
*/
public function css() {
print('<link rel="stylesheet" type="text/css" href="resources/style.css">');
}
/**
* Actions for js hook.
*
* @since 1.0.0
*/
public function js() {
print('<script src="resources/script.js"></script>');
}
/**
* Actions for afterbody hook.
*
* @since 1.0.0
*/
public function afterBody() {
print('<h1>Hello World</h1>');
}
/**
* Actions for footer hook.
*
* @since 1.0.0
*/
public function footer() {
print('<h2>Footer</h2>');
}
}