StyleStorage.php
2.32 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
<?php
namespace Nextend\Framework\Style;
use Nextend\Framework\Pattern\SingletonTrait;
use Nextend\Framework\Plugin;
class StyleStorage {
use SingletonTrait;
private $sets = array();
private $styles = array();
private $stylesBySet = array();
private $stylesById = array();
protected function init() {
Plugin::addAction('systemstyleset', array(
$this,
'styleSet'
));
Plugin::addAction('systemstyle', array(
$this,
'styles'
));
Plugin::addAction('style', array(
$this,
'style'
));
}
private function load() {
static $loaded;
if (!$loaded) {
Plugin::doAction('styleStorage', array(
&$this->sets,
&$this->styles
));
for ($i = 0; $i < count($this->styles); $i++) {
if (!isset($this->stylesBySet[$this->styles[$i]['referencekey']])) {
$this->stylesBySet[$this->styles[$i]['referencekey']] = array();
}
$this->stylesBySet[$this->styles[$i]['referencekey']][] = &$this->styles[$i];
$this->stylesById[$this->styles[$i]['id']] = &$this->styles[$i];
}
$loaded = true;
}
}
public function styleSet($referenceKey, &$sets) {
$this->load();
for ($i = count($this->sets) - 1; $i >= 0; $i--) {
$this->sets[$i]['system'] = 1;
$this->sets[$i]['editable'] = 0;
array_unshift($sets, $this->sets[$i]);
}
}
public function styles($referenceKey, &$styles) {
$this->load();
if (isset($this->stylesBySet[$referenceKey])) {
$_styles = &$this->stylesBySet[$referenceKey];
for ($i = count($_styles) - 1; $i >= 0; $i--) {
$_styles[$i]['system'] = 1;
$_styles[$i]['editable'] = 0;
array_unshift($styles, $_styles[$i]);
}
}
}
public function style($id, &$style) {
$this->load();
if (isset($this->stylesById[$id])) {
$this->stylesById[$id]['system'] = 1;
$this->stylesById[$id]['editable'] = 0;
$style = $this->stylesById[$id];
}
}
}