class.modules_old.php
7.71 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
<?php
/**
* @author: Bunzia Alexander <nifus@mail.ru> <http://www.weblancer.net/users/nifus/>
* @copyright: Copyright (c) 2010, Bunzia Alexander
* @version: 1.0
* @license: http://www.gnu.org/copyleft/gpl.html GNU/GPL
* @package: HiLo CMS
*/
include_once(MAIN_SOURCE_PATH.'/modules/admin/lang/'.MAIN_LANG.'/lang.php');
// класс для формирования зароса
class m_query extends query{
public function __construct($alias){
$this -> set_table( MAIN_MODULES_TBL );
$this -> set_alias($alias);
return true;
}
public function include_pages($alias,$cols=''){
$this -> include_table(MAIN_PAGES_TBL,$alias,'m_id',$cols );
return true;
}
public function where_id($id){
$id = intval($id);
if ( empty($id) ){
return false;
}
return $this -> set_where( $this -> alias.'.m_id',$id);
}
public function where_active($id){
$id = intval($id);
if ( empty($id) ){
return false;
}
return $this -> set_where( $this -> alias.'.m_status',$id);
}
public function where_path($path){
if ( !modules::is_path($path) ){
return false;
}
return $this -> set_where( $this -> alias.'.m_path',$path);
}
/**
* Сортируем модули
*
* @var: str $v ASC/DESC
* @return: bool
*/
public function orderby_pos($v){
return $this -> set_orderby($this -> alias.'.m_pos',$v);
}
/****************
* функции-обработчики алиасов при выборе из таблицы
******************/
/*
public function count_blocks($id){
global $MAIN_DB;
$sql = "SELECT COUNT(*) FROM ".MAIN_PLB_TBL." WHERE f_id='$id'";
list($count) = $MAIN_DB -> fetch_array( $MAIN_DB -> query($sql) );
return $count;
}
*/
}
class modules{
public $debug = false;
private $info = array();
private $main_key = false;
private $last_error=false;
private $set_info = array();
private function __construct( $array ){
$this -> info = $array;
$this -> main_key = $array['m_id'];
}
// загрузка модуля по его id
static function load_id($id){
$m = new m_query('m');
if ( !$m -> where_id($id) ){
return false;
}
$m -> get('*');
if ( $m -> get_count_rows()==0 ){
return FALSE;
}
return new modules($m -> row());
}
static function load_path($id){
$m = new m_query('m');
if ( !$m -> where_path($id) ){
return false;
}
$m -> get('*');
if ( $m -> get_count_rows()==0 ){
return FALSE;
}
return new modules($m -> row());
}
static function create(){
return new modules( array('m_id'=>0) );
}
public function update(){
global $MAIN_DB;
if ( false===$this -> main_key ){
$this -> make_error(ERROR_500,A_EMPTY_ID);
}
if ( !empty($this -> error) ){
return $this -> error;
}
if ( sizeof($this -> set_info)==0 ){
$this -> make_error(ERROR_500,A_EMPTY_ARRAY);
}
$sql = array();
foreach( $this -> set_info as $k=>$v ){
$sql[]="`$k`='".sys_in_sql($v)."'";
}
$sql = "
UPDATE ".$MAIN_DB -> prefix("system_modules")."
SET ".implode(',',$sql)."
WHERE m_id='".$this -> main_key."'";
if ( !empty($this -> debug) ){
die($sql);
}
$MAIN_DB -> query($sql);
return true;
}
public function insert(){
global $MAIN_DB;
// при инициализации значений произошла ошибка
if ( false!==$this -> error() ){
return $this -> error();
}
if ( sizeof($this -> set_info)==0 ){
$this -> make_error(ERROR_500,A_EMPTY_ARRAY);
}
// так как запись новая, нужно проверить уникальные ключи на повторение
if ( modules::exists_module($this -> set_info['m_path']) ){
$this -> make_error(ERROR_MESSAGE, sprintf(A_EXISTS_MODULE,$this -> set_info['m_path']));
return false;
}
$sql = array();
foreach( $this -> set_info as $k=>$v ){
$sql[]="`$k`='".sys_in_sql($v)."'";
}
$sql = "INSERT INTO ".$MAIN_DB -> prefix("system_modules")." SET ".implode(',',$sql)."";
if ( !empty($this -> debug) ){
die($sql);
}
$MAIN_DB -> query($sql);
return $MAIN_DB -> insert_id();
}
// удаление объекта лучше делать частью объекта
public function delete(){
global $MAIN_DB;
$id = $this -> id();
if ( empty($id) ){
$this -> make_error(ERROR_500,A_EMPTY_ID);
}
include_once(MAIN_SOURCE_PATH.'/modules/admin/inc/class.pages.php');
$p = new pagesQuery('f');
$p -> where_mid($id);
$p -> get('f.f_id');
while( list($f_id) = $p -> row() ){
$page = pages::load_id($f_id);
if ( false===$page ){
die('continue');
}
$page -> delete();
}
$sql = "DELETE FROM ".$MAIN_DB -> prefix("system_modules")." WHERE m_id='$id'";
$MAIN_DB -> query($sql);
return true;
}
public function get($k){
if ( isset($this -> info[$k]) ){
return $this -> info[$k];
}
$this -> make_error(ERROR_500, sprintf(A_NOT_VAR,$k) );
}
public function set($k,$v){
if ( method_exists($this,'set_'.$k) ){
$f = 'set_'.$k;
return $this -> $f($v);
}
$this -> set_info[$k] = $v;
return true;
}
/***************************
* SET - функции. Это уникальные обработчики для значений заносимых в базу данных
***********************/
public function set_m_name($v){
if ( empty($v) ){
$this -> make_error(ERROR_MESSAGE,'Ошибка: название модуля не указано');
return false;
}
$this -> set_info['m_name']=$v;
return true;
}
public function set_m_path($v){
if ( empty($v) ){
$this -> make_error(ERROR_MESSAGE,'Ошибка: адрес модуля не указан');
return false;
}
$this -> set_info['m_path']=$v;
return true;
}
/***************************
* GET
****************************/
public function id(){
return $this -> info['m_id'];
}
public function path(){
return $this -> info['m_path'];
}
public function name(){
return $this -> info['m_name'];
}
/****************************
* СТАТИЧНЫЕ ФУНКЦИИ ОТНОСЯЩИЕСЯ К МОДУЛЮ
*******************************/
// проверяем название каталога для модуля
static function is_path($p){
if ( empty($p) ){
return false;
}
if ( preg_match('#[^a-z_0-9]#i',$p) ){
return false;
}
return true;
}
static function exists_module($v){
$u = new m_query('m');
$u -> where_path($v);
//$u -> set_debug(1);
$u -> get('COUNT(*)');
list($count) = $u -> row();
if ( $count>0 ){
return true;
}
return false;
}
protected function make_error($type,$msg){
switch($type){
case(ERROR_MESSAGE):
$this -> last_error = $msg;
break;
}
}
public function error(){
return $this -> last_error;
}
// модуль поддерживает или нет работу с комментариями
public function exists_comments(){
$path = $this -> path();
if ( !file_exists(MAIN_SOURCE_PATH.'/modules/'.$path.'/inc/class.comments.php') ){
return false;
}
return true;
}
/*************
* Это список модулей, которые будут пользоваться общей таблицей категорий
* Какой-то механизм внедрять смысла нет, по-этому здесь просто централизованное хранилище
*
* @project poremontu
* @return array
*
***********/
static function use_category(){
return array('news','articles','blogs','faq','gallery');
}
/**
* получаем список модулей
*
*/
static function list_active(){
$modules = array();
$m = new m_query('m');
$m -> where_active(1);
$m -> get('m_path');
while( list($m_path) = $m -> row() ){
$modules[]=$m_path;
}
return $modules;
}
}
?>