1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace Bonfim\Tpl; |
4
|
|
|
|
5
|
|
|
class Inheritance extends Content |
6
|
|
|
{ |
7
|
|
|
private $config; |
8
|
|
|
private $blocks = []; |
9
|
|
|
private $content = ''; |
10
|
|
|
private $patternBlock = '/{\s?block \'?"?([\w]+)"?\'?\s?}(.*?){\s?\/block\s?}/is'; |
11
|
|
|
private $patternExtends = '/{\s?extends \'?"?(.*?)"?\'?\s?}/is'; |
12
|
|
|
|
13
|
4 |
|
public function __construct(string $content, array $config) |
14
|
|
|
{ |
15
|
4 |
|
$this->config = $config; |
16
|
4 |
|
$this->content = $content; |
17
|
4 |
|
$this->block(); |
18
|
4 |
|
$this->extends(); |
19
|
4 |
|
} |
20
|
|
|
|
21
|
4 |
|
public function __toString(): string |
22
|
|
|
{ |
23
|
4 |
|
return $this->content; |
24
|
|
|
} |
25
|
|
|
|
26
|
4 |
|
private function block(): void |
27
|
|
|
{ |
28
|
4 |
|
if (preg_match_all($this->patternBlock, $this->content, $matches, PREG_SET_ORDER)) { |
29
|
2 |
|
for ($i = 0; $i < count($matches); $i++) { |
|
|
|
|
30
|
2 |
|
$this->blocks[$matches[$i][1]] = $matches[$i][2]; |
31
|
2 |
|
$this->content = str_replace($this->blocks[$matches[$i][1]], '', $this->content); |
32
|
|
|
}; |
33
|
|
|
} |
34
|
4 |
|
} |
35
|
|
|
|
36
|
4 |
|
private function extends(): void |
37
|
|
|
{ |
38
|
4 |
|
if (preg_match($this->patternExtends, $this->content, $match)) { |
39
|
2 |
|
$this->content = $this->getContent($match[1], $this->config); |
40
|
2 |
|
$this->replace(); |
41
|
|
|
} |
42
|
4 |
|
} |
43
|
|
|
|
44
|
2 |
|
private function replace(): void |
45
|
|
|
{ |
46
|
2 |
|
foreach ($this->blocks as $key => $value) { |
47
|
2 |
|
$pattern = '/{\s?block \'?"?'.$key.'"?\'?\s?}(.*?){\s?\/block\s?}/is'; |
48
|
2 |
|
$this->content = preg_replace($pattern, $value, $this->content); |
49
|
|
|
} |
50
|
|
|
|
51
|
2 |
|
$this->content = preg_replace('/{\s?block \'?"?[\w]+"?\'?\s?}/is', '', $this->content); |
52
|
2 |
|
$this->content = preg_replace('/{\s?\/block\s?}/is', '', $this->content); |
53
|
2 |
|
} |
54
|
|
|
} |
55
|
|
|
|
If the size of the collection does not change during the iteration, it is generally a good practice to compute it beforehand, and not on each iteration: