ModelVisual.php
2.91 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
<?php
namespace Nextend\Framework\Visual;
use Nextend\Framework\Model\AbstractModel;
use Nextend\Framework\Model\ApplicationSection;
use Nextend\Framework\Model\StorageSectionManager;
class ModelVisual extends AbstractModel {
protected $type = '';
/** @var ApplicationSection */
protected $storage;
protected function init() {
$this->storage = StorageSectionManager::getStorage('system');
}
public function getType() {
return $this->type;
}
public function renderSetsForm() {
}
public function getSets() {
return $this->storage->getAll($this->type . 'set');
}
public function getSetByVisualId($visualId) {
$visual = $this->storage->getById($visualId, $this->type);
if (!empty($visual)) {
return array(
'setId' => $visual['referencekey'],
'visuals' => $this->getVisuals($visual['referencekey'])
);
}
return false;
}
public function createSet($name) {
$setId = $this->storage->add($this->type . 'set', '', $name);
$set = $this->storage->getById($setId, $this->type . 'set');
if (!empty($set) && $set['section'] == $this->type . 'set') {
return $set;
}
return false;
}
public function renameSet($setId, $name) {
$set = $this->storage->getById($setId, $this->type . 'set');
if (!empty($set) && $set['section'] == $this->type . 'set' && $set['editable']) {
if ($this->storage->setById($setId, $name)) {
$set['value'] = $name;
return $set;
}
}
return false;
}
public function deleteSet($setId) {
$set = $this->storage->getById($setId, $this->type . 'set');
if (!empty($set) && $set['section'] == $this->type . 'set' && $set['editable'] && $set['system'] == 0) {
if ($this->storage->deleteById($setId)) {
return $set;
}
}
return false;
}
public function addVisual($setId, $visual) {
$visualId = $this->storage->add($this->type, $setId, $visual);
$visual = $this->storage->getById($visualId, $this->type);
if (!empty($visual) && $visual['section'] == $this->type) {
return $visual;
}
return false;
}
public function deleteVisual($id) {
$visual = $this->storage->getById($id, $this->type);
if (!empty($visual) && $visual['section'] == $this->type) {
$this->storage->deleteById($id);
return $visual;
}
return false;
}
public function changeVisual($id, $value) {
if ($this->storage->setById($id, $value)) {
return $this->storage->getById($id, $this->type);
}
return false;
}
public function getVisuals($setId) {
return $this->storage->getAll($this->type, $setId);
}
}