View.php
1.98 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
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<?php
namespace AC;
class View implements Renderable {
/**
* @var array
*/
private $data = [];
/**
* @var string
*/
private $template;
public function __construct( array $data = [] ) {
$this->set_data( $data );
}
public function get( $key ) {
if ( ! isset( $this->data[ $key ] ) ) {
return null;
}
return $this->data[ $key ];
}
public function __get( $key ) {
return $this->get( $key );
}
public function __set( $key, $value ) {
return $this->set( $key, $value );
}
/**
* @param $key
* @param $value
*
* @return $this
*/
public function set( $key, $value ) {
$this->data[ $key ] = $value;
return $this;
}
public function get_data() {
return $this->data;
}
public function set_data( array $data ) {
foreach ( $data as $key => $value ) {
$this->set( $key, $value );
}
return $this;
}
/**
* Will try to resolve the current template to a file
* @return false|string
*/
public function resolve_template() {
/**
* Returns the available template paths for column settings
*
* @param array $paths Template paths
* @param string $template Current template path
*/
$paths = apply_filters( 'ac/view/templates', [ AC()->get_dir() . 'templates' ], $this->template );
foreach ( $paths as $path ) {
$file = $path . '/' . $this->template . '.php';
if ( is_readable( $file ) ) {
include $file;
return true;
}
}
return false;
}
/**
* Get a string representation of this object
* @return string
*/
public function render() {
ob_start();
$this->resolve_template();
return ob_get_clean();
}
/**
* @return string
*/
public function get_template() {
return $this->template;
}
/**
* @param string $template
*
* @return $this
*/
public function set_template( $template ) {
$this->template = $template;
return $this;
}
/**
* Should call self::render when treated as a string
* @return string
*/
public function __toString() {
return $this->render();
}
}