-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathView.php
120 lines (94 loc) · 2.18 KB
/
View.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
109
110
111
112
113
114
115
116
117
118
119
120
<?php
namespace AC;
class View implements Renderable
{
/**
* @var array
*/
private $data = [];
/**
* @var string|null
*/
private $template;
public function __construct(array $data = [])
{
$this->set_data($data);
}
public function get(string $key)
{
return $this->data[$key] ?? null;
}
public function __get($key)
{
return $this->get($key);
}
public function __set($key, $value)
{
return $this->set($key, $value);
}
public function set(string $key, $value): self
{
$this->data[$key] = $value;
return $this;
}
public function get_data(): array
{
return $this->data;
}
public function set_data(array $data): self
{
foreach ($data as $key => $value) {
$this->set($key, $value);
}
return $this;
}
/**
* Will try to resolve the current template to a file
*/
public function resolve_template(): bool
{
/**
* 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',
[
Container::get_location()->with_suffix('templates')->get_path(),
],
$this->template
);
foreach ($paths as $path) {
$file = $path . '/' . $this->template . '.php';
if (is_readable($file)) {
include $file;
return true;
}
}
return false;
}
public function render(): string
{
ob_start();
$this->resolve_template();
return ob_get_clean();
}
public function get_template(): ?string
{
return $this->template;
}
public function set_template(string $template): self
{
$this->template = $template;
return $this;
}
/**
* Should call self::render when treated as a string
*/
public function __toString(): string
{
return $this->render();
}
}