class.autocatalog.php
5.66 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
<?php
/**
* @author: Bunzia Alexander <nifus@mail.ru> <http://www.weblancer.net/autoCatalog/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.'/inc/class.query.php');
include_once(MAIN_SOURCE_PATH.'/inc/class.objects.php');
include_once(MAIN_SOURCE_PATH.'/modules/autoCatalog/inc/class.autoCatalogCategory.php');
include_once(MAIN_SOURCE_PATH.'/modules/autoCatalog/inc/url.php');
include_once(MAIN_SOURCE_PATH.'/modules/autoCatalog/lang/'.MAIN_LANG.'/lang.php');
/*
class htmlAutoCatalog extends htmlControl
{
static function orderById()
{
Hl::registerJs(MAIN_PATH.'/tmp/view/autoCatalog/js/admin.js');
retrun self::orderBy( 'item_id' );
}
}*/
class filedsSetAutoCatalog
{
//static $id = false; // адрес новости
static function alias($v){
$v = trim($v);
if ( empty($v) ){
throw new Exception('Ошибка: нужно заполнить поле "Адрес"!');
}
return sys_translit($v);
}
static function title($v){
$v = trim($v);
if ( empty($v) ){
throw new Exception('Ошибка: нужно заполнить поле "Название"!');
}
return $v;
}
static function category_id($v){
if ( empty($v) ){
throw new Exception('Ошибка: нужно выбрать Категорию!');
}
return $v;
}
/*
static function name($v){
$v = trim($v);
if ( empty($v) ){
throw new Exception('Ошибка: нужно заполнить поле "Имя"!');
}
return $v;
}
static function email($v){
if ( !sys_is_mail($v) ){
throw new Exception('Ошибка: нужно заполнить поле "E-Mail"!');
}
return $v;
}
static function status($v){
return !empty($v) ? 1 : 0;
}*/
}
class filedsGetAutoCatalog
{
static $__var = array(); // для хранения временных переменных
static function upl_img($v){
$a = new upload_img('image1');
$a -> set_max_size( 5000000 );
$a -> set_file($v);
$a -> set_path( 'catalog/img');
$a -> set_base( MAIN_URL.'/media/catalog/img');
return $a -> get('img1',1,'form[preview_image]');
}
static function upl_img2($v){
$a = new upload_img('image2');
$a -> set_max_size( 5000000 );
$a -> set_file($v);
$a -> set_path( 'catalog/img');
$a -> set_base( MAIN_URL.'/media/catalog/img');
return $a -> get('img2',20,'form[images]');
}
static function categorySelect($v){
$s = new select_box();
$s -> selected_id($v);
$s -> empty_record(true,0,'-Выберите категорию-');
foreach( autoCatalog::$categoryes as $k=>$v )
{
$s -> set($k,$v);
}
return $s -> get();
}
static function categoryName($v){
return autoCatalog::$categoryes[$v];
}
static function mainSrc($v){
if ( empty($v) ){
return false;
}
return MAIN_URL.'/media/catalog/img/'.$v;
}
static function itemUrl($v){
if ( empty($v) ){
return false;
}
return MAIN_URL.'/gal/'.$v.'.html';
}
static function imagesArray($v){
if ( empty($v) ){
return false;
}
$v = explode('|',$v);
$images = array();
foreach( $v as $img ){
$images[] = self::mainSrc($img);
}
return $images;
}
}
class autoCatalogQuery extends query{
var $fields_get = 'filedsGetAutoCatalog';
/**
* @var string $alias Алиас для исплользования в mysql запросе
*/
public function __construct($alias){
global $MAIN_DB;
$this -> set_table( $MAIN_DB -> prefix("autocatalog"));
$this -> set_alias( $alias );
}
public function where_id($id){
$id = intval($id);
if ( empty($id) ){
return false;
}
return $this -> set_where( $this -> alias.'.item_id',$id);
}
public function where_category($id){
if ( empty($id) ){
return false;
}
return $this -> set_where( $this -> alias.'.category_id',$id);
}
public function where_alias($v){
if ( false===sys_is_alias($v) ){
return false;
}
return $this -> set_where( $this -> alias.'.alias',$v);
}
public function orderby_id($v){
return $this -> set_orderby($this -> alias.'.item_id',$v);
}
public function orderby_sort($v){
return $this -> set_orderby($this -> alias.'.sort',$v);
}
public function orderby_title($v){
return $this -> set_orderby($this -> alias.'.title',$v);
}
public function orderby_rand($v){
return $this -> set_orderby('RAND()');
}
public function orderby_time_add($v){
return $this -> set_orderby($this -> alias.'.time_add',$v);
}
} // end class
class autoCatalog extends objects{
public $table = "autocatalog";
public $key = "item_id";
public $fields = 'filedsSetAutoCatalog';
static $categoryes = array('auto_v'=>'Внешний тюнинг', 'auto_vn'=>'Тюнинг интерьера', 'aero'=>'Аэрография');
static function query($a){
return new autoCatalogQuery($a);
}
static function existsAutoCatalog($alias){
$u = self::query('u');
//$u -> set_debug(1);
$u -> where_alias($alias);
$u -> get('COUNT(*)');
list($count) = $u -> row();
if ( $count>0 ){
return true;
}
return false;
}
static function create(){
return new self(0,array() );
}
static function searchById($id){
$u = self::query('u');
if ( !$u -> where_id($id) ){
return FALSE;
}
if ( !$u -> get('u.*') ){
return FALSE;
}
if ( $u -> get_count_rows()==0 ){
return FALSE;
}
return new self( $id,$u -> row() );
}
} // end class
?>