MODPATH/ariol/classes/Kohana/Database/MySQLi.php [ 174 ]
169 {
170 // This benchmark is worthless
171 Profiler::delete($benchmark);
172 }
173
174 throw new Database_Exception(':error [ :query ]',
175 array(':error' => mysqli_error($this->_connection), ':query' => $sql),
176 mysqli_errno($this->_connection));
177 }
178
179 if (isset($benchmark))
-
MODPATH/database/classes/Kohana/Database/Query.php [ 251 ] » Kohana_Database_MySQLi->query(arguments)
0
integer 1
1
string(2451) "SELECT `product`.`id` AS `id`, `product`.`name` AS `name`, `product`.`url` AS `url`, `product`.`md5_url` AS `md5_url`, `product` …"
2
bool FALSE
3
array(0)
246 return new Database_Result_Cached($result, $sql, $as_object, $object_params); 247 } 248 } 249 250 // Execute the query 251 $result = $db->query($this->_type, $sql, $as_object, $object_params); 252 253 if (isset($cache_key) AND $this->_lifetime > 0) 254 { 255 // Cache the result array 256 Kohana::cache($cache_key, $result->as_array(), $this->_lifetime);
-
MODPATH/orm/classes/Kohana/ORM.php [ 1077 ] » Kohana_Database_Query->execute(arguments)
0
object Database_MySQLi(6)
{ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }1072 return $result; 1073 } 1074 else 1075 { 1076 // Load the result as an associative array 1077 $result = $this->_db_builder->as_assoc()->execute($this->_db); 1078 1079 if (Arr::get($_GET, 'debug')) { 1080 $debugbar = Debug::StandardDebugBar(); 1081 $debugbar["messages"]->addMessage($result->get_query()); 1082 }
-
MODPATH/orm/classes/Kohana/ORM.php [ 979 ] » Kohana_ORM->_load_result(arguments)
0
bool FALSE
974 } 975 } 976 977 $this->_build(Database::SELECT); 978 979 return $this->_load_result(FALSE); 980 } 981 982 /** 983 * Finds multiple database rows and returns an iterator of the rows found. 984 *
-
MODPATH/orm/classes/Kohana/ORM.php [ 271 ] » Kohana_ORM->find()
266 $this->find(); 267 } 268 else 269 { 270 // Passing the primary key 271 $this->where($this->_object_name.'.'.$this->_primary_key, '=', $id)->find(); 272 } 273 } 274 elseif ( ! empty($this->_cast_data)) 275 { 276 // Load preloaded data from a database call cast
-
MODPATH/orm/classes/Kohana/ORM.php [ 46 ] » Kohana_ORM->__construct(arguments)
0
string(6) "540145"
41 public static function factory($model, $id = NULL) 42 { 43 // Set class name 44 $model = 'Model_'.$model; 45 46 return new $model($id); 47 } 48 49 /** 50 * "Has one" relationships 51 * @var array
-
APPPATH/classes/Model/Product.php [ 158 ] » Kohana_ORM::factory(arguments)
0
string(7) "Product"
1
string(6) "540145"
153 return $this->getSiteUrl(); 154 } 155 156 public function getSiteUrl() 157 { 158 $product = ORM::factory('Product', $this->id); 159 160 return '/' . $product->category->url . '/' .$product->url; 161 } 162 163 public function getCountComment()
-
APPPATH/views/site/partial/product_new.php [ 25 ] » Model_Product->getSiteUrl()
20 <p> 21 <?php echo $product->article ?> 22 </p> 23 </div> 24 <div class="nameProd"> 25 <a href="<?php echo $product->getSiteUrl(); ?>"><?php echo $product->name ?></a> 26 </div> 27 </div> 28 <div class="prodPrices"> 29 <div class="infoPrice"> 30 <?php if ($product->active) { ?>
-
SYSPATH/classes/Kohana/View.php [ 61 ] » include(arguments)
0
string(81) "/var/www/www-root/data/www/1teh.by/application/views/site/partial/product_new.php"
56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean();
-
SYSPATH/classes/Kohana/View.php [ 348 ] » Kohana_View::capture(arguments)
0
string(81) "/var/www/www-root/data/www/1teh.by/application/views/site/partial/product_new.php"
1
array(1) ( "product" => object Model_Product(40)
{ protected _table_name => string(7) "product" protected _belongs_to => array(4) ( "section" => array(3) ( "foreign_key" => string(10) "section_id" "model" => string(7) "Section" "required" => bool TRUE ) "gift" => array(3) ( "foreign_key" => string(7) "gift_id" "model" => string(4) "Gift" "required" => bool TRUE ) "brand" => array(3) ( "foreign_key" => string(8) "brand_id" "model" => string(5) "Brand" "required" => bool TRUE ) "category" => array(3) ( "foreign_key" => string(11) "category_id" "model" => string(8) "Category" "required" => bool TRUE ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-product:edit?id=${id}" "external_url" => string(77) "site-product:index?product=${url}&category=${category.url}&article=${article}" ) "two_year" => string(4) "bool" "edit" => array(6) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(27) "admin-product:edit?id=${id}" "title" => string(26) "<i class="fa fa-edit"></i>" "color" => string(5) "green" "alternative" => string(26) "Редактировать" ) "delete" => array(7) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(29) "admin-product:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "alternative" => string(14) "Удалить" "color" => string(3) "red" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(2) "id" "order_direction" => string(4) "DESC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(63) ( "id" => string(6) "540145" "name" => string(62) "Сэндвичницы, вафельницы Clatronic WA 3492" "url" => string(17) "wa-3492_clatronic" "md5_url" => string(32) "8f909c5de1ba743290ad226fa2e082bc" "top" => string(1) "0" "important" => string(1) "0" "main_image" => string(58) "/files/product/540145/8f7554fb8d145736052407a6113f57ce.jpg" "more_images" => NULL "s_title" => string(118) "Купить Сэндвичницы, вафельницы Clatronic WA 3492 в Минске по низкой цене" "s_description" => string(198) "Лучшие цены на WA 3492 и все товары Clatronic в магазине 1teh.by. Бесплатная доставка, отзывы на Сэндвичницы, вафельницы" "s_keywords" => string(62) "Сэндвичницы, вафельницы,Clatronic,WA 3492" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(1454) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Основные</td></tr><tr class="qurow2"><td class= …" "short_content" => string(79) "вафельница, 1000 Вт, регулировка температуры" "active" => string(1) "1" "section_id" => string(1) "1" "price" => string(6) "180.70" "new_price" => string(6) "180.70" "discount" => NULL "created_at" => string(19) "2025-05-31 16:31:50" "article" => string(7) "WA 3492" "unique_code" => string(6) "540145" "original" => string(50) "http://1teh.by/files/products/img_429756_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(2) "31" "updated_at" => NULL "category_id" => string(4) "4299" "garanty" => string(5) "12.00" "importer" => string(180) "ООО «НТТ Импорт» 223060 Минская обл. Минский р-н Новодворский с/с 40/2 район д. Большое Стиклево оф.86<br>" "country_made" => string(0) "" "manufacturer" => string(43) "uwon-si Gyeonggi-do 443-742 Malaysia Penang" "service" => string(188) "ООО «НТТ Систем» Минский р-н Новодворский с/с 40/1-2 район д. Большое Стиклево Торгово-складской корпус №1" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "1" "free_delivery" => string(1) "1" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(49) "["https:\/\/api.zoomos.by\/img\/item\/564771\/0"]" "zoomos_filters" => NULL "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => string(13) "1748583523000" ) protected _changed => array(0) protected _original_values => array(63) ( "id" => string(6) "540145" "name" => string(62) "Сэндвичницы, вафельницы Clatronic WA 3492" "url" => string(17) "wa-3492_clatronic" "md5_url" => string(32) "8f909c5de1ba743290ad226fa2e082bc" "top" => string(1) "0" "important" => string(1) "0" "main_image" => string(58) "/files/product/540145/8f7554fb8d145736052407a6113f57ce.jpg" "more_images" => NULL "s_title" => string(118) "Купить Сэндвичницы, вафельницы Clatronic WA 3492 в Минске по низкой цене" "s_description" => string(198) "Лучшие цены на WA 3492 и все товары Clatronic в магазине 1teh.by. Бесплатная доставка, отзывы на Сэндвичницы, вафельницы" "s_keywords" => string(62) "Сэндвичницы, вафельницы,Clatronic,WA 3492" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(1454) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Основные</td></tr><tr class="qurow2"><td class= …" "short_content" => string(79) "вафельница, 1000 Вт, регулировка температуры" "active" => string(1) "1" "section_id" => string(1) "1" "price" => string(6) "180.70" "new_price" => string(6) "180.70" "discount" => NULL "created_at" => string(19) "2025-05-31 16:31:50" "article" => string(7) "WA 3492" "unique_code" => string(6) "540145" "original" => string(50) "http://1teh.by/files/products/img_429756_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(2) "31" "updated_at" => NULL "category_id" => string(4) "4299" "garanty" => string(5) "12.00" "importer" => string(180) "ООО «НТТ Импорт» 223060 Минская обл. Минский р-н Новодворский с/с 40/2 район д. Большое Стиклево оф.86<br>" "country_made" => string(0) "" "manufacturer" => string(43) "uwon-si Gyeonggi-do 443-742 Malaysia Penang" "service" => string(188) "ООО «НТТ Систем» Минский р-н Новодворский с/с 40/1-2 район д. Большое Стиклево Торгово-складской корпус №1" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "1" "free_delivery" => string(1) "1" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(49) "["https:\/\/api.zoomos.by\/img\/item\/564771\/0"]" "zoomos_filters" => NULL "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => string(13) "1748583523000" ) protected _related => array(1) ( "section" => object Model_Section(40)
){ protected _table_name => string(8) "sections" protected _has_many => array(1) ( "product" => array(4) ( "foreign_key" => string(10) "section_id" "through" => NULL "model" => string(7) "Product" "far_key" => string(10) "product_id" ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-section:edit?id=${id}" "external_url" => string(35) "site-section:index?url=${url}&page=" ) "active" => string(4) "bool" "position" => string(8) "position" "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(29) "admin-section:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(8) "position" "order_direction" => string(3) "ASC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(1) "1" "name" => string(17) "Для кухни" "url" => string(10) "dlya-kuhni" "md5_url" => string(32) "88ad44ed318cc2730fcbd8848a9817a1" "active" => string(1) "1" "s_title" => string(120) "Кухонная бытовая техника. Каталог кухонных принадлежностей - 1teh.by" "s_description" => string(293) "Большой выбор бытовой техники для кухни в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бонусы …" "s_keywords" => string(0) "" "description" => string(0) "" "position" => NULL "h1" => string(0) "" "updated_at" => string(19) "2025-05-31 17:01:39" "mobile_image" => string(0) "" "main_section_image" => string(0) "" "on_main" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(1) "1" "name" => string(17) "Для кухни" "url" => string(10) "dlya-kuhni" "md5_url" => string(32) "88ad44ed318cc2730fcbd8848a9817a1" "active" => string(1) "1" "s_title" => string(120) "Кухонная бытовая техника. Каталог кухонных принадлежностей - 1teh.by" "s_description" => string(293) "Большой выбор бытовой техники для кухни в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бонусы …" "s_keywords" => string(0) "" "description" => string(0) "" "position" => NULL "h1" => string(0) "" "updated_at" => string(19) "2025-05-31 17:01:39" "mobile_image" => string(0) "" "main_section_image" => string(0) "" "on_main" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "section" protected _object_plural => string(8) "sections" protected _table_columns => array(15) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(2) "50" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "position" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "position" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "h1" => array(12) ( "type" => string(6) "string" "column_name" => string(2) "h1" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "comment" => string(0) "" "extra" => string(27) "on update CURRENT_TIMESTAMP" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "mobile_image" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "mobile_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_section_image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(18) "main_section_image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "on_main" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "on_main" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "1" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "product" protected _object_plural => string(8) "products" protected _table_columns => array(63) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "256" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "top" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "top" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "important" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "important" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_image" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "main_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "more_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "more_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "comments_enabled" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "comments_enabled" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "create_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "create_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "update_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "update_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(10) "4294967295" "column_name" => string(7) "content" "column_default" => NULL "data_type" => string(8) "longtext" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "short_content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "short_content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "section_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "section_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "new_price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "new_price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 20 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "discount" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "discount" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "created_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "created_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "article" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "article" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 23 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "unique_code" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "unique_code" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "original" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "original" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 25 "character_maximum_length" => string(3) "512" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "empty" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "empty" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 26 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "to_upload" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "to_upload" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 27 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "reviews" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "reviews" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 28 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "brand_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(8) "brand_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 29 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 30 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 31 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "garanty" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(7) "garanty" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 32 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "importer" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "importer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 33 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "country_made" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "country_made" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 34 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "manufacturer" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "manufacturer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 35 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "service" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "service" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 36 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 37 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gift_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "gift_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 38 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "delivery" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "delivery" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 39 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rating" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "rating" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 40 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "fixed_price" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "fixed_price" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 41 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "popular" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "popular" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 42 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "expedient_on" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(12) "expedient_on" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 43 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "yandex_market_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(16) "yandex_market_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 44 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "no_percent" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "no_percent" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 45 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "free_delivery" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(13) "free_delivery" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 46 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "product_day" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "product_day" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 47 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pok" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "pok" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 48 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "halva" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "halva" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 49 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instructions" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(12) "instructions" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 50 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_hits" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "is_hits" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 51 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "no_percent_force" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "no_percent_force" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 52 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "narod" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(5) "narod" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 53 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "two_year" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "two_year" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 54 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "hit" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(3) "hit" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 55 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "zakaz" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(5) "zakaz" "column_default" => NULL "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 56 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "zoomos_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 57 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_filters" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(14) "zoomos_filters" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 58 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_corrupt" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(10) "is_corrupt" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 59 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "prepared" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "prepared" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 60 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_fixed" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "is_fixed" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 61 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ym_disabled" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(11) "ym_disabled" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 62 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_update_time" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(20) "18446744073709551615" "column_name" => string(18) "zoomos_update_time" "column_default" => NULL "data_type" => string(15) "bigint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 63 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(6) "540145" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "section" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "product" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 }
-
MODPATH/ariol/classes/Extasy/View.php [ 23 ] » Kohana_View->render(arguments)
0
NULL
18 19 public function render($file = NULL) 20 { 21 if(is_null($this->_layout)) 22 { 23 return parent::render($file); 24 } 25 else 26 { 27 $this->content = parent::render($file); 28 return parent::render($this->_layout);
-
APPPATH/views/site/product/index.php [ 928 ] » Extasy_View->render()
923 Просмотренные товары 924 </h2> 925 <div class="swiper-wrapper"> 926 <?php foreach ($looked_products as $index => $prod) { ?> 927 <div class="swiper-slide"> 928 <?php echo View::factory('site/partial/product_new', ['product' => $prod])->render(); ?> 929 </div> 930 <?php } ?> 931 </div> 932 <div class="swiper-pagination"></div> 933 <div class="custom-btns">
-
SYSPATH/classes/Kohana/View.php [ 61 ] » include(arguments)
0
string(75) "/var/www/www-root/data/www/1teh.by/application/views/site/product/index.php"
56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean();
-
SYSPATH/classes/Kohana/View.php [ 348 ] » Kohana_View::capture(arguments)
0
string(75) "/var/www/www-root/data/www/1teh.by/application/views/site/product/index.php"
1
array(119) ( "return_location" => NULL "isAppeal" => integer 0 "model" => object Model_Product(40)
{ protected _table_name => string(7) "product" protected _belongs_to => array(4) ( "section" => array(3) ( "foreign_key" => string(10) "section_id" "model" => string(7) "Section" "required" => bool TRUE ) "gift" => array(3) ( "foreign_key" => string(7) "gift_id" "model" => string(4) "Gift" "required" => bool TRUE ) "brand" => array(3) ( "foreign_key" => string(8) "brand_id" "model" => string(5) "Brand" "required" => bool TRUE ) "category" => array(3) ( "foreign_key" => string(11) "category_id" "model" => string(8) "Category" "required" => bool TRUE ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-product:edit?id=${id}" "external_url" => string(77) "site-product:index?product=${url}&category=${category.url}&article=${article}" ) "two_year" => string(4) "bool" "edit" => array(6) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(27) "admin-product:edit?id=${id}" "title" => string(26) "<i class="fa fa-edit"></i>" "color" => string(5) "green" "alternative" => string(26) "Редактировать" ) "delete" => array(7) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(29) "admin-product:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "alternative" => string(14) "Удалить" "color" => string(3) "red" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(2) "id" "order_direction" => string(4) "DESC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(63) ( "id" => string(7) "1279366" "name" => string(108) "Системы автоматического полива, распылители Hozelock Flexi Spray 2683" "url" => string(25) "flexi-spray-2683_hozelock" "md5_url" => string(32) "33cff390375fc0e8eeb3006d180d55e8" "top" => string(1) "0" "important" => string(1) "0" "main_image" => string(59) "/files/product/1279366/3e21e83c8a5b327679aec1ef20135d2d.jpg" "more_images" => string(265) "["\/files\/product\/1279366\/b1f16ffe14b3b1c7b9a32c1ad2cee943.jpg","\/files\/product\/1279366\/bf87be8d54ddae4a10f753299dc0eb03. …" "s_title" => string(164) "Купить Системы автоматического полива, распылители Hozelock Flexi Spray 2683 в Минске по низкой цене" "s_description" => string(244) "Лучшие цены на Flexi Spray 2683 и все товары Hozelock в магазине 1teh.by. Бесплатная доставка, отзывы на Системы автоматического …" "s_keywords" => string(108) "Системы автоматического полива, распылители,Hozelock,Flexi Spray 2683" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(2289) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Общая информация</td></tr><tr class="qugroup_em …" "short_content" => string(143) "распылитель дождеватель/пистолет/штанга, 3 режима, пластик, площадь полива 69 м2" "active" => string(1) "1" "section_id" => string(1) "7" "price" => string(6) "185.76" "new_price" => string(6) "185.76" "discount" => NULL "created_at" => string(19) "2025-05-31 16:32:25" "article" => string(16) "Flexi Spray 2683" "unique_code" => string(7) "1279366" "original" => string(51) "http://1teh.by/files/products/img_1619342_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(4) "2209" "updated_at" => NULL "category_id" => string(3) "512" "garanty" => string(4) "0.00" "importer" => string(90) "СП "Сканлинк" ОООг.Минск, 4-ый пер. Монтажников д.5-16" "country_made" => string(0) "" "manufacturer" => string(0) "" "service" => string(0) "" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "1" "free_delivery" => string(1) "1" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(246) "["https:\/\/api.zoomos.by\/img\/item\/1929674\/0","https:\/\/api.zoomos.by\/img\/item\/1929674\/1","https:\/\/api.zoomos.by\/img …" "zoomos_filters" => NULL "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => string(13) "1748584067000" ) protected _changed => array(0) protected _original_values => array(63) ( "id" => string(7) "1279366" "name" => string(108) "Системы автоматического полива, распылители Hozelock Flexi Spray 2683" "url" => string(25) "flexi-spray-2683_hozelock" "md5_url" => string(32) "33cff390375fc0e8eeb3006d180d55e8" "top" => string(1) "0" "important" => string(1) "0" "main_image" => string(59) "/files/product/1279366/3e21e83c8a5b327679aec1ef20135d2d.jpg" "more_images" => string(265) "["\/files\/product\/1279366\/b1f16ffe14b3b1c7b9a32c1ad2cee943.jpg","\/files\/product\/1279366\/bf87be8d54ddae4a10f753299dc0eb03. …" "s_title" => string(164) "Купить Системы автоматического полива, распылители Hozelock Flexi Spray 2683 в Минске по низкой цене" "s_description" => string(244) "Лучшие цены на Flexi Spray 2683 и все товары Hozelock в магазине 1teh.by. Бесплатная доставка, отзывы на Системы автоматического …" "s_keywords" => string(108) "Системы автоматического полива, распылители,Hozelock,Flexi Spray 2683" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(2289) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Общая информация</td></tr><tr class="qugroup_em …" "short_content" => string(143) "распылитель дождеватель/пистолет/штанга, 3 режима, пластик, площадь полива 69 м2" "active" => string(1) "1" "section_id" => string(1) "7" "price" => string(6) "185.76" "new_price" => string(6) "185.76" "discount" => NULL "created_at" => string(19) "2025-05-31 16:32:25" "article" => string(16) "Flexi Spray 2683" "unique_code" => string(7) "1279366" "original" => string(51) "http://1teh.by/files/products/img_1619342_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(4) "2209" "updated_at" => NULL "category_id" => string(3) "512" "garanty" => string(4) "0.00" "importer" => string(90) "СП "Сканлинк" ОООг.Минск, 4-ый пер. Монтажников д.5-16" "country_made" => string(0) "" "manufacturer" => string(0) "" "service" => string(0) "" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "1" "free_delivery" => string(1) "1" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(246) "["https:\/\/api.zoomos.by\/img\/item\/1929674\/0","https:\/\/api.zoomos.by\/img\/item\/1929674\/1","https:\/\/api.zoomos.by\/img …" "zoomos_filters" => NULL "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => string(13) "1748584067000" ) protected _related => array(1) ( "gift" => object Model_Gift(40)
"id" => string(7) "1279366" "name" => string(108) "Системы автоматического полива, распылители Hozelock Flexi Spray 2683" "url" => string(25) "flexi-spray-2683_hozelock" "md5_url" => string(32) "33cff390375fc0e8eeb3006d180d55e8" "top" => string(1) "0" "important" => string(1) "0" "main_image" => string(59) "/files/product/1279366/3e21e83c8a5b327679aec1ef20135d2d.jpg" "more_images" => string(265) "["\/files\/product\/1279366\/b1f16ffe14b3b1c7b9a32c1ad2cee943.jpg","\/files\/product\/1279366\/bf87be8d54ddae4a10f753299dc0eb03. …" "s_title" => string(126) " Hozelock Flexi Spray 2683 - купить по выгодной цене, доставка по Беларуси, отзывы" "s_description" => string(268) "Купить Hozelock Flexi Spray 2683 в интернет-магазине бытовой техники и электроники 1teh.by. Бесплатная доставка по Беларуси, с …" "s_keywords" => string(108) "Системы автоматического полива, распылители,Hozelock,Flexi Spray 2683" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(2289) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Общая информация</td></tr><tr class="qugroup_em …" "short_content" => string(143) "распылитель дождеватель/пистолет/штанга, 3 режима, пластик, площадь полива 69 м2" "active" => string(1) "1" "section_id" => NULL "price" => string(6) "185.76" "new_price" => string(6) "185.76" "discount" => NULL "created_at" => string(19) "2025-05-31 16:32:25" "article" => string(16) "Flexi Spray 2683" "unique_code" => string(7) "1279366" "original" => string(51) "http://1teh.by/files/products/img_1619342_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => object Database_MySQLi_Result(7){ protected _table_name => string(5) "gifts" protected _grid_columns => array(4) ( "name" => NULL "active" => string(4) "bool" "edit" => array(6) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(24) "admin-gift:edit?id=${id}" "title" => string(26) "<i class="fa fa-edit"></i>" "color" => string(5) "green" "alternative" => string(26) "Редактировать" ) "delete" => array(7) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(26) "admin-gift:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "alternative" => string(14) "Удалить" "color" => string(3) "red" "confirm" => string(20) "Вы уверены?" ) ) protected _form_fields => array(0) protected _grid_options => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _belongs_to => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(10) ( "id" => NULL "name" => NULL "image" => NULL "active" => NULL "url" => NULL "price" => NULL "s_title" => NULL "s_description" => NULL "s_keywords" => NULL "description" => NULL ) protected _changed => array(0) protected _original_values => array(0) protected _related => array(0) protected _valid => bool FALSE protected _loaded => bool FALSE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "gift" protected _object_plural => string(5) "gifts" protected _table_columns => array(10) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "character_maximum_length" => string(4) "2048" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "price" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => NULL protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "product" protected _object_plural => string(8) "products" protected _table_columns => array(63) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "256" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "top" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "top" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "important" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "important" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_image" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "main_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "more_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "more_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "comments_enabled" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "comments_enabled" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "create_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "create_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "update_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "update_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(10) "4294967295" "column_name" => string(7) "content" "column_default" => NULL "data_type" => string(8) "longtext" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "short_content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "short_content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "section_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "section_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "new_price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "new_price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 20 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "discount" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "discount" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "created_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "created_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "article" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "article" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 23 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "unique_code" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "unique_code" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "original" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "original" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 25 "character_maximum_length" => string(3) "512" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "empty" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "empty" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 26 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "to_upload" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "to_upload" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 27 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "reviews" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "reviews" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 28 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "brand_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(8) "brand_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 29 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 30 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 31 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "garanty" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(7) "garanty" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 32 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "importer" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "importer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 33 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "country_made" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "country_made" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 34 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "manufacturer" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "manufacturer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 35 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "service" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "service" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 36 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 37 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gift_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "gift_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 38 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "delivery" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "delivery" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 39 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rating" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "rating" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 40 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "fixed_price" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "fixed_price" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 41 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "popular" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "popular" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 42 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "expedient_on" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(12) "expedient_on" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 43 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "yandex_market_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(16) "yandex_market_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 44 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "no_percent" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "no_percent" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 45 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "free_delivery" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(13) "free_delivery" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 46 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "product_day" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "product_day" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 47 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pok" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "pok" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 48 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "halva" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "halva" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 49 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instructions" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(12) "instructions" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 50 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_hits" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "is_hits" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 51 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "no_percent_force" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "no_percent_force" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 52 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "narod" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(5) "narod" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 53 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "two_year" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "two_year" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 54 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "hit" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(3) "hit" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 55 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "zakaz" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(5) "zakaz" "column_default" => NULL "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 56 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "zoomos_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 57 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_filters" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(14) "zoomos_filters" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 58 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_corrupt" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(10) "is_corrupt" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 59 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "prepared" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "prepared" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 60 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_fixed" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "is_fixed" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 61 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ym_disabled" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(11) "ym_disabled" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 62 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_update_time" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(20) "18446744073709551615" "column_name" => string(18) "zoomos_update_time" "column_default" => NULL "data_type" => string(15) "bigint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 63 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(7) "1279366" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "gift" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "product" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _internal_row => integer 0 protected _query => string(538) "SELECT `reviews`.`id` AS `id`, `reviews`.`prod_id` AS `prod_id`, `reviews`.`name` AS `name`, `reviews`.`title` AS `title`, `revi …" protected _result => object mysqli_result(5)
"brand_id" => string(4) "2209" "updated_at" => NULL "category_id" => string(3) "512" "garanty" => string(4) "0.00" "importer" => string(90) "СП "Сканлинк" ОООг.Минск, 4-ый пер. Монтажников д.5-16" "country_made" => string(0) "" "manufacturer" => string(0) "" "service" => string(0) "" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => integer 0 "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "1" "free_delivery" => string(1) "1" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(246) "["https:\/\/api.zoomos.by\/img\/item\/1929674\/0","https:\/\/api.zoomos.by\/img\/item\/1929674\/1","https:\/\/api.zoomos.by\/img …" "zoomos_filters" => NULL "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => string(13) "1748584067000" "section_name" => NULL "section_url" => NULL "section_md5_url" => NULL "section_active" => NULL "section_s_title" => NULL "section_s_description" => NULL "section_s_keywords" => NULL "section_description" => NULL "section_position" => NULL "section_h1" => NULL "section_updated_at" => NULL "section_mobile_image" => NULL "section_main_section_image" => NULL "section_on_main" => NULL "is_mobile" => bool FALSE "other_brand" => array(6) ( 0 => array(5) ( "url" => string(9) "wmc-tools" "name" => string(9) "WMC Tools" "id" => string(4) "3571" "main_image" => NULL "rod_name_many" => NULL ) 1 => array(5) ( "url" => string(7) "karcher" "name" => string(7) "Karcher" "id" => string(2) "81" "main_image" => string(52) "/files/brand/81/3602c9baa7930ec9c4e4e5ef4a60d078.png" "rod_name_many" => NULL ) 2 => array(5) ( "url" => string(6) "bradas" "name" => string(6) "Bradas" "id" => string(4) "3323" "main_image" => NULL "rod_name_many" => NULL ) 3 => array(5) ( "url" => string(3) "juk" "name" => string(6) "Жук" "id" => string(4) "3216" "main_image" => NULL "rod_name_many" => NULL ) 4 => array(5) ( "url" => string(6) "claber" "name" => string(6) "Claber" "id" => string(4) "2724" "main_image" => NULL "rod_name_many" => NULL ) 5 => array(5) ( "url" => string(9) "akvadusya" "name" => string(16) "АкваДуся" "id" => string(4) "2152" "main_image" => NULL "rod_name_many" => NULL ) ) "other_product" => array(3) ( 0 => array(7) ( "name" => string(35) "Садовый инструмент" "rod_name" => string(0) "" "id" => string(3) "454" "url" => string(19) "sadovyiy-instrument" "image" => string(56) "/files/category/454/59feaa25f5ab6f0bb62ae39f0d2ad2f4.jpg" "parent_id" => string(3) "292" "sect_url" => string(31) "instrumentyi-i-sadovaya-tehnika" ) 1 => array(7) ( "name" => string(33) "Поливочные шланги" "rod_name" => string(0) "" "id" => string(4) "4272" "url" => string(20) "polivochnyie-shlangi" "image" => string(57) "/files/category/4272/b5d2c9907138987d13eef984fb4639e6.jpg" "parent_id" => string(3) "263" "sect_url" => string(31) "instrumentyi-i-sadovaya-tehnika" ) 2 => array(7) ( "name" => string(26) "Опрыскиватели" "rod_name" => string(0) "" "id" => string(4) "4051" "url" => string(14) "opryiskivateli" "image" => string(57) "/files/category/4051/e03b3923dd47da536cca2d263c3b22cf.jpg" "parent_id" => string(3) "263" "sect_url" => string(31) "instrumentyi-i-sadovaya-tehnika" ) ) "blog" => object Model_News(40){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 0 protected _current_row => integer 0 protected _as_object => string(13) "Model_Reviews" protected _object_params => NULL }{ protected _table_name => string(4) "news" protected _belongs_to => array(1) ( "category_news" => array(2) ( "foreign_key" => string(16) "category_news_id" "model" => string(12) "CategoryNews" ) ) protected _grid_columns => array(8) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(24) "admin-news:edit?id=${id}" "external_url" => string(26) "site-news:index?url=${url}" ) "s_title" => string(5) "empty" "s_description" => string(5) "empty" "s_keywords" => string(5) "empty" "active" => string(4) "bool" "updated_at" => NULL "edit" => array(6) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(24) "admin-news:edit?id=${id}" "title" => string(28) "<i class="fa fa-pencil"></i>" "color" => string(5) "green" "alternative" => string(26) "Редактировать" ) "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(26) "admin-news:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(3) ( "order_by" => string(10) "updated_at" "order_direction" => string(3) "ASC" "per_page" => integer 500 ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => NULL "name" => NULL "s_title" => NULL "s_description" => NULL "s_keywords" => NULL "url" => NULL "active" => NULL "updated_at" => NULL "static" => NULL "content" => NULL "short_text" => NULL "image" => NULL "more_images" => NULL "category_id" => NULL "category_news_id" => NULL ) protected _changed => array(0) protected _original_values => array(0) protected _related => array(0) protected _valid => bool FALSE protected _loaded => bool FALSE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "news" protected _object_plural => string(4) "news" protected _table_columns => array(15) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "comment" => string(0) "" "extra" => string(27) "on update CURRENT_TIMESTAMP" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "static" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "static" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(7) "content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "short_text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(10) "short_text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "more_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "more_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_news_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(16) "category_news_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => NULL protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
"installments" => array(1) ( 0 => object Model_Installment(40){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "news" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(12) "installments" protected _grid_columns => array(5) ( "name" => NULL "bank_name" => NULL "active" => string(4) "bool" "edit" => array(6) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(31) "admin-installment:edit?id=${id}" "title" => string(26) "<i class="fa fa-edit"></i>" "color" => string(5) "green" "alternative" => string(26) "Редактировать" ) "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(33) "admin-installment:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _form_fields => array(0) protected _grid_options => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _belongs_to => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(16) ( "id" => string(1) "5" "name" => string(18) "АльфаБанк" "variants" => string(18) "a:1:{i:4;s:1:"4";}" "min_sum" => string(3) "300" "max_sum" => string(5) "10000" "first" => string(1) "0" "bank_name" => string(30) "ЗАО «Альфа-Банк»" "bank_logo" => string(57) "/files/installment/5/23bee41438e02d84c9b69f0dcb28e9e6.png" "active" => string(1) "1" "text" => string(5089) "<div style="color: rgb(26, 26, 26); font-family: "YS Text", "Helvetica Neue", Helvetica, Arial, sans-serif; …" "s_title" => string(0) "" "s_description" => string(0) "" "s_keywords" => string(0) "" "insurance_rate" => string(0) "" "percent" => string(18) "a:1:{i:0;s:1:"0";}" "extra_cost" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(16) ( "id" => string(1) "5" "name" => string(18) "АльфаБанк" "variants" => string(18) "a:1:{i:4;s:1:"4";}" "min_sum" => string(3) "300" "max_sum" => string(5) "10000" "first" => string(1) "0" "bank_name" => string(30) "ЗАО «Альфа-Банк»" "bank_logo" => string(57) "/files/installment/5/23bee41438e02d84c9b69f0dcb28e9e6.png" "active" => string(1) "1" "text" => string(5089) "<div style="color: rgb(26, 26, 26); font-family: "YS Text", "Helvetica Neue", Helvetica, Arial, sans-serif; …" "s_title" => string(0) "" "s_description" => string(0) "" "s_keywords" => string(0) "" "insurance_rate" => string(0) "" "percent" => string(18) "a:1:{i:0;s:1:"0";}" "extra_cost" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(11) "installment" protected _object_plural => string(12) "installments" protected _table_columns => array(16) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "variants" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "variants" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "512" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "min_sum" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "min_sum" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(3) "255" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "max_sum" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "max_sum" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(3) "255" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "first" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(5) "first" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(3) "255" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "bank_name" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "bank_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "bank_logo" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(9) "bank_logo" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(6) "active" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "512" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "insurance_rate" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(14) "insurance_rate" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "percent" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(7) "percent" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "extra_cost" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "extra_cost" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 16 "display" => string(3) "255" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "5" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) "minInstallmentSum" => string(3) "300" "maxInstallmentSum" => string(5) "10000" "looked_products" => array(12) ( 0 => object Model_Product(40){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(11) "installment" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(7) "product" protected _belongs_to => array(4) ( "section" => array(3) ( "foreign_key" => string(10) "section_id" "model" => string(7) "Section" "required" => bool TRUE ) "gift" => array(3) ( "foreign_key" => string(7) "gift_id" "model" => string(4) "Gift" "required" => bool TRUE ) "brand" => array(3) ( "foreign_key" => string(8) "brand_id" "model" => string(5) "Brand" "required" => bool TRUE ) "category" => array(3) ( "foreign_key" => string(11) "category_id" "model" => string(8) "Category" "required" => bool TRUE ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-product:edit?id=${id}" "external_url" => string(77) "site-product:index?product=${url}&category=${category.url}&article=${article}" ) "two_year" => string(4) "bool" "edit" => array(6) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(27) "admin-product:edit?id=${id}" "title" => string(26) "<i class="fa fa-edit"></i>" "color" => string(5) "green" "alternative" => string(26) "Редактировать" ) "delete" => array(7) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(29) "admin-product:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "alternative" => string(14) "Удалить" "color" => string(3) "red" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(2) "id" "order_direction" => string(4) "DESC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(63) ( "id" => string(6) "437209" "name" => string(62) "Сэндвичницы, вафельницы Clatronic HA 3494" "url" => string(17) "ha-3494_clatronic" "md5_url" => string(32) "70cc8832456d2b95b9d1b062b66380bc" "top" => string(1) "0" "important" => string(1) "0" "main_image" => string(58) "/files/product/437209/d10235ca97724b6c7aa2ad1865caa60c.jpg" "more_images" => string(131) "["\/files\/product\/437209\/5f9f63faa92c6ebf4514936bb5400e6c.jpg","\/files\/product\/437209\/985344fbaa22fbec0d2b4a4a0027a548.jp …" "s_title" => string(118) "Купить Сэндвичницы, вафельницы Clatronic HA 3494 в Минске по низкой цене" "s_description" => string(198) "Лучшие цены на HA 3494 и все товары Clatronic в магазине 1teh.by. Бесплатная доставка, отзывы на Сэндвичницы, вафельницы" "s_keywords" => string(62) "Сэндвичницы, вафельницы,Clatronic,HA 3494" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(1528) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Основные</td></tr><tr class="qurow2"><td class= …" "short_content" => string(79) "вафельница, 1200 Вт, регулировка температуры" "active" => string(1) "1" "section_id" => string(1) "1" "price" => string(6) "145.40" "new_price" => string(6) "145.40" "discount" => NULL "created_at" => string(19) "2025-05-31 16:31:50" "article" => string(7) "HA 3494" "unique_code" => string(6) "437209" "original" => string(50) "http://1teh.by/files/products/img_402012_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(2) "31" "updated_at" => NULL "category_id" => string(4) "4299" "garanty" => string(5) "12.00" "importer" => string(180) "ООО «НТТ Импорт» 223060 Минская обл. Минский р-н Новодворский с/с 40/2 район д. Большое Стиклево оф.86<br>" "country_made" => string(0) "" "manufacturer" => string(43) "uwon-si Gyeonggi-do 443-742 Malaysia Penang" "service" => string(188) "ООО «НТТ Систем» Минский р-н Новодворский с/с 40/1-2 район д. Большое Стиклево Торгово-складской корпус №1" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "1" "free_delivery" => string(1) "1" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(145) "["https:\/\/api.zoomos.by\/img\/item\/564764\/0","https:\/\/api.zoomos.by\/img\/item\/564764\/1","https:\/\/api.zoomos.by\/img\/ …" "zoomos_filters" => NULL "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => string(13) "1748583523000" ) protected _changed => array(0) protected _original_values => array(63) ( "id" => string(6) "437209" "name" => string(62) "Сэндвичницы, вафельницы Clatronic HA 3494" "url" => string(17) "ha-3494_clatronic" "md5_url" => string(32) "70cc8832456d2b95b9d1b062b66380bc" "top" => string(1) "0" "important" => string(1) "0" "main_image" => string(58) "/files/product/437209/d10235ca97724b6c7aa2ad1865caa60c.jpg" "more_images" => string(131) "["\/files\/product\/437209\/5f9f63faa92c6ebf4514936bb5400e6c.jpg","\/files\/product\/437209\/985344fbaa22fbec0d2b4a4a0027a548.jp …" "s_title" => string(118) "Купить Сэндвичницы, вафельницы Clatronic HA 3494 в Минске по низкой цене" "s_description" => string(198) "Лучшие цены на HA 3494 и все товары Clatronic в магазине 1teh.by. Бесплатная доставка, отзывы на Сэндвичницы, вафельницы" "s_keywords" => string(62) "Сэндвичницы, вафельницы,Clatronic,HA 3494" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(1528) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Основные</td></tr><tr class="qurow2"><td class= …" "short_content" => string(79) "вафельница, 1200 Вт, регулировка температуры" "active" => string(1) "1" "section_id" => string(1) "1" "price" => string(6) "145.40" "new_price" => string(6) "145.40" "discount" => NULL "created_at" => string(19) "2025-05-31 16:31:50" "article" => string(7) "HA 3494" "unique_code" => string(6) "437209" "original" => string(50) "http://1teh.by/files/products/img_402012_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(2) "31" "updated_at" => NULL "category_id" => string(4) "4299" "garanty" => string(5) "12.00" "importer" => string(180) "ООО «НТТ Импорт» 223060 Минская обл. Минский р-н Новодворский с/с 40/2 район д. Большое Стиклево оф.86<br>" "country_made" => string(0) "" "manufacturer" => string(43) "uwon-si Gyeonggi-do 443-742 Malaysia Penang" "service" => string(188) "ООО «НТТ Систем» Минский р-н Новодворский с/с 40/1-2 район д. Большое Стиклево Торгово-складской корпус №1" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "1" "free_delivery" => string(1) "1" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(145) "["https:\/\/api.zoomos.by\/img\/item\/564764\/0","https:\/\/api.zoomos.by\/img\/item\/564764\/1","https:\/\/api.zoomos.by\/img\/ …" "zoomos_filters" => NULL "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => string(13) "1748583523000" ) protected _related => array(1) ( "section" => object Model_Section(40)
1 => object Model_Product(40){ protected _table_name => string(8) "sections" protected _has_many => array(1) ( "product" => array(4) ( "foreign_key" => string(10) "section_id" "through" => NULL "model" => string(7) "Product" "far_key" => string(10) "product_id" ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-section:edit?id=${id}" "external_url" => string(35) "site-section:index?url=${url}&page=" ) "active" => string(4) "bool" "position" => string(8) "position" "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(29) "admin-section:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(8) "position" "order_direction" => string(3) "ASC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(1) "1" "name" => string(17) "Для кухни" "url" => string(10) "dlya-kuhni" "md5_url" => string(32) "88ad44ed318cc2730fcbd8848a9817a1" "active" => string(1) "1" "s_title" => string(120) "Кухонная бытовая техника. Каталог кухонных принадлежностей - 1teh.by" "s_description" => string(293) "Большой выбор бытовой техники для кухни в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бонусы …" "s_keywords" => string(0) "" "description" => string(0) "" "position" => NULL "h1" => string(0) "" "updated_at" => string(19) "2025-05-31 17:01:39" "mobile_image" => string(0) "" "main_section_image" => string(0) "" "on_main" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(1) "1" "name" => string(17) "Для кухни" "url" => string(10) "dlya-kuhni" "md5_url" => string(32) "88ad44ed318cc2730fcbd8848a9817a1" "active" => string(1) "1" "s_title" => string(120) "Кухонная бытовая техника. Каталог кухонных принадлежностей - 1teh.by" "s_description" => string(293) "Большой выбор бытовой техники для кухни в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бонусы …" "s_keywords" => string(0) "" "description" => string(0) "" "position" => NULL "h1" => string(0) "" "updated_at" => string(19) "2025-05-31 17:01:39" "mobile_image" => string(0) "" "main_section_image" => string(0) "" "on_main" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "section" protected _object_plural => string(8) "sections" protected _table_columns => array(15) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(2) "50" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "position" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "position" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "h1" => array(12) ( "type" => string(6) "string" "column_name" => string(2) "h1" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "comment" => string(0) "" "extra" => string(27) "on update CURRENT_TIMESTAMP" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "mobile_image" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "mobile_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_section_image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(18) "main_section_image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "on_main" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "on_main" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "1" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "product" protected _object_plural => string(8) "products" protected _table_columns => array(63) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "256" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "top" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "top" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "important" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "important" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_image" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "main_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "more_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "more_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "comments_enabled" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "comments_enabled" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "create_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "create_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "update_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "update_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(10) "4294967295" "column_name" => string(7) "content" "column_default" => NULL "data_type" => string(8) "longtext" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "short_content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "short_content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "section_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "section_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "new_price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "new_price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 20 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "discount" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "discount" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "created_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "created_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "article" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "article" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 23 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "unique_code" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "unique_code" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "original" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "original" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 25 "character_maximum_length" => string(3) "512" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "empty" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "empty" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 26 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "to_upload" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "to_upload" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 27 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "reviews" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "reviews" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 28 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "brand_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(8) "brand_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 29 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 30 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 31 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "garanty" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(7) "garanty" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 32 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "importer" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "importer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 33 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "country_made" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "country_made" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 34 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "manufacturer" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "manufacturer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 35 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "service" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "service" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 36 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 37 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gift_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "gift_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 38 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "delivery" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "delivery" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 39 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rating" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "rating" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 40 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "fixed_price" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "fixed_price" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 41 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "popular" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "popular" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 42 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "expedient_on" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(12) "expedient_on" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 43 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "yandex_market_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(16) "yandex_market_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 44 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "no_percent" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "no_percent" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 45 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "free_delivery" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(13) "free_delivery" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 46 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "product_day" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "product_day" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 47 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pok" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "pok" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 48 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "halva" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "halva" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 49 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instructions" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(12) "instructions" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 50 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_hits" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "is_hits" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 51 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "no_percent_force" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "no_percent_force" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 52 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "narod" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(5) "narod" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 53 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "two_year" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "two_year" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 54 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "hit" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(3) "hit" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 55 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "zakaz" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(5) "zakaz" "column_default" => NULL "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 56 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "zoomos_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 57 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_filters" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(14) "zoomos_filters" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 58 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_corrupt" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(10) "is_corrupt" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 59 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "prepared" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "prepared" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 60 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_fixed" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "is_fixed" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 61 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ym_disabled" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(11) "ym_disabled" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 62 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_update_time" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(20) "18446744073709551615" "column_name" => string(18) "zoomos_update_time" "column_default" => NULL "data_type" => string(15) "bigint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 63 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(6) "437209" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "section" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "product" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(7) "product" protected _belongs_to => array(4) ( "section" => array(3) ( "foreign_key" => string(10) "section_id" "model" => string(7) "Section" "required" => bool TRUE ) "gift" => array(3) ( "foreign_key" => string(7) "gift_id" "model" => string(4) "Gift" "required" => bool TRUE ) "brand" => array(3) ( "foreign_key" => string(8) "brand_id" "model" => string(5) "Brand" "required" => bool TRUE ) "category" => array(3) ( "foreign_key" => string(11) "category_id" "model" => string(8) "Category" "required" => bool TRUE ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-product:edit?id=${id}" "external_url" => string(77) "site-product:index?product=${url}&category=${category.url}&article=${article}" ) "two_year" => string(4) "bool" "edit" => array(6) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(27) "admin-product:edit?id=${id}" "title" => string(26) "<i class="fa fa-edit"></i>" "color" => string(5) "green" "alternative" => string(26) "Редактировать" ) "delete" => array(7) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(29) "admin-product:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "alternative" => string(14) "Удалить" "color" => string(3) "red" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(2) "id" "order_direction" => string(4) "DESC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(63) ( "id" => string(6) "540145" "name" => string(62) "Сэндвичницы, вафельницы Clatronic WA 3492" "url" => string(17) "wa-3492_clatronic" "md5_url" => string(32) "8f909c5de1ba743290ad226fa2e082bc" "top" => string(1) "0" "important" => string(1) "0" "main_image" => string(58) "/files/product/540145/8f7554fb8d145736052407a6113f57ce.jpg" "more_images" => NULL "s_title" => string(118) "Купить Сэндвичницы, вафельницы Clatronic WA 3492 в Минске по низкой цене" "s_description" => string(198) "Лучшие цены на WA 3492 и все товары Clatronic в магазине 1teh.by. Бесплатная доставка, отзывы на Сэндвичницы, вафельницы" "s_keywords" => string(62) "Сэндвичницы, вафельницы,Clatronic,WA 3492" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(1454) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Основные</td></tr><tr class="qurow2"><td class= …" "short_content" => string(79) "вафельница, 1000 Вт, регулировка температуры" "active" => string(1) "1" "section_id" => string(1) "1" "price" => string(6) "180.70" "new_price" => string(6) "180.70" "discount" => NULL "created_at" => string(19) "2025-05-31 16:31:50" "article" => string(7) "WA 3492" "unique_code" => string(6) "540145" "original" => string(50) "http://1teh.by/files/products/img_429756_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(2) "31" "updated_at" => NULL "category_id" => string(4) "4299" "garanty" => string(5) "12.00" "importer" => string(180) "ООО «НТТ Импорт» 223060 Минская обл. Минский р-н Новодворский с/с 40/2 район д. Большое Стиклево оф.86<br>" "country_made" => string(0) "" "manufacturer" => string(43) "uwon-si Gyeonggi-do 443-742 Malaysia Penang" "service" => string(188) "ООО «НТТ Систем» Минский р-н Новодворский с/с 40/1-2 район д. Большое Стиклево Торгово-складской корпус №1" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "1" "free_delivery" => string(1) "1" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(49) "["https:\/\/api.zoomos.by\/img\/item\/564771\/0"]" "zoomos_filters" => NULL "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => string(13) "1748583523000" ) protected _changed => array(0) protected _original_values => array(63) ( "id" => string(6) "540145" "name" => string(62) "Сэндвичницы, вафельницы Clatronic WA 3492" "url" => string(17) "wa-3492_clatronic" "md5_url" => string(32) "8f909c5de1ba743290ad226fa2e082bc" "top" => string(1) "0" "important" => string(1) "0" "main_image" => string(58) "/files/product/540145/8f7554fb8d145736052407a6113f57ce.jpg" "more_images" => NULL "s_title" => string(118) "Купить Сэндвичницы, вафельницы Clatronic WA 3492 в Минске по низкой цене" "s_description" => string(198) "Лучшие цены на WA 3492 и все товары Clatronic в магазине 1teh.by. Бесплатная доставка, отзывы на Сэндвичницы, вафельницы" "s_keywords" => string(62) "Сэндвичницы, вафельницы,Clatronic,WA 3492" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(1454) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Основные</td></tr><tr class="qurow2"><td class= …" "short_content" => string(79) "вафельница, 1000 Вт, регулировка температуры" "active" => string(1) "1" "section_id" => string(1) "1" "price" => string(6) "180.70" "new_price" => string(6) "180.70" "discount" => NULL "created_at" => string(19) "2025-05-31 16:31:50" "article" => string(7) "WA 3492" "unique_code" => string(6) "540145" "original" => string(50) "http://1teh.by/files/products/img_429756_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(2) "31" "updated_at" => NULL "category_id" => string(4) "4299" "garanty" => string(5) "12.00" "importer" => string(180) "ООО «НТТ Импорт» 223060 Минская обл. Минский р-н Новодворский с/с 40/2 район д. Большое Стиклево оф.86<br>" "country_made" => string(0) "" "manufacturer" => string(43) "uwon-si Gyeonggi-do 443-742 Malaysia Penang" "service" => string(188) "ООО «НТТ Систем» Минский р-н Новодворский с/с 40/1-2 район д. Большое Стиклево Торгово-складской корпус №1" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "1" "free_delivery" => string(1) "1" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(49) "["https:\/\/api.zoomos.by\/img\/item\/564771\/0"]" "zoomos_filters" => NULL "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => string(13) "1748583523000" ) protected _related => array(1) ( "section" => object Model_Section(40)
2 => object Model_Product(40){ protected _table_name => string(8) "sections" protected _has_many => array(1) ( "product" => array(4) ( "foreign_key" => string(10) "section_id" "through" => NULL "model" => string(7) "Product" "far_key" => string(10) "product_id" ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-section:edit?id=${id}" "external_url" => string(35) "site-section:index?url=${url}&page=" ) "active" => string(4) "bool" "position" => string(8) "position" "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(29) "admin-section:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(8) "position" "order_direction" => string(3) "ASC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(1) "1" "name" => string(17) "Для кухни" "url" => string(10) "dlya-kuhni" "md5_url" => string(32) "88ad44ed318cc2730fcbd8848a9817a1" "active" => string(1) "1" "s_title" => string(120) "Кухонная бытовая техника. Каталог кухонных принадлежностей - 1teh.by" "s_description" => string(293) "Большой выбор бытовой техники для кухни в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бонусы …" "s_keywords" => string(0) "" "description" => string(0) "" "position" => NULL "h1" => string(0) "" "updated_at" => string(19) "2025-05-31 17:01:39" "mobile_image" => string(0) "" "main_section_image" => string(0) "" "on_main" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(1) "1" "name" => string(17) "Для кухни" "url" => string(10) "dlya-kuhni" "md5_url" => string(32) "88ad44ed318cc2730fcbd8848a9817a1" "active" => string(1) "1" "s_title" => string(120) "Кухонная бытовая техника. Каталог кухонных принадлежностей - 1teh.by" "s_description" => string(293) "Большой выбор бытовой техники для кухни в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бонусы …" "s_keywords" => string(0) "" "description" => string(0) "" "position" => NULL "h1" => string(0) "" "updated_at" => string(19) "2025-05-31 17:01:39" "mobile_image" => string(0) "" "main_section_image" => string(0) "" "on_main" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "section" protected _object_plural => string(8) "sections" protected _table_columns => array(15) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(2) "50" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "position" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "position" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "h1" => array(12) ( "type" => string(6) "string" "column_name" => string(2) "h1" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "comment" => string(0) "" "extra" => string(27) "on update CURRENT_TIMESTAMP" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "mobile_image" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "mobile_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_section_image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(18) "main_section_image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "on_main" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "on_main" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "1" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "product" protected _object_plural => string(8) "products" protected _table_columns => array(63) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "256" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "top" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "top" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "important" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "important" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_image" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "main_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "more_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "more_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "comments_enabled" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "comments_enabled" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "create_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "create_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "update_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "update_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(10) "4294967295" "column_name" => string(7) "content" "column_default" => NULL "data_type" => string(8) "longtext" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "short_content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "short_content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "section_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "section_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "new_price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "new_price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 20 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "discount" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "discount" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "created_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "created_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "article" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "article" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 23 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "unique_code" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "unique_code" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "original" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "original" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 25 "character_maximum_length" => string(3) "512" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "empty" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "empty" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 26 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "to_upload" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "to_upload" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 27 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "reviews" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "reviews" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 28 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "brand_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(8) "brand_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 29 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 30 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 31 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "garanty" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(7) "garanty" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 32 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "importer" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "importer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 33 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "country_made" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "country_made" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 34 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "manufacturer" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "manufacturer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 35 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "service" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "service" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 36 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 37 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gift_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "gift_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 38 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "delivery" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "delivery" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 39 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rating" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "rating" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 40 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "fixed_price" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "fixed_price" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 41 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "popular" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "popular" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 42 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "expedient_on" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(12) "expedient_on" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 43 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "yandex_market_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(16) "yandex_market_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 44 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "no_percent" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "no_percent" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 45 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "free_delivery" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(13) "free_delivery" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 46 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "product_day" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "product_day" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 47 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pok" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "pok" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 48 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "halva" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "halva" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 49 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instructions" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(12) "instructions" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 50 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_hits" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "is_hits" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 51 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "no_percent_force" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "no_percent_force" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 52 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "narod" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(5) "narod" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 53 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "two_year" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "two_year" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 54 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "hit" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(3) "hit" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 55 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "zakaz" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(5) "zakaz" "column_default" => NULL "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 56 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "zoomos_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 57 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_filters" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(14) "zoomos_filters" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 58 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_corrupt" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(10) "is_corrupt" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 59 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "prepared" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "prepared" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 60 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_fixed" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "is_fixed" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 61 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ym_disabled" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(11) "ym_disabled" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 62 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_update_time" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(20) "18446744073709551615" "column_name" => string(18) "zoomos_update_time" "column_default" => NULL "data_type" => string(15) "bigint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 63 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(6) "540145" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "section" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "product" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(7) "product" protected _belongs_to => array(4) ( "section" => array(3) ( "foreign_key" => string(10) "section_id" "model" => string(7) "Section" "required" => bool TRUE ) "gift" => array(3) ( "foreign_key" => string(7) "gift_id" "model" => string(4) "Gift" "required" => bool TRUE ) "brand" => array(3) ( "foreign_key" => string(8) "brand_id" "model" => string(5) "Brand" "required" => bool TRUE ) "category" => array(3) ( "foreign_key" => string(11) "category_id" "model" => string(8) "Category" "required" => bool TRUE ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-product:edit?id=${id}" "external_url" => string(77) "site-product:index?product=${url}&category=${category.url}&article=${article}" ) "two_year" => string(4) "bool" "edit" => array(6) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(27) "admin-product:edit?id=${id}" "title" => string(26) "<i class="fa fa-edit"></i>" "color" => string(5) "green" "alternative" => string(26) "Редактировать" ) "delete" => array(7) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(29) "admin-product:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "alternative" => string(14) "Удалить" "color" => string(3) "red" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(2) "id" "order_direction" => string(4) "DESC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(63) ( "id" => string(7) "1209178" "name" => string(76) "Мультимедиа акустика Dialog AP-150 (коричневый)" "url" => string(26) "ap-150-korichnevyiy_dialog" "md5_url" => string(32) "9ab6970e361a00b67406a5fd6ad50167" "top" => string(1) "0" "important" => string(1) "0" "main_image" => string(59) "/files/product/1209178/e9796c13617c650febc98343ebdf3a5f.jpg" "more_images" => string(265) "["\/files\/product\/1209178\/dc9444a18c10d15fcae1598ac633f030.jpg","\/files\/product\/1209178\/a9d51491b0651b22fcdd9d31dbc43324. …" "s_title" => string(132) "Купить Мультимедиа акустика Dialog AP-150 (коричневый) в Минске по низкой цене" "s_description" => string(212) "Лучшие цены на AP-150 (коричневый) и все товары Dialog в магазине 1teh.by. Бесплатная доставка, отзывы на Мультимедиа акустика" "s_keywords" => string(76) "Мультимедиа акустика,Dialog,AP-150 (коричневый)" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(6234) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Основные</td></tr><tr class="qurow2"><td class= …" "short_content" => string(61) "2.1, 20 Вт, пульт, радио, карты памяти" "active" => string(1) "1" "section_id" => string(1) "3" "price" => string(6) "167.40" "new_price" => string(6) "167.40" "discount" => NULL "created_at" => string(19) "2025-05-31 16:31:40" "article" => string(29) "AP-150 (коричневый)" "unique_code" => string(7) "1209178" "original" => string(51) "http://1teh.by/files/products/img_1110226_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(3) "420" "updated_at" => NULL "category_id" => string(1) "5" "garanty" => string(5) "12.00" "importer" => string(97) "ООО «Компания «МИПС» 220103 РБ г. Минск ул. Кнорина 50 к. 501" "country_made" => string(10) "КИТАЙ" "manufacturer" => string(116) "ЗАО «ДиалогИнвест» 199106 Россия Санкт-Петербург Средний пр. В.О. 86" "service" => string(85) "ООО «БТМ Трейдинг» ул. Даумана 23 оф. 63 8 (029) 993-73-35" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "1" "free_delivery" => string(1) "1" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(246) "["https:\/\/api.zoomos.by\/img\/item\/1080472\/6","https:\/\/api.zoomos.by\/img\/item\/1080472\/0","https:\/\/api.zoomos.by\/img …" "zoomos_filters" => string(8519) "[{"id":145,"name":"\u0423\u0441\u0438\u043b\u0438\u0442\u0435\u043b\u044c","type":"enum","unit":"","orderPriority":10,"values":[ …" "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => string(13) "1748583249000" ) protected _changed => array(0) protected _original_values => array(63) ( "id" => string(7) "1209178" "name" => string(76) "Мультимедиа акустика Dialog AP-150 (коричневый)" "url" => string(26) "ap-150-korichnevyiy_dialog" "md5_url" => string(32) "9ab6970e361a00b67406a5fd6ad50167" "top" => string(1) "0" "important" => string(1) "0" "main_image" => string(59) "/files/product/1209178/e9796c13617c650febc98343ebdf3a5f.jpg" "more_images" => string(265) "["\/files\/product\/1209178\/dc9444a18c10d15fcae1598ac633f030.jpg","\/files\/product\/1209178\/a9d51491b0651b22fcdd9d31dbc43324. …" "s_title" => string(132) "Купить Мультимедиа акустика Dialog AP-150 (коричневый) в Минске по низкой цене" "s_description" => string(212) "Лучшие цены на AP-150 (коричневый) и все товары Dialog в магазине 1teh.by. Бесплатная доставка, отзывы на Мультимедиа акустика" "s_keywords" => string(76) "Мультимедиа акустика,Dialog,AP-150 (коричневый)" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(6234) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Основные</td></tr><tr class="qurow2"><td class= …" "short_content" => string(61) "2.1, 20 Вт, пульт, радио, карты памяти" "active" => string(1) "1" "section_id" => string(1) "3" "price" => string(6) "167.40" "new_price" => string(6) "167.40" "discount" => NULL "created_at" => string(19) "2025-05-31 16:31:40" "article" => string(29) "AP-150 (коричневый)" "unique_code" => string(7) "1209178" "original" => string(51) "http://1teh.by/files/products/img_1110226_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(3) "420" "updated_at" => NULL "category_id" => string(1) "5" "garanty" => string(5) "12.00" "importer" => string(97) "ООО «Компания «МИПС» 220103 РБ г. Минск ул. Кнорина 50 к. 501" "country_made" => string(10) "КИТАЙ" "manufacturer" => string(116) "ЗАО «ДиалогИнвест» 199106 Россия Санкт-Петербург Средний пр. В.О. 86" "service" => string(85) "ООО «БТМ Трейдинг» ул. Даумана 23 оф. 63 8 (029) 993-73-35" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "1" "free_delivery" => string(1) "1" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(246) "["https:\/\/api.zoomos.by\/img\/item\/1080472\/6","https:\/\/api.zoomos.by\/img\/item\/1080472\/0","https:\/\/api.zoomos.by\/img …" "zoomos_filters" => string(8519) "[{"id":145,"name":"\u0423\u0441\u0438\u043b\u0438\u0442\u0435\u043b\u044c","type":"enum","unit":"","orderPriority":10,"values":[ …" "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => string(13) "1748583249000" ) protected _related => array(1) ( "section" => object Model_Section(40)
3 => object Model_Product(40){ protected _table_name => string(8) "sections" protected _has_many => array(1) ( "product" => array(4) ( "foreign_key" => string(10) "section_id" "through" => NULL "model" => string(7) "Product" "far_key" => string(10) "product_id" ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-section:edit?id=${id}" "external_url" => string(35) "site-section:index?url=${url}&page=" ) "active" => string(4) "bool" "position" => string(8) "position" "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(29) "admin-section:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(8) "position" "order_direction" => string(3) "ASC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(1) "3" "name" => string(22) "Электроника" "url" => string(11) "elektronika" "md5_url" => string(32) "76b94353c5e008664be91220b3bcffb8" "active" => string(1) "1" "s_title" => string(94) "Электроника. Большой каталог электроприборов - 1teh.by" "s_description" => string(276) "Большой выбор электроприборов в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бонусы и скидки. …" "s_keywords" => string(0) "" "description" => string(0) "" "position" => NULL "h1" => string(0) "" "updated_at" => string(19) "2025-05-31 17:01:39" "mobile_image" => string(0) "" "main_section_image" => string(0) "" "on_main" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(1) "3" "name" => string(22) "Электроника" "url" => string(11) "elektronika" "md5_url" => string(32) "76b94353c5e008664be91220b3bcffb8" "active" => string(1) "1" "s_title" => string(94) "Электроника. Большой каталог электроприборов - 1teh.by" "s_description" => string(276) "Большой выбор электроприборов в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бонусы и скидки. …" "s_keywords" => string(0) "" "description" => string(0) "" "position" => NULL "h1" => string(0) "" "updated_at" => string(19) "2025-05-31 17:01:39" "mobile_image" => string(0) "" "main_section_image" => string(0) "" "on_main" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "section" protected _object_plural => string(8) "sections" protected _table_columns => array(15) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(2) "50" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "position" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "position" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "h1" => array(12) ( "type" => string(6) "string" "column_name" => string(2) "h1" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "comment" => string(0) "" "extra" => string(27) "on update CURRENT_TIMESTAMP" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "mobile_image" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "mobile_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_section_image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(18) "main_section_image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "on_main" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "on_main" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "3" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "product" protected _object_plural => string(8) "products" protected _table_columns => array(63) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "256" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "top" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "top" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "important" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "important" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_image" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "main_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "more_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "more_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "comments_enabled" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "comments_enabled" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "create_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "create_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "update_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "update_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(10) "4294967295" "column_name" => string(7) "content" "column_default" => NULL "data_type" => string(8) "longtext" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "short_content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "short_content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "section_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "section_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "new_price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "new_price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 20 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "discount" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "discount" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "created_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "created_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "article" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "article" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 23 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "unique_code" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "unique_code" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "original" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "original" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 25 "character_maximum_length" => string(3) "512" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "empty" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "empty" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 26 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "to_upload" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "to_upload" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 27 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "reviews" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "reviews" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 28 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "brand_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(8) "brand_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 29 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 30 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 31 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "garanty" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(7) "garanty" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 32 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "importer" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "importer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 33 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "country_made" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "country_made" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 34 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "manufacturer" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "manufacturer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 35 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "service" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "service" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 36 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 37 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gift_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "gift_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 38 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "delivery" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "delivery" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 39 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rating" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "rating" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 40 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "fixed_price" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "fixed_price" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 41 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "popular" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "popular" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 42 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "expedient_on" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(12) "expedient_on" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 43 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "yandex_market_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(16) "yandex_market_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 44 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "no_percent" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "no_percent" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 45 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "free_delivery" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(13) "free_delivery" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 46 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "product_day" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "product_day" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 47 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pok" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "pok" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 48 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "halva" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "halva" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 49 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instructions" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(12) "instructions" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 50 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_hits" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "is_hits" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 51 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "no_percent_force" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "no_percent_force" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 52 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "narod" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(5) "narod" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 53 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "two_year" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "two_year" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 54 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "hit" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(3) "hit" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 55 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "zakaz" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(5) "zakaz" "column_default" => NULL "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 56 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "zoomos_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 57 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_filters" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(14) "zoomos_filters" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 58 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_corrupt" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(10) "is_corrupt" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 59 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "prepared" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "prepared" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 60 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_fixed" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "is_fixed" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 61 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ym_disabled" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(11) "ym_disabled" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 62 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_update_time" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(20) "18446744073709551615" "column_name" => string(18) "zoomos_update_time" "column_default" => NULL "data_type" => string(15) "bigint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 63 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(7) "1209178" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "section" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "product" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(7) "product" protected _belongs_to => array(4) ( "section" => array(3) ( "foreign_key" => string(10) "section_id" "model" => string(7) "Section" "required" => bool TRUE ) "gift" => array(3) ( "foreign_key" => string(7) "gift_id" "model" => string(4) "Gift" "required" => bool TRUE ) "brand" => array(3) ( "foreign_key" => string(8) "brand_id" "model" => string(5) "Brand" "required" => bool TRUE ) "category" => array(3) ( "foreign_key" => string(11) "category_id" "model" => string(8) "Category" "required" => bool TRUE ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-product:edit?id=${id}" "external_url" => string(77) "site-product:index?product=${url}&category=${category.url}&article=${article}" ) "two_year" => string(4) "bool" "edit" => array(6) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(27) "admin-product:edit?id=${id}" "title" => string(26) "<i class="fa fa-edit"></i>" "color" => string(5) "green" "alternative" => string(26) "Редактировать" ) "delete" => array(7) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(29) "admin-product:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "alternative" => string(14) "Удалить" "color" => string(3) "red" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(2) "id" "order_direction" => string(4) "DESC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(63) ( "id" => string(7) "1252522" "name" => string(45) "Кронштейны Onkron M5 (черный)" "url" => string(18) "m5-chernyiy_onkron" "md5_url" => string(32) "9d7a57ef16d80f20396ae70d81378154" "top" => NULL "important" => NULL "main_image" => string(59) "/files/product/1252522/9072d2dc2fe6d5bd7d25ee54719a2575.jpg" "more_images" => string(727) "["\/files\/product\/1252522\/eff211029073c22fe76305dee9835415.jpg","\/files\/product\/1252522\/54b86ef0554bf9f5b1358df426ede480. …" "s_title" => string(101) "Купить Кронштейны Onkron M5 (черный) в Минске по низкой цене" "s_description" => string(181) "Лучшие цены на M5 (черный) и все товары Onkron в магазине 1teh.by. Бесплатная доставка, отзывы на Кронштейны" "s_keywords" => string(45) "Кронштейны,Onkron,M5 (черный)" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(1497) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Основные</td></tr><tr class="qurow2"><td class= …" "short_content" => string(100) "настенный кронштейн для ЖК-телевизора 32-55", цвет черный" "active" => string(1) "1" "section_id" => string(1) "3" "price" => string(6) "237.24" "new_price" => string(6) "237.24" "discount" => NULL "created_at" => string(19) "2025-05-31 16:31:42" "article" => string(17) "M5 (черный)" "unique_code" => string(7) "1252522" "original" => string(51) "http://1teh.by/files/products/img_1375144_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(4) "1916" "updated_at" => NULL "category_id" => string(2) "24" "garanty" => string(5) "12.00" "importer" => string(0) "" "country_made" => string(10) "КИТАЙ" "manufacturer" => string(0) "" "service" => string(0) "" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => NULL "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "1" "free_delivery" => string(1) "1" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => NULL "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(592) "["https:\/\/api.zoomos.by\/img\/item\/2132106\/0","https:\/\/api.zoomos.by\/img\/item\/2132106\/1","https:\/\/api.zoomos.by\/img …" "zoomos_filters" => NULL "is_corrupt" => string(1) "0" "prepared" => NULL "is_fixed" => string(1) "0" "ym_disabled" => string(1) "1" "zoomos_update_time" => string(13) "1748583302000" ) protected _changed => array(0) protected _original_values => array(63) ( "id" => string(7) "1252522" "name" => string(45) "Кронштейны Onkron M5 (черный)" "url" => string(18) "m5-chernyiy_onkron" "md5_url" => string(32) "9d7a57ef16d80f20396ae70d81378154" "top" => NULL "important" => NULL "main_image" => string(59) "/files/product/1252522/9072d2dc2fe6d5bd7d25ee54719a2575.jpg" "more_images" => string(727) "["\/files\/product\/1252522\/eff211029073c22fe76305dee9835415.jpg","\/files\/product\/1252522\/54b86ef0554bf9f5b1358df426ede480. …" "s_title" => string(101) "Купить Кронштейны Onkron M5 (черный) в Минске по низкой цене" "s_description" => string(181) "Лучшие цены на M5 (черный) и все товары Onkron в магазине 1teh.by. Бесплатная доставка, отзывы на Кронштейны" "s_keywords" => string(45) "Кронштейны,Onkron,M5 (черный)" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(1497) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Основные</td></tr><tr class="qurow2"><td class= …" "short_content" => string(100) "настенный кронштейн для ЖК-телевизора 32-55", цвет черный" "active" => string(1) "1" "section_id" => string(1) "3" "price" => string(6) "237.24" "new_price" => string(6) "237.24" "discount" => NULL "created_at" => string(19) "2025-05-31 16:31:42" "article" => string(17) "M5 (черный)" "unique_code" => string(7) "1252522" "original" => string(51) "http://1teh.by/files/products/img_1375144_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(4) "1916" "updated_at" => NULL "category_id" => string(2) "24" "garanty" => string(5) "12.00" "importer" => string(0) "" "country_made" => string(10) "КИТАЙ" "manufacturer" => string(0) "" "service" => string(0) "" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => NULL "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "1" "free_delivery" => string(1) "1" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => NULL "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(592) "["https:\/\/api.zoomos.by\/img\/item\/2132106\/0","https:\/\/api.zoomos.by\/img\/item\/2132106\/1","https:\/\/api.zoomos.by\/img …" "zoomos_filters" => NULL "is_corrupt" => string(1) "0" "prepared" => NULL "is_fixed" => string(1) "0" "ym_disabled" => string(1) "1" "zoomos_update_time" => string(13) "1748583302000" ) protected _related => array(1) ( "section" => object Model_Section(40)
4 => object Model_Product(40){ protected _table_name => string(8) "sections" protected _has_many => array(1) ( "product" => array(4) ( "foreign_key" => string(10) "section_id" "through" => NULL "model" => string(7) "Product" "far_key" => string(10) "product_id" ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-section:edit?id=${id}" "external_url" => string(35) "site-section:index?url=${url}&page=" ) "active" => string(4) "bool" "position" => string(8) "position" "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(29) "admin-section:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(8) "position" "order_direction" => string(3) "ASC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(1) "3" "name" => string(22) "Электроника" "url" => string(11) "elektronika" "md5_url" => string(32) "76b94353c5e008664be91220b3bcffb8" "active" => string(1) "1" "s_title" => string(94) "Электроника. Большой каталог электроприборов - 1teh.by" "s_description" => string(276) "Большой выбор электроприборов в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бонусы и скидки. …" "s_keywords" => string(0) "" "description" => string(0) "" "position" => NULL "h1" => string(0) "" "updated_at" => string(19) "2025-05-31 17:01:39" "mobile_image" => string(0) "" "main_section_image" => string(0) "" "on_main" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(1) "3" "name" => string(22) "Электроника" "url" => string(11) "elektronika" "md5_url" => string(32) "76b94353c5e008664be91220b3bcffb8" "active" => string(1) "1" "s_title" => string(94) "Электроника. Большой каталог электроприборов - 1teh.by" "s_description" => string(276) "Большой выбор электроприборов в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бонусы и скидки. …" "s_keywords" => string(0) "" "description" => string(0) "" "position" => NULL "h1" => string(0) "" "updated_at" => string(19) "2025-05-31 17:01:39" "mobile_image" => string(0) "" "main_section_image" => string(0) "" "on_main" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "section" protected _object_plural => string(8) "sections" protected _table_columns => array(15) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(2) "50" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "position" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "position" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "h1" => array(12) ( "type" => string(6) "string" "column_name" => string(2) "h1" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "comment" => string(0) "" "extra" => string(27) "on update CURRENT_TIMESTAMP" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "mobile_image" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "mobile_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_section_image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(18) "main_section_image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "on_main" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "on_main" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "3" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "product" protected _object_plural => string(8) "products" protected _table_columns => array(63) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "256" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "top" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "top" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "important" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "important" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_image" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "main_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "more_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "more_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "comments_enabled" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "comments_enabled" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "create_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "create_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "update_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "update_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(10) "4294967295" "column_name" => string(7) "content" "column_default" => NULL "data_type" => string(8) "longtext" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "short_content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "short_content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "section_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "section_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "new_price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "new_price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 20 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "discount" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "discount" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "created_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "created_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "article" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "article" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 23 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "unique_code" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "unique_code" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "original" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "original" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 25 "character_maximum_length" => string(3) "512" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "empty" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "empty" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 26 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "to_upload" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "to_upload" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 27 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "reviews" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "reviews" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 28 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "brand_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(8) "brand_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 29 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 30 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 31 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "garanty" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(7) "garanty" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 32 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "importer" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "importer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 33 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "country_made" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "country_made" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 34 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "manufacturer" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "manufacturer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 35 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "service" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "service" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 36 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 37 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gift_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "gift_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 38 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "delivery" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "delivery" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 39 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rating" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "rating" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 40 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "fixed_price" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "fixed_price" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 41 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "popular" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "popular" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 42 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "expedient_on" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(12) "expedient_on" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 43 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "yandex_market_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(16) "yandex_market_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 44 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "no_percent" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "no_percent" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 45 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "free_delivery" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(13) "free_delivery" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 46 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "product_day" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "product_day" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 47 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pok" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "pok" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 48 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "halva" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "halva" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 49 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instructions" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(12) "instructions" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 50 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_hits" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "is_hits" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 51 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "no_percent_force" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "no_percent_force" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 52 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "narod" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(5) "narod" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 53 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "two_year" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "two_year" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 54 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "hit" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(3) "hit" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 55 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "zakaz" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(5) "zakaz" "column_default" => NULL "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 56 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "zoomos_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 57 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_filters" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(14) "zoomos_filters" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 58 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_corrupt" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(10) "is_corrupt" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 59 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "prepared" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "prepared" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 60 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_fixed" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "is_fixed" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 61 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ym_disabled" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(11) "ym_disabled" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 62 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_update_time" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(20) "18446744073709551615" "column_name" => string(18) "zoomos_update_time" "column_default" => NULL "data_type" => string(15) "bigint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 63 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(7) "1252522" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "section" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "product" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(7) "product" protected _belongs_to => array(4) ( "section" => array(3) ( "foreign_key" => string(10) "section_id" "model" => string(7) "Section" "required" => bool TRUE ) "gift" => array(3) ( "foreign_key" => string(7) "gift_id" "model" => string(4) "Gift" "required" => bool TRUE ) "brand" => array(3) ( "foreign_key" => string(8) "brand_id" "model" => string(5) "Brand" "required" => bool TRUE ) "category" => array(3) ( "foreign_key" => string(11) "category_id" "model" => string(8) "Category" "required" => bool TRUE ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-product:edit?id=${id}" "external_url" => string(77) "site-product:index?product=${url}&category=${category.url}&article=${article}" ) "two_year" => string(4) "bool" "edit" => array(6) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(27) "admin-product:edit?id=${id}" "title" => string(26) "<i class="fa fa-edit"></i>" "color" => string(5) "green" "alternative" => string(26) "Редактировать" ) "delete" => array(7) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(29) "admin-product:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "alternative" => string(14) "Удалить" "color" => string(3) "red" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(2) "id" "order_direction" => string(4) "DESC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(63) ( "id" => string(7) "1279366" "name" => string(108) "Системы автоматического полива, распылители Hozelock Flexi Spray 2683" "url" => string(25) "flexi-spray-2683_hozelock" "md5_url" => string(32) "33cff390375fc0e8eeb3006d180d55e8" "top" => string(1) "0" "important" => string(1) "0" "main_image" => string(59) "/files/product/1279366/3e21e83c8a5b327679aec1ef20135d2d.jpg" "more_images" => string(265) "["\/files\/product\/1279366\/b1f16ffe14b3b1c7b9a32c1ad2cee943.jpg","\/files\/product\/1279366\/bf87be8d54ddae4a10f753299dc0eb03. …" "s_title" => string(164) "Купить Системы автоматического полива, распылители Hozelock Flexi Spray 2683 в Минске по низкой цене" "s_description" => string(244) "Лучшие цены на Flexi Spray 2683 и все товары Hozelock в магазине 1teh.by. Бесплатная доставка, отзывы на Системы автоматического …" "s_keywords" => string(108) "Системы автоматического полива, распылители,Hozelock,Flexi Spray 2683" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(2289) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Общая информация</td></tr><tr class="qugroup_em …" "short_content" => string(143) "распылитель дождеватель/пистолет/штанга, 3 режима, пластик, площадь полива 69 м2" "active" => string(1) "1" "section_id" => string(1) "7" "price" => string(6) "185.76" "new_price" => string(6) "185.76" "discount" => NULL "created_at" => string(19) "2025-05-31 16:32:25" "article" => string(16) "Flexi Spray 2683" "unique_code" => string(7) "1279366" "original" => string(51) "http://1teh.by/files/products/img_1619342_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(4) "2209" "updated_at" => NULL "category_id" => string(3) "512" "garanty" => string(4) "0.00" "importer" => string(90) "СП "Сканлинк" ОООг.Минск, 4-ый пер. Монтажников д.5-16" "country_made" => string(0) "" "manufacturer" => string(0) "" "service" => string(0) "" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "1" "free_delivery" => string(1) "1" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(246) "["https:\/\/api.zoomos.by\/img\/item\/1929674\/0","https:\/\/api.zoomos.by\/img\/item\/1929674\/1","https:\/\/api.zoomos.by\/img …" "zoomos_filters" => NULL "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => string(13) "1748584067000" ) protected _changed => array(0) protected _original_values => array(63) ( "id" => string(7) "1279366" "name" => string(108) "Системы автоматического полива, распылители Hozelock Flexi Spray 2683" "url" => string(25) "flexi-spray-2683_hozelock" "md5_url" => string(32) "33cff390375fc0e8eeb3006d180d55e8" "top" => string(1) "0" "important" => string(1) "0" "main_image" => string(59) "/files/product/1279366/3e21e83c8a5b327679aec1ef20135d2d.jpg" "more_images" => string(265) "["\/files\/product\/1279366\/b1f16ffe14b3b1c7b9a32c1ad2cee943.jpg","\/files\/product\/1279366\/bf87be8d54ddae4a10f753299dc0eb03. …" "s_title" => string(164) "Купить Системы автоматического полива, распылители Hozelock Flexi Spray 2683 в Минске по низкой цене" "s_description" => string(244) "Лучшие цены на Flexi Spray 2683 и все товары Hozelock в магазине 1teh.by. Бесплатная доставка, отзывы на Системы автоматического …" "s_keywords" => string(108) "Системы автоматического полива, распылители,Hozelock,Flexi Spray 2683" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(2289) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Общая информация</td></tr><tr class="qugroup_em …" "short_content" => string(143) "распылитель дождеватель/пистолет/штанга, 3 режима, пластик, площадь полива 69 м2" "active" => string(1) "1" "section_id" => string(1) "7" "price" => string(6) "185.76" "new_price" => string(6) "185.76" "discount" => NULL "created_at" => string(19) "2025-05-31 16:32:25" "article" => string(16) "Flexi Spray 2683" "unique_code" => string(7) "1279366" "original" => string(51) "http://1teh.by/files/products/img_1619342_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(4) "2209" "updated_at" => NULL "category_id" => string(3) "512" "garanty" => string(4) "0.00" "importer" => string(90) "СП "Сканлинк" ОООг.Минск, 4-ый пер. Монтажников д.5-16" "country_made" => string(0) "" "manufacturer" => string(0) "" "service" => string(0) "" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "1" "free_delivery" => string(1) "1" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(246) "["https:\/\/api.zoomos.by\/img\/item\/1929674\/0","https:\/\/api.zoomos.by\/img\/item\/1929674\/1","https:\/\/api.zoomos.by\/img …" "zoomos_filters" => NULL "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => string(13) "1748584067000" ) protected _related => array(1) ( "section" => object Model_Section(40)
5 => object Model_Product(40){ protected _table_name => string(8) "sections" protected _has_many => array(1) ( "product" => array(4) ( "foreign_key" => string(10) "section_id" "through" => NULL "model" => string(7) "Product" "far_key" => string(10) "product_id" ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-section:edit?id=${id}" "external_url" => string(35) "site-section:index?url=${url}&page=" ) "active" => string(4) "bool" "position" => string(8) "position" "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(29) "admin-section:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(8) "position" "order_direction" => string(3) "ASC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(1) "7" "name" => string(55) "Инструменты и Садовая техника" "url" => string(31) "instrumentyi-i-sadovaya-tehnika" "md5_url" => string(32) "3809a652761c6d794a3e58998d28f4fb" "active" => string(1) "1" "s_title" => string(123) "Инструменты и садовая техника. Большой каталог с лучшей ценой - 1teh.by" "s_description" => string(303) "Большой выбор инструментов и садовой техники в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бо …" "s_keywords" => string(0) "" "description" => string(0) "" "position" => NULL "h1" => string(0) "" "updated_at" => string(19) "2025-05-31 17:01:39" "mobile_image" => string(0) "" "main_section_image" => string(0) "" "on_main" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(1) "7" "name" => string(55) "Инструменты и Садовая техника" "url" => string(31) "instrumentyi-i-sadovaya-tehnika" "md5_url" => string(32) "3809a652761c6d794a3e58998d28f4fb" "active" => string(1) "1" "s_title" => string(123) "Инструменты и садовая техника. Большой каталог с лучшей ценой - 1teh.by" "s_description" => string(303) "Большой выбор инструментов и садовой техники в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бо …" "s_keywords" => string(0) "" "description" => string(0) "" "position" => NULL "h1" => string(0) "" "updated_at" => string(19) "2025-05-31 17:01:39" "mobile_image" => string(0) "" "main_section_image" => string(0) "" "on_main" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "section" protected _object_plural => string(8) "sections" protected _table_columns => array(15) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(2) "50" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "position" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "position" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "h1" => array(12) ( "type" => string(6) "string" "column_name" => string(2) "h1" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "comment" => string(0) "" "extra" => string(27) "on update CURRENT_TIMESTAMP" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "mobile_image" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "mobile_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_section_image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(18) "main_section_image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "on_main" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "on_main" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "7" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "product" protected _object_plural => string(8) "products" protected _table_columns => array(63) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "256" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "top" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "top" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "important" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "important" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_image" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "main_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "more_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "more_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "comments_enabled" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "comments_enabled" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "create_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "create_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "update_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "update_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(10) "4294967295" "column_name" => string(7) "content" "column_default" => NULL "data_type" => string(8) "longtext" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "short_content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "short_content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "section_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "section_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "new_price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "new_price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 20 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "discount" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "discount" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "created_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "created_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "article" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "article" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 23 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "unique_code" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "unique_code" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "original" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "original" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 25 "character_maximum_length" => string(3) "512" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "empty" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "empty" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 26 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "to_upload" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "to_upload" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 27 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "reviews" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "reviews" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 28 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "brand_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(8) "brand_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 29 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 30 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 31 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "garanty" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(7) "garanty" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 32 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "importer" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "importer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 33 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "country_made" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "country_made" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 34 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "manufacturer" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "manufacturer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 35 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "service" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "service" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 36 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 37 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gift_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "gift_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 38 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "delivery" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "delivery" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 39 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rating" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "rating" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 40 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "fixed_price" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "fixed_price" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 41 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "popular" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "popular" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 42 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "expedient_on" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(12) "expedient_on" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 43 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "yandex_market_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(16) "yandex_market_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 44 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "no_percent" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "no_percent" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 45 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "free_delivery" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(13) "free_delivery" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 46 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "product_day" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "product_day" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 47 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pok" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "pok" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 48 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "halva" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "halva" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 49 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instructions" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(12) "instructions" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 50 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_hits" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "is_hits" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 51 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "no_percent_force" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "no_percent_force" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 52 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "narod" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(5) "narod" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 53 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "two_year" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "two_year" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 54 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "hit" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(3) "hit" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 55 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "zakaz" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(5) "zakaz" "column_default" => NULL "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 56 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "zoomos_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 57 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_filters" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(14) "zoomos_filters" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 58 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_corrupt" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(10) "is_corrupt" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 59 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "prepared" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "prepared" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 60 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_fixed" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "is_fixed" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 61 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ym_disabled" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(11) "ym_disabled" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 62 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_update_time" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(20) "18446744073709551615" "column_name" => string(18) "zoomos_update_time" "column_default" => NULL "data_type" => string(15) "bigint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 63 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(7) "1279366" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "section" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "product" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(7) "product" protected _belongs_to => array(4) ( "section" => array(3) ( "foreign_key" => string(10) "section_id" "model" => string(7) "Section" "required" => bool TRUE ) "gift" => array(3) ( "foreign_key" => string(7) "gift_id" "model" => string(4) "Gift" "required" => bool TRUE ) "brand" => array(3) ( "foreign_key" => string(8) "brand_id" "model" => string(5) "Brand" "required" => bool TRUE ) "category" => array(3) ( "foreign_key" => string(11) "category_id" "model" => string(8) "Category" "required" => bool TRUE ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-product:edit?id=${id}" "external_url" => string(77) "site-product:index?product=${url}&category=${category.url}&article=${article}" ) "two_year" => string(4) "bool" "edit" => array(6) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(27) "admin-product:edit?id=${id}" "title" => string(26) "<i class="fa fa-edit"></i>" "color" => string(5) "green" "alternative" => string(26) "Редактировать" ) "delete" => array(7) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(29) "admin-product:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "alternative" => string(14) "Удалить" "color" => string(3) "red" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(2) "id" "order_direction" => string(4) "DESC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(63) ( "id" => string(7) "1297586" "name" => string(85) "Автомобильные видеорегистраторы 70mai Dash Cam 4K A800S" "url" => string(23) "dash-cam-4k-a800s_70mai" "md5_url" => string(32) "de3c49e95708684bfa55837c8000bfe4" "top" => string(1) "0" "important" => string(1) "0" "main_image" => string(59) "/files/product/1297586/dbf3fe37c77e3648f2dafee8c9c08bae.jpg" "more_images" => string(463) "["\/files\/product\/1297586\/203f681306b5d8cd6263a4cfe729a7d2.jpg","\/files\/product\/1297586\/818a9988c5a60300c1f1b045667eb859. …" "s_title" => string(141) "Купить Автомобильные видеорегистраторы 70mai Dash Cam 4K A800S в Минске по низкой цене" "s_description" => string(221) "Лучшие цены на Dash Cam 4K A800S и все товары 70mai в магазине 1teh.by. Бесплатная доставка, отзывы на Автомобильные видеорегист …" "s_keywords" => string(85) "Автомобильные видеорегистраторы,70mai,Dash Cam 4K A800S" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(8628) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Общая информация</td></tr><tr class="qugroup_em …" "short_content" => string(117) "основная камера: 8 Мп 140°, видео 3840x2160 H.264, GPS, G-сенсор, экран 3" 854 x 480" "active" => string(1) "1" "section_id" => string(1) "5" "price" => string(6) "574.70" "new_price" => string(6) "547.33" "discount" => NULL "created_at" => string(19) "2025-05-31 16:31:46" "article" => string(17) "Dash Cam 4K A800S" "unique_code" => string(7) "1297586" "original" => string(51) "http://1teh.by/files/products/img_2508265_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(4) "2629" "updated_at" => NULL "category_id" => string(2) "51" "garanty" => string(5) "12.00" "importer" => string(177) "ООО ТрайдексБелПлюс 223016, Минская обл., Минский р-н Новодворский с/с, 33/1-8 к.64 р-н д. Большое Стиклево" "country_made" => string(10) "КИТАЙ" "manufacturer" => string(126) "70маи Ко., Лтд. Кинг Шу Рум 2А, 2 этаж, Строеине 1, 401, Каобао РД, Шанхай 200030." "service" => string(156) "ООО ""НетАир"",220125, Минская обл., Минский р-н, Боровлянский с/с, д. Копище,ул. Лопатина, д. 7" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "0" "free_delivery" => string(1) "0" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(393) "["https:\/\/api.zoomos.by\/img\/item\/2082166\/0","https:\/\/api.zoomos.by\/img\/item\/2082166\/1","https:\/\/api.zoomos.by\/img …" "zoomos_filters" => NULL "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => string(13) "1748583427000" ) protected _changed => array(0) protected _original_values => array(63) ( "id" => string(7) "1297586" "name" => string(85) "Автомобильные видеорегистраторы 70mai Dash Cam 4K A800S" "url" => string(23) "dash-cam-4k-a800s_70mai" "md5_url" => string(32) "de3c49e95708684bfa55837c8000bfe4" "top" => string(1) "0" "important" => string(1) "0" "main_image" => string(59) "/files/product/1297586/dbf3fe37c77e3648f2dafee8c9c08bae.jpg" "more_images" => string(463) "["\/files\/product\/1297586\/203f681306b5d8cd6263a4cfe729a7d2.jpg","\/files\/product\/1297586\/818a9988c5a60300c1f1b045667eb859. …" "s_title" => string(141) "Купить Автомобильные видеорегистраторы 70mai Dash Cam 4K A800S в Минске по низкой цене" "s_description" => string(221) "Лучшие цены на Dash Cam 4K A800S и все товары 70mai в магазине 1teh.by. Бесплатная доставка, отзывы на Автомобильные видеорегист …" "s_keywords" => string(85) "Автомобильные видеорегистраторы,70mai,Dash Cam 4K A800S" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(8628) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Общая информация</td></tr><tr class="qugroup_em …" "short_content" => string(117) "основная камера: 8 Мп 140°, видео 3840x2160 H.264, GPS, G-сенсор, экран 3" 854 x 480" "active" => string(1) "1" "section_id" => string(1) "5" "price" => string(6) "574.70" "new_price" => string(6) "547.33" "discount" => NULL "created_at" => string(19) "2025-05-31 16:31:46" "article" => string(17) "Dash Cam 4K A800S" "unique_code" => string(7) "1297586" "original" => string(51) "http://1teh.by/files/products/img_2508265_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(4) "2629" "updated_at" => NULL "category_id" => string(2) "51" "garanty" => string(5) "12.00" "importer" => string(177) "ООО ТрайдексБелПлюс 223016, Минская обл., Минский р-н Новодворский с/с, 33/1-8 к.64 р-н д. Большое Стиклево" "country_made" => string(10) "КИТАЙ" "manufacturer" => string(126) "70маи Ко., Лтд. Кинг Шу Рум 2А, 2 этаж, Строеине 1, 401, Каобао РД, Шанхай 200030." "service" => string(156) "ООО ""НетАир"",220125, Минская обл., Минский р-н, Боровлянский с/с, д. Копище,ул. Лопатина, д. 7" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "0" "free_delivery" => string(1) "0" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(393) "["https:\/\/api.zoomos.by\/img\/item\/2082166\/0","https:\/\/api.zoomos.by\/img\/item\/2082166\/1","https:\/\/api.zoomos.by\/img …" "zoomos_filters" => NULL "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => string(13) "1748583427000" ) protected _related => array(1) ( "section" => object Model_Section(40)
6 => object Model_Product(40){ protected _table_name => string(8) "sections" protected _has_many => array(1) ( "product" => array(4) ( "foreign_key" => string(10) "section_id" "through" => NULL "model" => string(7) "Product" "far_key" => string(10) "product_id" ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-section:edit?id=${id}" "external_url" => string(35) "site-section:index?url=${url}&page=" ) "active" => string(4) "bool" "position" => string(8) "position" "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(29) "admin-section:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(8) "position" "order_direction" => string(3) "ASC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(1) "5" "name" => string(8) "Авто" "url" => string(4) "avto" "md5_url" => string(32) "d616a0b2d0d9ebed26e4e3436e19f42c" "active" => string(1) "1" "s_title" => string(112) "Автотовары и аксессуары. Большой каталог с лучшей ценой - 1teh.by" "s_description" => string(294) "Большой выбор автотоваров и аксессуаров в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бонусы …" "s_keywords" => string(0) "" "description" => string(0) "" "position" => NULL "h1" => string(0) "" "updated_at" => string(19) "2025-05-31 17:01:39" "mobile_image" => string(0) "" "main_section_image" => string(0) "" "on_main" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(1) "5" "name" => string(8) "Авто" "url" => string(4) "avto" "md5_url" => string(32) "d616a0b2d0d9ebed26e4e3436e19f42c" "active" => string(1) "1" "s_title" => string(112) "Автотовары и аксессуары. Большой каталог с лучшей ценой - 1teh.by" "s_description" => string(294) "Большой выбор автотоваров и аксессуаров в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бонусы …" "s_keywords" => string(0) "" "description" => string(0) "" "position" => NULL "h1" => string(0) "" "updated_at" => string(19) "2025-05-31 17:01:39" "mobile_image" => string(0) "" "main_section_image" => string(0) "" "on_main" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "section" protected _object_plural => string(8) "sections" protected _table_columns => array(15) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(2) "50" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "position" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "position" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "h1" => array(12) ( "type" => string(6) "string" "column_name" => string(2) "h1" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "comment" => string(0) "" "extra" => string(27) "on update CURRENT_TIMESTAMP" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "mobile_image" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "mobile_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_section_image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(18) "main_section_image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "on_main" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "on_main" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "5" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "product" protected _object_plural => string(8) "products" protected _table_columns => array(63) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "256" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "top" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "top" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "important" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "important" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_image" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "main_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "more_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "more_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "comments_enabled" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "comments_enabled" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "create_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "create_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "update_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "update_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(10) "4294967295" "column_name" => string(7) "content" "column_default" => NULL "data_type" => string(8) "longtext" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "short_content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "short_content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "section_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "section_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "new_price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "new_price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 20 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "discount" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "discount" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "created_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "created_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "article" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "article" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 23 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "unique_code" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "unique_code" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "original" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "original" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 25 "character_maximum_length" => string(3) "512" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "empty" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "empty" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 26 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "to_upload" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "to_upload" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 27 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "reviews" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "reviews" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 28 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "brand_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(8) "brand_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 29 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 30 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 31 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "garanty" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(7) "garanty" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 32 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "importer" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "importer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 33 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "country_made" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "country_made" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 34 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "manufacturer" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "manufacturer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 35 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "service" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "service" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 36 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 37 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gift_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "gift_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 38 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "delivery" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "delivery" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 39 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rating" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "rating" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 40 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "fixed_price" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "fixed_price" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 41 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "popular" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "popular" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 42 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "expedient_on" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(12) "expedient_on" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 43 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "yandex_market_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(16) "yandex_market_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 44 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "no_percent" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "no_percent" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 45 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "free_delivery" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(13) "free_delivery" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 46 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "product_day" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "product_day" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 47 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pok" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "pok" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 48 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "halva" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "halva" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 49 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instructions" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(12) "instructions" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 50 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_hits" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "is_hits" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 51 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "no_percent_force" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "no_percent_force" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 52 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "narod" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(5) "narod" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 53 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "two_year" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "two_year" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 54 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "hit" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(3) "hit" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 55 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "zakaz" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(5) "zakaz" "column_default" => NULL "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 56 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "zoomos_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 57 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_filters" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(14) "zoomos_filters" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 58 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_corrupt" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(10) "is_corrupt" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 59 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "prepared" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "prepared" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 60 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_fixed" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "is_fixed" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 61 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ym_disabled" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(11) "ym_disabled" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 62 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_update_time" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(20) "18446744073709551615" "column_name" => string(18) "zoomos_update_time" "column_default" => NULL "data_type" => string(15) "bigint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 63 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(7) "1297586" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "section" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "product" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(7) "product" protected _belongs_to => array(4) ( "section" => array(3) ( "foreign_key" => string(10) "section_id" "model" => string(7) "Section" "required" => bool TRUE ) "gift" => array(3) ( "foreign_key" => string(7) "gift_id" "model" => string(4) "Gift" "required" => bool TRUE ) "brand" => array(3) ( "foreign_key" => string(8) "brand_id" "model" => string(5) "Brand" "required" => bool TRUE ) "category" => array(3) ( "foreign_key" => string(11) "category_id" "model" => string(8) "Category" "required" => bool TRUE ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-product:edit?id=${id}" "external_url" => string(77) "site-product:index?product=${url}&category=${category.url}&article=${article}" ) "two_year" => string(4) "bool" "edit" => array(6) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(27) "admin-product:edit?id=${id}" "title" => string(26) "<i class="fa fa-edit"></i>" "color" => string(5) "green" "alternative" => string(26) "Редактировать" ) "delete" => array(7) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(29) "admin-product:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "alternative" => string(14) "Удалить" "color" => string(3) "red" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(2) "id" "order_direction" => string(4) "DESC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(63) ( "id" => string(7) "1316490" "name" => string(94) "Системы автоматического полива, распылители Claber 8707" "url" => string(11) "8707_claber" "md5_url" => string(32) "5b6cf62598f3a7323733bcbe0397583d" "top" => string(1) "0" "important" => string(1) "0" "main_image" => string(59) "/files/product/1316490/5a51ff28197d092a803fa1165306f18b.jpg" "more_images" => NULL "s_title" => string(150) "Купить Системы автоматического полива, распылители Claber 8707 в Минске по низкой цене" "s_description" => string(230) "Лучшие цены на 8707 и все товары Claber в магазине 1teh.by. Бесплатная доставка, отзывы на Системы автоматического полива, распы …" "s_keywords" => string(94) "Системы автоматического полива, распылители,Claber,8707" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(2351) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Общая информация</td></tr><tr class="qugroup_em …" "short_content" => string(256) "распылитель осциллирующий, металл/пластик, дальность распыления 22.5 м, площадь полива 397 м2, с регулировкой расхода, с регулир …" "active" => string(1) "1" "section_id" => string(1) "7" "price" => string(5) "91.00" "new_price" => string(5) "91.00" "discount" => NULL "created_at" => string(19) "2025-05-31 16:32:25" "article" => string(4) "8707" "unique_code" => string(7) "1316490" "original" => string(51) "http://1teh.by/files/products/img_1836340_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(4) "2724" "updated_at" => NULL "category_id" => string(3) "512" "garanty" => string(5) "12.00" "importer" => string(100) "Акватехнологии ООО 220070, г. Минск , ул. Олега Кошевого д. 5" "country_made" => string(0) "" "manufacturer" => string(0) "" "service" => string(0) "" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "1" "free_delivery" => string(1) "1" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(50) "["https:\/\/api.zoomos.by\/img\/item\/1823460\/0"]" "zoomos_filters" => NULL "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => string(13) "1748584068000" ) protected _changed => array(0) protected _original_values => array(63) ( "id" => string(7) "1316490" "name" => string(94) "Системы автоматического полива, распылители Claber 8707" "url" => string(11) "8707_claber" "md5_url" => string(32) "5b6cf62598f3a7323733bcbe0397583d" "top" => string(1) "0" "important" => string(1) "0" "main_image" => string(59) "/files/product/1316490/5a51ff28197d092a803fa1165306f18b.jpg" "more_images" => NULL "s_title" => string(150) "Купить Системы автоматического полива, распылители Claber 8707 в Минске по низкой цене" "s_description" => string(230) "Лучшие цены на 8707 и все товары Claber в магазине 1teh.by. Бесплатная доставка, отзывы на Системы автоматического полива, распы …" "s_keywords" => string(94) "Системы автоматического полива, распылители,Claber,8707" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(2351) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Общая информация</td></tr><tr class="qugroup_em …" "short_content" => string(256) "распылитель осциллирующий, металл/пластик, дальность распыления 22.5 м, площадь полива 397 м2, с регулировкой расхода, с регулир …" "active" => string(1) "1" "section_id" => string(1) "7" "price" => string(5) "91.00" "new_price" => string(5) "91.00" "discount" => NULL "created_at" => string(19) "2025-05-31 16:32:25" "article" => string(4) "8707" "unique_code" => string(7) "1316490" "original" => string(51) "http://1teh.by/files/products/img_1836340_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(4) "2724" "updated_at" => NULL "category_id" => string(3) "512" "garanty" => string(5) "12.00" "importer" => string(100) "Акватехнологии ООО 220070, г. Минск , ул. Олега Кошевого д. 5" "country_made" => string(0) "" "manufacturer" => string(0) "" "service" => string(0) "" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "1" "free_delivery" => string(1) "1" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(50) "["https:\/\/api.zoomos.by\/img\/item\/1823460\/0"]" "zoomos_filters" => NULL "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => string(13) "1748584068000" ) protected _related => array(1) ( "section" => object Model_Section(40)
7 => object Model_Product(40){ protected _table_name => string(8) "sections" protected _has_many => array(1) ( "product" => array(4) ( "foreign_key" => string(10) "section_id" "through" => NULL "model" => string(7) "Product" "far_key" => string(10) "product_id" ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-section:edit?id=${id}" "external_url" => string(35) "site-section:index?url=${url}&page=" ) "active" => string(4) "bool" "position" => string(8) "position" "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(29) "admin-section:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(8) "position" "order_direction" => string(3) "ASC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(1) "7" "name" => string(55) "Инструменты и Садовая техника" "url" => string(31) "instrumentyi-i-sadovaya-tehnika" "md5_url" => string(32) "3809a652761c6d794a3e58998d28f4fb" "active" => string(1) "1" "s_title" => string(123) "Инструменты и садовая техника. Большой каталог с лучшей ценой - 1teh.by" "s_description" => string(303) "Большой выбор инструментов и садовой техники в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бо …" "s_keywords" => string(0) "" "description" => string(0) "" "position" => NULL "h1" => string(0) "" "updated_at" => string(19) "2025-05-31 17:01:39" "mobile_image" => string(0) "" "main_section_image" => string(0) "" "on_main" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(1) "7" "name" => string(55) "Инструменты и Садовая техника" "url" => string(31) "instrumentyi-i-sadovaya-tehnika" "md5_url" => string(32) "3809a652761c6d794a3e58998d28f4fb" "active" => string(1) "1" "s_title" => string(123) "Инструменты и садовая техника. Большой каталог с лучшей ценой - 1teh.by" "s_description" => string(303) "Большой выбор инструментов и садовой техники в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бо …" "s_keywords" => string(0) "" "description" => string(0) "" "position" => NULL "h1" => string(0) "" "updated_at" => string(19) "2025-05-31 17:01:39" "mobile_image" => string(0) "" "main_section_image" => string(0) "" "on_main" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "section" protected _object_plural => string(8) "sections" protected _table_columns => array(15) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(2) "50" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "position" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "position" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "h1" => array(12) ( "type" => string(6) "string" "column_name" => string(2) "h1" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "comment" => string(0) "" "extra" => string(27) "on update CURRENT_TIMESTAMP" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "mobile_image" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "mobile_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_section_image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(18) "main_section_image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "on_main" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "on_main" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "7" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "product" protected _object_plural => string(8) "products" protected _table_columns => array(63) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "256" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "top" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "top" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "important" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "important" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_image" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "main_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "more_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "more_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "comments_enabled" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "comments_enabled" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "create_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "create_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "update_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "update_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(10) "4294967295" "column_name" => string(7) "content" "column_default" => NULL "data_type" => string(8) "longtext" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "short_content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "short_content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "section_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "section_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "new_price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "new_price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 20 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "discount" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "discount" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "created_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "created_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "article" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "article" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 23 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "unique_code" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "unique_code" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "original" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "original" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 25 "character_maximum_length" => string(3) "512" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "empty" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "empty" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 26 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "to_upload" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "to_upload" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 27 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "reviews" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "reviews" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 28 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "brand_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(8) "brand_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 29 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 30 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 31 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "garanty" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(7) "garanty" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 32 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "importer" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "importer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 33 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "country_made" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "country_made" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 34 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "manufacturer" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "manufacturer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 35 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "service" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "service" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 36 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 37 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gift_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "gift_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 38 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "delivery" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "delivery" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 39 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rating" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "rating" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 40 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "fixed_price" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "fixed_price" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 41 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "popular" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "popular" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 42 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "expedient_on" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(12) "expedient_on" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 43 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "yandex_market_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(16) "yandex_market_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 44 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "no_percent" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "no_percent" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 45 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "free_delivery" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(13) "free_delivery" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 46 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "product_day" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "product_day" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 47 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pok" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "pok" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 48 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "halva" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "halva" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 49 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instructions" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(12) "instructions" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 50 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_hits" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "is_hits" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 51 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "no_percent_force" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "no_percent_force" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 52 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "narod" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(5) "narod" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 53 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "two_year" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "two_year" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 54 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "hit" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(3) "hit" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 55 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "zakaz" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(5) "zakaz" "column_default" => NULL "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 56 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "zoomos_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 57 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_filters" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(14) "zoomos_filters" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 58 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_corrupt" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(10) "is_corrupt" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 59 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "prepared" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "prepared" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 60 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_fixed" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "is_fixed" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 61 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ym_disabled" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(11) "ym_disabled" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 62 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_update_time" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(20) "18446744073709551615" "column_name" => string(18) "zoomos_update_time" "column_default" => NULL "data_type" => string(15) "bigint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 63 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(7) "1316490" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "section" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "product" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(7) "product" protected _belongs_to => array(4) ( "section" => array(3) ( "foreign_key" => string(10) "section_id" "model" => string(7) "Section" "required" => bool TRUE ) "gift" => array(3) ( "foreign_key" => string(7) "gift_id" "model" => string(4) "Gift" "required" => bool TRUE ) "brand" => array(3) ( "foreign_key" => string(8) "brand_id" "model" => string(5) "Brand" "required" => bool TRUE ) "category" => array(3) ( "foreign_key" => string(11) "category_id" "model" => string(8) "Category" "required" => bool TRUE ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-product:edit?id=${id}" "external_url" => string(77) "site-product:index?product=${url}&category=${category.url}&article=${article}" ) "two_year" => string(4) "bool" "edit" => array(6) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(27) "admin-product:edit?id=${id}" "title" => string(26) "<i class="fa fa-edit"></i>" "color" => string(5) "green" "alternative" => string(26) "Редактировать" ) "delete" => array(7) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(29) "admin-product:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "alternative" => string(14) "Удалить" "color" => string(3) "red" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(2) "id" "order_direction" => string(4) "DESC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(63) ( "id" => string(7) "1331888" "name" => string(80) "Душевые кабины Ravak Pivot PPS 90 (сатин/прозрачное)" "url" => string(36) "pivot-pps-90-satin-prozrachnoe_ravak" "md5_url" => string(32) "58f44f9d5ad6b0a93a906c3c17cbb380" "top" => string(1) "0" "important" => string(1) "0" "main_image" => string(59) "/files/product/1331888/bfad21081f2da43b4a2062f088fb6d55.jpg" "more_images" => NULL "s_title" => string(136) "Купить Душевые кабины Ravak Pivot PPS 90 (сатин/прозрачное) в Минске по низкой цене" "s_description" => string(216) "Лучшие цены на Pivot PPS 90 (сатин/прозрачное) и все товары Ravak в магазине 1teh.by. Бесплатная доставка, отзывы на Душевые каб …" "s_keywords" => string(80) "Душевые кабины,Ravak,Pivot PPS 90 (сатин/прозрачное)" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(4936) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Основные</td></tr><tr class="qurow2"><td class= …" "short_content" => string(49) "душевая стенка, ширина 90 см" "active" => string(1) "1" "section_id" => string(1) "2" "price" => string(6) "547.00" "new_price" => string(6) "547.00" "discount" => NULL "created_at" => string(19) "2025-05-31 16:32:07" "article" => string(46) "Pivot PPS 90 (сатин/прозрачное)" "unique_code" => string(7) "1331888" "original" => string(51) "http://1teh.by/files/products/img_1114579_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(4) "1213" "updated_at" => NULL "category_id" => string(3) "325" "garanty" => string(5) "12.00" "importer" => string(76) "ООО «Новый Ковш» РБ г.Минск б-р Шевченко 4-3" "country_made" => string(0) "" "manufacturer" => string(42) "RAVAK a. s. Obecnick? 285 261 01 P??bram I" "service" => string(98) "ООО «Лефро» РБ г. Минск ул. Горовца д. 24 офис 16+375 (25) 6932139" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "1" "free_delivery" => string(1) "1" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(50) "["https:\/\/api.zoomos.by\/img\/item\/1712803\/0"]" "zoomos_filters" => NULL "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => string(13) "1748583808000" ) protected _changed => array(0) protected _original_values => array(63) ( "id" => string(7) "1331888" "name" => string(80) "Душевые кабины Ravak Pivot PPS 90 (сатин/прозрачное)" "url" => string(36) "pivot-pps-90-satin-prozrachnoe_ravak" "md5_url" => string(32) "58f44f9d5ad6b0a93a906c3c17cbb380" "top" => string(1) "0" "important" => string(1) "0" "main_image" => string(59) "/files/product/1331888/bfad21081f2da43b4a2062f088fb6d55.jpg" "more_images" => NULL "s_title" => string(136) "Купить Душевые кабины Ravak Pivot PPS 90 (сатин/прозрачное) в Минске по низкой цене" "s_description" => string(216) "Лучшие цены на Pivot PPS 90 (сатин/прозрачное) и все товары Ravak в магазине 1teh.by. Бесплатная доставка, отзывы на Душевые каб …" "s_keywords" => string(80) "Душевые кабины,Ravak,Pivot PPS 90 (сатин/прозрачное)" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(4936) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Основные</td></tr><tr class="qurow2"><td class= …" "short_content" => string(49) "душевая стенка, ширина 90 см" "active" => string(1) "1" "section_id" => string(1) "2" "price" => string(6) "547.00" "new_price" => string(6) "547.00" "discount" => NULL "created_at" => string(19) "2025-05-31 16:32:07" "article" => string(46) "Pivot PPS 90 (сатин/прозрачное)" "unique_code" => string(7) "1331888" "original" => string(51) "http://1teh.by/files/products/img_1114579_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(4) "1213" "updated_at" => NULL "category_id" => string(3) "325" "garanty" => string(5) "12.00" "importer" => string(76) "ООО «Новый Ковш» РБ г.Минск б-р Шевченко 4-3" "country_made" => string(0) "" "manufacturer" => string(42) "RAVAK a. s. Obecnick? 285 261 01 P??bram I" "service" => string(98) "ООО «Лефро» РБ г. Минск ул. Горовца д. 24 офис 16+375 (25) 6932139" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "1" "free_delivery" => string(1) "1" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(50) "["https:\/\/api.zoomos.by\/img\/item\/1712803\/0"]" "zoomos_filters" => NULL "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => string(13) "1748583808000" ) protected _related => array(1) ( "section" => object Model_Section(40)
8 => object Model_Product(40){ protected _table_name => string(8) "sections" protected _has_many => array(1) ( "product" => array(4) ( "foreign_key" => string(10) "section_id" "through" => NULL "model" => string(7) "Product" "far_key" => string(10) "product_id" ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-section:edit?id=${id}" "external_url" => string(35) "site-section:index?url=${url}&page=" ) "active" => string(4) "bool" "position" => string(8) "position" "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(29) "admin-section:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(8) "position" "order_direction" => string(3) "ASC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(1) "2" "name" => string(15) "Для дома" "url" => string(9) "dlya-doma" "md5_url" => string(32) "b9e816e27a160b6c3b9125d49a742c7a" "active" => string(1) "1" "s_title" => string(86) "Каталог бытовой техники для дома в Минске | 1teh.by" "s_description" => string(276) "Большой выбор товаров для дома в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бонусы и скидки. …" "s_keywords" => string(76) "бытовая техника для дома, каталог техники" "description" => string(0) "" "position" => NULL "h1" => string(0) "" "updated_at" => string(19) "2025-05-31 17:01:39" "mobile_image" => string(0) "" "main_section_image" => string(0) "" "on_main" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(1) "2" "name" => string(15) "Для дома" "url" => string(9) "dlya-doma" "md5_url" => string(32) "b9e816e27a160b6c3b9125d49a742c7a" "active" => string(1) "1" "s_title" => string(86) "Каталог бытовой техники для дома в Минске | 1teh.by" "s_description" => string(276) "Большой выбор товаров для дома в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бонусы и скидки. …" "s_keywords" => string(76) "бытовая техника для дома, каталог техники" "description" => string(0) "" "position" => NULL "h1" => string(0) "" "updated_at" => string(19) "2025-05-31 17:01:39" "mobile_image" => string(0) "" "main_section_image" => string(0) "" "on_main" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "section" protected _object_plural => string(8) "sections" protected _table_columns => array(15) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(2) "50" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "position" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "position" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "h1" => array(12) ( "type" => string(6) "string" "column_name" => string(2) "h1" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "comment" => string(0) "" "extra" => string(27) "on update CURRENT_TIMESTAMP" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "mobile_image" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "mobile_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_section_image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(18) "main_section_image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "on_main" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "on_main" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "2" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "product" protected _object_plural => string(8) "products" protected _table_columns => array(63) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "256" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "top" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "top" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "important" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "important" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_image" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "main_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "more_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "more_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "comments_enabled" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "comments_enabled" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "create_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "create_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "update_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "update_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(10) "4294967295" "column_name" => string(7) "content" "column_default" => NULL "data_type" => string(8) "longtext" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "short_content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "short_content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "section_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "section_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "new_price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "new_price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 20 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "discount" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "discount" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "created_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "created_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "article" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "article" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 23 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "unique_code" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "unique_code" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "original" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "original" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 25 "character_maximum_length" => string(3) "512" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "empty" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "empty" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 26 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "to_upload" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "to_upload" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 27 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "reviews" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "reviews" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 28 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "brand_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(8) "brand_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 29 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 30 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 31 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "garanty" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(7) "garanty" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 32 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "importer" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "importer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 33 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "country_made" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "country_made" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 34 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "manufacturer" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "manufacturer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 35 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "service" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "service" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 36 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 37 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gift_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "gift_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 38 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "delivery" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "delivery" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 39 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rating" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "rating" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 40 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "fixed_price" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "fixed_price" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 41 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "popular" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "popular" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 42 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "expedient_on" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(12) "expedient_on" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 43 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "yandex_market_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(16) "yandex_market_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 44 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "no_percent" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "no_percent" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 45 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "free_delivery" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(13) "free_delivery" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 46 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "product_day" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "product_day" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 47 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pok" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "pok" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 48 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "halva" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "halva" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 49 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instructions" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(12) "instructions" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 50 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_hits" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "is_hits" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 51 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "no_percent_force" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "no_percent_force" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 52 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "narod" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(5) "narod" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 53 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "two_year" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "two_year" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 54 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "hit" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(3) "hit" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 55 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "zakaz" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(5) "zakaz" "column_default" => NULL "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 56 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "zoomos_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 57 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_filters" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(14) "zoomos_filters" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 58 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_corrupt" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(10) "is_corrupt" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 59 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "prepared" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "prepared" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 60 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_fixed" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "is_fixed" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 61 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ym_disabled" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(11) "ym_disabled" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 62 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_update_time" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(20) "18446744073709551615" "column_name" => string(18) "zoomos_update_time" "column_default" => NULL "data_type" => string(15) "bigint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 63 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(7) "1331888" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "section" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "product" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(7) "product" protected _belongs_to => array(4) ( "section" => array(3) ( "foreign_key" => string(10) "section_id" "model" => string(7) "Section" "required" => bool TRUE ) "gift" => array(3) ( "foreign_key" => string(7) "gift_id" "model" => string(4) "Gift" "required" => bool TRUE ) "brand" => array(3) ( "foreign_key" => string(8) "brand_id" "model" => string(5) "Brand" "required" => bool TRUE ) "category" => array(3) ( "foreign_key" => string(11) "category_id" "model" => string(8) "Category" "required" => bool TRUE ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-product:edit?id=${id}" "external_url" => string(77) "site-product:index?product=${url}&category=${category.url}&article=${article}" ) "two_year" => string(4) "bool" "edit" => array(6) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(27) "admin-product:edit?id=${id}" "title" => string(26) "<i class="fa fa-edit"></i>" "color" => string(5) "green" "alternative" => string(26) "Редактировать" ) "delete" => array(7) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(29) "admin-product:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "alternative" => string(14) "Удалить" "color" => string(3) "red" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(2) "id" "order_direction" => string(4) "DESC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(63) ( "id" => string(7) "1336300" "name" => string(86) "Автомобильные видеорегистраторы Roadgid X9 Gibrid GT 2CH" "url" => string(24) "x9-gibrid-gt-2ch_roadgid" "md5_url" => string(32) "9cdc124570fc9b6871693559f362b4bd" "top" => string(1) "0" "important" => string(1) "0" "main_image" => string(59) "/files/product/1336300/c72ada837d0922e7082eeda346f032fa.jpg" "more_images" => string(331) "["\/files\/product\/1336300\/9360e9b5df9028b524343d068a3d5d2f.jpg","\/files\/product\/1336300\/24bcd283a93cd1bf7c1167ae25ae466e. …" "s_title" => string(142) "Купить Автомобильные видеорегистраторы Roadgid X9 Gibrid GT 2CH в Минске по низкой цене" "s_description" => string(222) "Лучшие цены на X9 Gibrid GT 2CH и все товары Roadgid в магазине 1teh.by. Бесплатная доставка, отзывы на Автомобильные видеорегис …" "s_keywords" => string(86) "Автомобильные видеорегистраторы,Roadgid,X9 Gibrid GT 2CH" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(9208) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Общая информация</td></tr><tr class="qugroup_em …" "short_content" => string(101) "основная камера: 2 Мп 170°, видео 1920x1080, GPS, G-сенсор, экран 3"" "active" => string(1) "1" "section_id" => string(1) "5" "price" => string(6) "838.93" "new_price" => string(6) "798.98" "discount" => NULL "created_at" => string(19) "2025-05-31 16:31:46" "article" => string(16) "X9 Gibrid GT 2CH" "unique_code" => string(7) "1336300" "original" => string(51) "http://1teh.by/files/products/img_3865541_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(4) "3747" "updated_at" => NULL "category_id" => string(2) "51" "garanty" => string(5) "12.00" "importer" => string(122) "ТПЧУП «Свет телеком трейд» 220095 г. Минск ул. Якубова, 82, I этаж, офис 11" "country_made" => string(0) "" "manufacturer" => string(0) "" "service" => string(0) "" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "0" "free_delivery" => string(1) "0" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(295) "["https:\/\/api.zoomos.by\/img\/item\/2253946\/0","https:\/\/api.zoomos.by\/img\/item\/2253946\/1","https:\/\/api.zoomos.by\/img …" "zoomos_filters" => NULL "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => string(13) "1748583427000" ) protected _changed => array(0) protected _original_values => array(63) ( "id" => string(7) "1336300" "name" => string(86) "Автомобильные видеорегистраторы Roadgid X9 Gibrid GT 2CH" "url" => string(24) "x9-gibrid-gt-2ch_roadgid" "md5_url" => string(32) "9cdc124570fc9b6871693559f362b4bd" "top" => string(1) "0" "important" => string(1) "0" "main_image" => string(59) "/files/product/1336300/c72ada837d0922e7082eeda346f032fa.jpg" "more_images" => string(331) "["\/files\/product\/1336300\/9360e9b5df9028b524343d068a3d5d2f.jpg","\/files\/product\/1336300\/24bcd283a93cd1bf7c1167ae25ae466e. …" "s_title" => string(142) "Купить Автомобильные видеорегистраторы Roadgid X9 Gibrid GT 2CH в Минске по низкой цене" "s_description" => string(222) "Лучшие цены на X9 Gibrid GT 2CH и все товары Roadgid в магазине 1teh.by. Бесплатная доставка, отзывы на Автомобильные видеорегис …" "s_keywords" => string(86) "Автомобильные видеорегистраторы,Roadgid,X9 Gibrid GT 2CH" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(9208) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Общая информация</td></tr><tr class="qugroup_em …" "short_content" => string(101) "основная камера: 2 Мп 170°, видео 1920x1080, GPS, G-сенсор, экран 3"" "active" => string(1) "1" "section_id" => string(1) "5" "price" => string(6) "838.93" "new_price" => string(6) "798.98" "discount" => NULL "created_at" => string(19) "2025-05-31 16:31:46" "article" => string(16) "X9 Gibrid GT 2CH" "unique_code" => string(7) "1336300" "original" => string(51) "http://1teh.by/files/products/img_3865541_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(4) "3747" "updated_at" => NULL "category_id" => string(2) "51" "garanty" => string(5) "12.00" "importer" => string(122) "ТПЧУП «Свет телеком трейд» 220095 г. Минск ул. Якубова, 82, I этаж, офис 11" "country_made" => string(0) "" "manufacturer" => string(0) "" "service" => string(0) "" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "0" "free_delivery" => string(1) "0" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(295) "["https:\/\/api.zoomos.by\/img\/item\/2253946\/0","https:\/\/api.zoomos.by\/img\/item\/2253946\/1","https:\/\/api.zoomos.by\/img …" "zoomos_filters" => NULL "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => string(13) "1748583427000" ) protected _related => array(1) ( "section" => object Model_Section(40)
9 => object Model_Product(40){ protected _table_name => string(8) "sections" protected _has_many => array(1) ( "product" => array(4) ( "foreign_key" => string(10) "section_id" "through" => NULL "model" => string(7) "Product" "far_key" => string(10) "product_id" ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-section:edit?id=${id}" "external_url" => string(35) "site-section:index?url=${url}&page=" ) "active" => string(4) "bool" "position" => string(8) "position" "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(29) "admin-section:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(8) "position" "order_direction" => string(3) "ASC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(1) "5" "name" => string(8) "Авто" "url" => string(4) "avto" "md5_url" => string(32) "d616a0b2d0d9ebed26e4e3436e19f42c" "active" => string(1) "1" "s_title" => string(112) "Автотовары и аксессуары. Большой каталог с лучшей ценой - 1teh.by" "s_description" => string(294) "Большой выбор автотоваров и аксессуаров в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бонусы …" "s_keywords" => string(0) "" "description" => string(0) "" "position" => NULL "h1" => string(0) "" "updated_at" => string(19) "2025-05-31 17:01:39" "mobile_image" => string(0) "" "main_section_image" => string(0) "" "on_main" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(1) "5" "name" => string(8) "Авто" "url" => string(4) "avto" "md5_url" => string(32) "d616a0b2d0d9ebed26e4e3436e19f42c" "active" => string(1) "1" "s_title" => string(112) "Автотовары и аксессуары. Большой каталог с лучшей ценой - 1teh.by" "s_description" => string(294) "Большой выбор автотоваров и аксессуаров в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бонусы …" "s_keywords" => string(0) "" "description" => string(0) "" "position" => NULL "h1" => string(0) "" "updated_at" => string(19) "2025-05-31 17:01:39" "mobile_image" => string(0) "" "main_section_image" => string(0) "" "on_main" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "section" protected _object_plural => string(8) "sections" protected _table_columns => array(15) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(2) "50" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "position" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "position" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "h1" => array(12) ( "type" => string(6) "string" "column_name" => string(2) "h1" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "comment" => string(0) "" "extra" => string(27) "on update CURRENT_TIMESTAMP" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "mobile_image" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "mobile_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_section_image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(18) "main_section_image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "on_main" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "on_main" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "5" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "product" protected _object_plural => string(8) "products" protected _table_columns => array(63) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "256" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "top" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "top" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "important" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "important" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_image" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "main_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "more_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "more_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "comments_enabled" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "comments_enabled" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "create_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "create_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "update_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "update_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(10) "4294967295" "column_name" => string(7) "content" "column_default" => NULL "data_type" => string(8) "longtext" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "short_content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "short_content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "section_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "section_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "new_price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "new_price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 20 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "discount" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "discount" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "created_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "created_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "article" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "article" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 23 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "unique_code" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "unique_code" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "original" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "original" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 25 "character_maximum_length" => string(3) "512" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "empty" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "empty" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 26 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "to_upload" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "to_upload" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 27 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "reviews" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "reviews" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 28 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "brand_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(8) "brand_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 29 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 30 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 31 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "garanty" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(7) "garanty" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 32 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "importer" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "importer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 33 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "country_made" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "country_made" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 34 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "manufacturer" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "manufacturer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 35 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "service" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "service" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 36 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 37 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gift_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "gift_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 38 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "delivery" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "delivery" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 39 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rating" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "rating" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 40 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "fixed_price" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "fixed_price" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 41 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "popular" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "popular" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 42 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "expedient_on" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(12) "expedient_on" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 43 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "yandex_market_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(16) "yandex_market_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 44 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "no_percent" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "no_percent" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 45 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "free_delivery" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(13) "free_delivery" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 46 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "product_day" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "product_day" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 47 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pok" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "pok" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 48 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "halva" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "halva" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 49 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instructions" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(12) "instructions" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 50 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_hits" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "is_hits" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 51 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "no_percent_force" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "no_percent_force" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 52 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "narod" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(5) "narod" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 53 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "two_year" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "two_year" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 54 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "hit" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(3) "hit" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 55 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "zakaz" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(5) "zakaz" "column_default" => NULL "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 56 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "zoomos_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 57 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_filters" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(14) "zoomos_filters" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 58 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_corrupt" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(10) "is_corrupt" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 59 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "prepared" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "prepared" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 60 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_fixed" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "is_fixed" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 61 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ym_disabled" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(11) "ym_disabled" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 62 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_update_time" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(20) "18446744073709551615" "column_name" => string(18) "zoomos_update_time" "column_default" => NULL "data_type" => string(15) "bigint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 63 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(7) "1336300" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "section" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "product" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(7) "product" protected _belongs_to => array(4) ( "section" => array(3) ( "foreign_key" => string(10) "section_id" "model" => string(7) "Section" "required" => bool TRUE ) "gift" => array(3) ( "foreign_key" => string(7) "gift_id" "model" => string(4) "Gift" "required" => bool TRUE ) "brand" => array(3) ( "foreign_key" => string(8) "brand_id" "model" => string(5) "Brand" "required" => bool TRUE ) "category" => array(3) ( "foreign_key" => string(11) "category_id" "model" => string(8) "Category" "required" => bool TRUE ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-product:edit?id=${id}" "external_url" => string(77) "site-product:index?product=${url}&category=${category.url}&article=${article}" ) "two_year" => string(4) "bool" "edit" => array(6) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(27) "admin-product:edit?id=${id}" "title" => string(26) "<i class="fa fa-edit"></i>" "color" => string(5) "green" "alternative" => string(26) "Редактировать" ) "delete" => array(7) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(29) "admin-product:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "alternative" => string(14) "Удалить" "color" => string(3) "red" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(2) "id" "order_direction" => string(4) "DESC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(63) ( "id" => string(7) "1357128" "name" => string(79) "Радиоуправляемые автомодели Udirc UD1001 (синий)" "url" => string(18) "ud1001-siniy_udirc" "md5_url" => string(32) "c0ae0faaa437e60fc624831294ae0446" "top" => string(1) "0" "important" => string(1) "0" "main_image" => string(59) "/files/product/1357128/a371ed842ba4991e7dfe835bfc3fa2d6.jpg" "more_images" => NULL "s_title" => string(135) "Купить Радиоуправляемые автомодели Udirc UD1001 (синий) в Минске по низкой цене" "s_description" => string(215) "Лучшие цены на UD1001 (синий) и все товары Udirc в магазине 1teh.by. Бесплатная доставка, отзывы на Радиоуправляемые автомодели" "s_keywords" => string(79) "Радиоуправляемые автомодели,Udirc,UD1001 (синий)" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(3588) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Общая информация</td></tr><tr class="qugroup_em …" "short_content" => string(157) "автомодель, монстр-трак, масштаб: 1:10, электрический двигатель, 2.4 ГГц, 4WD, дальность: 100 м" "active" => string(1) "1" "section_id" => string(2) "10" "price" => string(7) "1767.00" "new_price" => string(7) "1767.00" "discount" => NULL "created_at" => string(19) "2025-05-31 16:31:47" "article" => string(19) "UD1001 (синий)" "unique_code" => string(7) "1357128" "original" => string(51) "http://1teh.by/files/products/img_4274722_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(4) "4220" "updated_at" => NULL "category_id" => string(2) "73" "garanty" => string(5) "12.00" "importer" => string(0) "" "country_made" => string(0) "" "manufacturer" => string(0) "" "service" => string(0) "" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "1" "free_delivery" => string(1) "1" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(50) "["https:\/\/api.zoomos.by\/img\/item\/2399540\/0"]" "zoomos_filters" => NULL "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => string(13) "1748583459000" ) protected _changed => array(0) protected _original_values => array(63) ( "id" => string(7) "1357128" "name" => string(79) "Радиоуправляемые автомодели Udirc UD1001 (синий)" "url" => string(18) "ud1001-siniy_udirc" "md5_url" => string(32) "c0ae0faaa437e60fc624831294ae0446" "top" => string(1) "0" "important" => string(1) "0" "main_image" => string(59) "/files/product/1357128/a371ed842ba4991e7dfe835bfc3fa2d6.jpg" "more_images" => NULL "s_title" => string(135) "Купить Радиоуправляемые автомодели Udirc UD1001 (синий) в Минске по низкой цене" "s_description" => string(215) "Лучшие цены на UD1001 (синий) и все товары Udirc в магазине 1teh.by. Бесплатная доставка, отзывы на Радиоуправляемые автомодели" "s_keywords" => string(79) "Радиоуправляемые автомодели,Udirc,UD1001 (синий)" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(3588) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Общая информация</td></tr><tr class="qugroup_em …" "short_content" => string(157) "автомодель, монстр-трак, масштаб: 1:10, электрический двигатель, 2.4 ГГц, 4WD, дальность: 100 м" "active" => string(1) "1" "section_id" => string(2) "10" "price" => string(7) "1767.00" "new_price" => string(7) "1767.00" "discount" => NULL "created_at" => string(19) "2025-05-31 16:31:47" "article" => string(19) "UD1001 (синий)" "unique_code" => string(7) "1357128" "original" => string(51) "http://1teh.by/files/products/img_4274722_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(4) "4220" "updated_at" => NULL "category_id" => string(2) "73" "garanty" => string(5) "12.00" "importer" => string(0) "" "country_made" => string(0) "" "manufacturer" => string(0) "" "service" => string(0) "" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "1" "free_delivery" => string(1) "1" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(50) "["https:\/\/api.zoomos.by\/img\/item\/2399540\/0"]" "zoomos_filters" => NULL "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => string(13) "1748583459000" ) protected _related => array(1) ( "section" => object Model_Section(40)
10 => object Model_Product(40){ protected _table_name => string(8) "sections" protected _has_many => array(1) ( "product" => array(4) ( "foreign_key" => string(10) "section_id" "through" => NULL "model" => string(7) "Product" "far_key" => string(10) "product_id" ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-section:edit?id=${id}" "external_url" => string(35) "site-section:index?url=${url}&page=" ) "active" => string(4) "bool" "position" => string(8) "position" "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(29) "admin-section:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(8) "position" "order_direction" => string(3) "ASC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(2) "10" "name" => string(21) "Детский мир" "url" => string(11) "detskiy-mir" "md5_url" => string(32) "5432c4125a8674c6a4cfb8f975f87708" "active" => string(1) "1" "s_title" => string(115) "Каталог товаров для детей. Большой каталог с лучшей ценой - 1teh.by" "s_description" => string(275) "Большой выбор детских товаров в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бонусы и скидки. …" "s_keywords" => string(0) "" "description" => string(0) "" "position" => NULL "h1" => string(0) "" "updated_at" => string(19) "2025-05-31 17:01:39" "mobile_image" => string(0) "" "main_section_image" => string(0) "" "on_main" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(2) "10" "name" => string(21) "Детский мир" "url" => string(11) "detskiy-mir" "md5_url" => string(32) "5432c4125a8674c6a4cfb8f975f87708" "active" => string(1) "1" "s_title" => string(115) "Каталог товаров для детей. Большой каталог с лучшей ценой - 1teh.by" "s_description" => string(275) "Большой выбор детских товаров в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бонусы и скидки. …" "s_keywords" => string(0) "" "description" => string(0) "" "position" => NULL "h1" => string(0) "" "updated_at" => string(19) "2025-05-31 17:01:39" "mobile_image" => string(0) "" "main_section_image" => string(0) "" "on_main" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "section" protected _object_plural => string(8) "sections" protected _table_columns => array(15) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(2) "50" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "position" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "position" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "h1" => array(12) ( "type" => string(6) "string" "column_name" => string(2) "h1" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "comment" => string(0) "" "extra" => string(27) "on update CURRENT_TIMESTAMP" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "mobile_image" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "mobile_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_section_image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(18) "main_section_image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "on_main" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "on_main" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(2) "10" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "product" protected _object_plural => string(8) "products" protected _table_columns => array(63) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "256" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "top" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "top" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "important" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "important" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_image" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "main_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "more_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "more_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "comments_enabled" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "comments_enabled" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "create_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "create_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "update_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "update_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(10) "4294967295" "column_name" => string(7) "content" "column_default" => NULL "data_type" => string(8) "longtext" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "short_content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "short_content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "section_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "section_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "new_price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "new_price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 20 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "discount" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "discount" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "created_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "created_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "article" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "article" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 23 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "unique_code" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "unique_code" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "original" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "original" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 25 "character_maximum_length" => string(3) "512" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "empty" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "empty" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 26 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "to_upload" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "to_upload" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 27 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "reviews" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "reviews" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 28 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "brand_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(8) "brand_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 29 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 30 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 31 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "garanty" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(7) "garanty" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 32 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "importer" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "importer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 33 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "country_made" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "country_made" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 34 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "manufacturer" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "manufacturer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 35 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "service" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "service" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 36 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 37 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gift_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "gift_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 38 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "delivery" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "delivery" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 39 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rating" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "rating" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 40 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "fixed_price" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "fixed_price" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 41 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "popular" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "popular" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 42 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "expedient_on" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(12) "expedient_on" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 43 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "yandex_market_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(16) "yandex_market_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 44 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "no_percent" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "no_percent" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 45 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "free_delivery" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(13) "free_delivery" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 46 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "product_day" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "product_day" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 47 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pok" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "pok" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 48 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "halva" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "halva" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 49 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instructions" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(12) "instructions" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 50 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_hits" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "is_hits" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 51 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "no_percent_force" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "no_percent_force" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 52 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "narod" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(5) "narod" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 53 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "two_year" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "two_year" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 54 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "hit" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(3) "hit" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 55 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "zakaz" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(5) "zakaz" "column_default" => NULL "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 56 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "zoomos_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 57 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_filters" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(14) "zoomos_filters" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 58 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_corrupt" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(10) "is_corrupt" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 59 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "prepared" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "prepared" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 60 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_fixed" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "is_fixed" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 61 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ym_disabled" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(11) "ym_disabled" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 62 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_update_time" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(20) "18446744073709551615" "column_name" => string(18) "zoomos_update_time" "column_default" => NULL "data_type" => string(15) "bigint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 63 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(7) "1357128" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "section" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "product" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(7) "product" protected _belongs_to => array(4) ( "section" => array(3) ( "foreign_key" => string(10) "section_id" "model" => string(7) "Section" "required" => bool TRUE ) "gift" => array(3) ( "foreign_key" => string(7) "gift_id" "model" => string(4) "Gift" "required" => bool TRUE ) "brand" => array(3) ( "foreign_key" => string(8) "brand_id" "model" => string(5) "Brand" "required" => bool TRUE ) "category" => array(3) ( "foreign_key" => string(11) "category_id" "model" => string(8) "Category" "required" => bool TRUE ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-product:edit?id=${id}" "external_url" => string(77) "site-product:index?product=${url}&category=${category.url}&article=${article}" ) "two_year" => string(4) "bool" "edit" => array(6) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(27) "admin-product:edit?id=${id}" "title" => string(26) "<i class="fa fa-edit"></i>" "color" => string(5) "green" "alternative" => string(26) "Редактировать" ) "delete" => array(7) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(29) "admin-product:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "alternative" => string(14) "Удалить" "color" => string(3) "red" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(2) "id" "order_direction" => string(4) "DESC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(63) ( "id" => string(7) "1501836" "name" => string(77) "Мультимедиа акустика Edifier R1380T (коричневый)" "url" => string(27) "r1380t-korichnevyiy_edifier" "md5_url" => string(32) "eeb41828b883d93e6cc4403961402152" "top" => string(1) "0" "important" => string(1) "0" "main_image" => string(59) "/files/product/1501836/b80a032148bcb816c2fcaea923b2316c.jpg" "more_images" => string(991) "["\/files\/product\/1501836\/17a14488ba3a820e6249911d91302045.jpg","\/files\/product\/1501836\/868f8c71fd3ba23ae662be60da911a62. …" "s_title" => string(133) "Купить Мультимедиа акустика Edifier R1380T (коричневый) в Минске по низкой цене" "s_description" => string(213) "Лучшие цены на R1380T (коричневый) и все товары Edifier в магазине 1teh.by. Бесплатная доставка, отзывы на Мультимедиа акустика" "s_keywords" => string(77) "Мультимедиа акустика,Edifier,R1380T (коричневый)" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(6065) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Основные</td></tr><tr class="qurow2"><td class= …" "short_content" => string(118) "настольная/полочная, 2.0, мощность (RMS) 42 Вт, 55-20000 Гц, МДФ 5.0, пульт ДУ" "active" => string(1) "1" "section_id" => string(1) "3" "price" => string(6) "411.44" "new_price" => string(6) "391.85" "discount" => NULL "created_at" => string(19) "2025-05-31 16:31:40" "article" => string(29) "R1380T (коричневый)" "unique_code" => string(7) "1501836" "original" => string(51) "http://1teh.by/files/products/img_2752504_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(3) "178" "updated_at" => NULL "category_id" => string(1) "5" "garanty" => string(5) "12.00" "importer" => string(129) "ООО «ТрайдексБелПлюс» Минская обл. Минский р-н Новодворский с/с 33/1-8 к.64" "country_made" => string(0) "" "manufacturer" => string(114) "ООО «Эдифер Сервис» Россия 119180 Москва Полянка Б. ул. д. 28 корп. 1." "service" => string(85) "ООО «БТМ Трейдинг» ул. Даумана 23 оф. 63 8 (029) 993-73-35" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "0" "free_delivery" => string(1) "0" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(791) "["https:\/\/api.zoomos.by\/img\/item\/2128467\/0","https:\/\/api.zoomos.by\/img\/item\/2128467\/1","https:\/\/api.zoomos.by\/img …" "zoomos_filters" => string(8105) "[{"id":144,"name":"\u0422\u0438\u043f","type":"enum","unit":"","orderPriority":10,"values":[{"id":144,"name":"\u043d\u0430\u0441 …" "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => string(13) "1748583249000" ) protected _changed => array(0) protected _original_values => array(63) ( "id" => string(7) "1501836" "name" => string(77) "Мультимедиа акустика Edifier R1380T (коричневый)" "url" => string(27) "r1380t-korichnevyiy_edifier" "md5_url" => string(32) "eeb41828b883d93e6cc4403961402152" "top" => string(1) "0" "important" => string(1) "0" "main_image" => string(59) "/files/product/1501836/b80a032148bcb816c2fcaea923b2316c.jpg" "more_images" => string(991) "["\/files\/product\/1501836\/17a14488ba3a820e6249911d91302045.jpg","\/files\/product\/1501836\/868f8c71fd3ba23ae662be60da911a62. …" "s_title" => string(133) "Купить Мультимедиа акустика Edifier R1380T (коричневый) в Минске по низкой цене" "s_description" => string(213) "Лучшие цены на R1380T (коричневый) и все товары Edifier в магазине 1teh.by. Бесплатная доставка, отзывы на Мультимедиа акустика" "s_keywords" => string(77) "Мультимедиа акустика,Edifier,R1380T (коричневый)" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(6065) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Основные</td></tr><tr class="qurow2"><td class= …" "short_content" => string(118) "настольная/полочная, 2.0, мощность (RMS) 42 Вт, 55-20000 Гц, МДФ 5.0, пульт ДУ" "active" => string(1) "1" "section_id" => string(1) "3" "price" => string(6) "411.44" "new_price" => string(6) "391.85" "discount" => NULL "created_at" => string(19) "2025-05-31 16:31:40" "article" => string(29) "R1380T (коричневый)" "unique_code" => string(7) "1501836" "original" => string(51) "http://1teh.by/files/products/img_2752504_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(3) "178" "updated_at" => NULL "category_id" => string(1) "5" "garanty" => string(5) "12.00" "importer" => string(129) "ООО «ТрайдексБелПлюс» Минская обл. Минский р-н Новодворский с/с 33/1-8 к.64" "country_made" => string(0) "" "manufacturer" => string(114) "ООО «Эдифер Сервис» Россия 119180 Москва Полянка Б. ул. д. 28 корп. 1." "service" => string(85) "ООО «БТМ Трейдинг» ул. Даумана 23 оф. 63 8 (029) 993-73-35" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "0" "free_delivery" => string(1) "0" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(791) "["https:\/\/api.zoomos.by\/img\/item\/2128467\/0","https:\/\/api.zoomos.by\/img\/item\/2128467\/1","https:\/\/api.zoomos.by\/img …" "zoomos_filters" => string(8105) "[{"id":144,"name":"\u0422\u0438\u043f","type":"enum","unit":"","orderPriority":10,"values":[{"id":144,"name":"\u043d\u0430\u0441 …" "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => string(13) "1748583249000" ) protected _related => array(1) ( "section" => object Model_Section(40)
11 => object Model_Product(40){ protected _table_name => string(8) "sections" protected _has_many => array(1) ( "product" => array(4) ( "foreign_key" => string(10) "section_id" "through" => NULL "model" => string(7) "Product" "far_key" => string(10) "product_id" ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-section:edit?id=${id}" "external_url" => string(35) "site-section:index?url=${url}&page=" ) "active" => string(4) "bool" "position" => string(8) "position" "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(29) "admin-section:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(8) "position" "order_direction" => string(3) "ASC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(1) "3" "name" => string(22) "Электроника" "url" => string(11) "elektronika" "md5_url" => string(32) "76b94353c5e008664be91220b3bcffb8" "active" => string(1) "1" "s_title" => string(94) "Электроника. Большой каталог электроприборов - 1teh.by" "s_description" => string(276) "Большой выбор электроприборов в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бонусы и скидки. …" "s_keywords" => string(0) "" "description" => string(0) "" "position" => NULL "h1" => string(0) "" "updated_at" => string(19) "2025-05-31 17:01:39" "mobile_image" => string(0) "" "main_section_image" => string(0) "" "on_main" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(1) "3" "name" => string(22) "Электроника" "url" => string(11) "elektronika" "md5_url" => string(32) "76b94353c5e008664be91220b3bcffb8" "active" => string(1) "1" "s_title" => string(94) "Электроника. Большой каталог электроприборов - 1teh.by" "s_description" => string(276) "Большой выбор электроприборов в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бонусы и скидки. …" "s_keywords" => string(0) "" "description" => string(0) "" "position" => NULL "h1" => string(0) "" "updated_at" => string(19) "2025-05-31 17:01:39" "mobile_image" => string(0) "" "main_section_image" => string(0) "" "on_main" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "section" protected _object_plural => string(8) "sections" protected _table_columns => array(15) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(2) "50" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "position" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "position" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "h1" => array(12) ( "type" => string(6) "string" "column_name" => string(2) "h1" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "comment" => string(0) "" "extra" => string(27) "on update CURRENT_TIMESTAMP" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "mobile_image" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "mobile_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_section_image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(18) "main_section_image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "on_main" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "on_main" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "3" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "product" protected _object_plural => string(8) "products" protected _table_columns => array(63) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "256" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "top" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "top" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "important" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "important" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_image" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "main_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "more_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "more_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "comments_enabled" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "comments_enabled" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "create_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "create_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "update_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "update_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(10) "4294967295" "column_name" => string(7) "content" "column_default" => NULL "data_type" => string(8) "longtext" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "short_content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "short_content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "section_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "section_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "new_price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "new_price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 20 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "discount" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "discount" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "created_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "created_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "article" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "article" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 23 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "unique_code" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "unique_code" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "original" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "original" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 25 "character_maximum_length" => string(3) "512" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "empty" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "empty" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 26 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "to_upload" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "to_upload" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 27 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "reviews" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "reviews" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 28 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "brand_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(8) "brand_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 29 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 30 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 31 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "garanty" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(7) "garanty" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 32 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "importer" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "importer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 33 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "country_made" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "country_made" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 34 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "manufacturer" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "manufacturer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 35 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "service" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "service" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 36 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 37 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gift_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "gift_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 38 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "delivery" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "delivery" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 39 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rating" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "rating" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 40 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "fixed_price" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "fixed_price" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 41 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "popular" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "popular" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 42 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "expedient_on" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(12) "expedient_on" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 43 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "yandex_market_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(16) "yandex_market_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 44 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "no_percent" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "no_percent" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 45 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "free_delivery" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(13) "free_delivery" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 46 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "product_day" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "product_day" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 47 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pok" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "pok" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 48 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "halva" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "halva" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 49 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instructions" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(12) "instructions" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 50 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_hits" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "is_hits" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 51 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "no_percent_force" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "no_percent_force" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 52 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "narod" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(5) "narod" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 53 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "two_year" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "two_year" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 54 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "hit" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(3) "hit" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 55 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "zakaz" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(5) "zakaz" "column_default" => NULL "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 56 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "zoomos_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 57 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_filters" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(14) "zoomos_filters" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 58 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_corrupt" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(10) "is_corrupt" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 59 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "prepared" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "prepared" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 60 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_fixed" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "is_fixed" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 61 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ym_disabled" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(11) "ym_disabled" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 62 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_update_time" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(20) "18446744073709551615" "column_name" => string(18) "zoomos_update_time" "column_default" => NULL "data_type" => string(15) "bigint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 63 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(7) "1501836" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "section" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "product" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(7) "product" protected _belongs_to => array(4) ( "section" => array(3) ( "foreign_key" => string(10) "section_id" "model" => string(7) "Section" "required" => bool TRUE ) "gift" => array(3) ( "foreign_key" => string(7) "gift_id" "model" => string(4) "Gift" "required" => bool TRUE ) "brand" => array(3) ( "foreign_key" => string(8) "brand_id" "model" => string(5) "Brand" "required" => bool TRUE ) "category" => array(3) ( "foreign_key" => string(11) "category_id" "model" => string(8) "Category" "required" => bool TRUE ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-product:edit?id=${id}" "external_url" => string(77) "site-product:index?product=${url}&category=${category.url}&article=${article}" ) "two_year" => string(4) "bool" "edit" => array(6) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(27) "admin-product:edit?id=${id}" "title" => string(26) "<i class="fa fa-edit"></i>" "color" => string(5) "green" "alternative" => string(26) "Редактировать" ) "delete" => array(7) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(29) "admin-product:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "alternative" => string(14) "Удалить" "color" => string(3) "red" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(2) "id" "order_direction" => string(4) "DESC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(63) ( "id" => string(7) "1574808" "name" => string(107) "Системы автоматического полива, распылители Bradas White Line WL-Z17" "url" => string(24) "white-line-wl-z17_bradas" "md5_url" => string(32) "4efd7b2a84e03bf242f8d6af20062d9e" "top" => string(1) "0" "important" => string(1) "0" "main_image" => NULL "more_images" => NULL "s_title" => string(163) "Купить Системы автоматического полива, распылители Bradas White Line WL-Z17 в Минске по низкой цене" "s_description" => string(243) "Лучшие цены на White Line WL-Z17 и все товары Bradas в магазине 1teh.by. Бесплатная доставка, отзывы на Системы автоматического …" "s_keywords" => string(107) "Системы автоматического полива, распылители,Bradas,White Line WL-Z17" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(1761) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Общая информация</td></tr><tr class="qugroup_em …" "short_content" => string(102) "распылитель осциллирующий, пластик, площадь полива 366 м2" "active" => string(1) "1" "section_id" => string(1) "7" "price" => string(6) "146.60" "new_price" => string(6) "146.60" "discount" => NULL "created_at" => string(19) "2025-05-31 16:32:25" "article" => string(17) "White Line WL-Z17" "unique_code" => string(7) "1574808" "original" => string(51) "http://1teh.by/files/products/img_1561548_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(4) "3323" "updated_at" => NULL "category_id" => string(3) "512" "garanty" => string(4) "5.60" "importer" => string(100) "Акватехнологии ООО 220070, г. Минск , ул. Олега Кошевого д. 5" "country_made" => string(0) "" "manufacturer" => string(0) "" "service" => string(0) "" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "1" "free_delivery" => string(1) "1" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => NULL "zoomos_filters" => NULL "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => NULL ) protected _changed => array(0) protected _original_values => array(63) ( "id" => string(7) "1574808" "name" => string(107) "Системы автоматического полива, распылители Bradas White Line WL-Z17" "url" => string(24) "white-line-wl-z17_bradas" "md5_url" => string(32) "4efd7b2a84e03bf242f8d6af20062d9e" "top" => string(1) "0" "important" => string(1) "0" "main_image" => NULL "more_images" => NULL "s_title" => string(163) "Купить Системы автоматического полива, распылители Bradas White Line WL-Z17 в Минске по низкой цене" "s_description" => string(243) "Лучшие цены на White Line WL-Z17 и все товары Bradas в магазине 1teh.by. Бесплатная доставка, отзывы на Системы автоматического …" "s_keywords" => string(107) "Системы автоматического полива, распылители,Bradas,White Line WL-Z17" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(1761) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Общая информация</td></tr><tr class="qugroup_em …" "short_content" => string(102) "распылитель осциллирующий, пластик, площадь полива 366 м2" "active" => string(1) "1" "section_id" => string(1) "7" "price" => string(6) "146.60" "new_price" => string(6) "146.60" "discount" => NULL "created_at" => string(19) "2025-05-31 16:32:25" "article" => string(17) "White Line WL-Z17" "unique_code" => string(7) "1574808" "original" => string(51) "http://1teh.by/files/products/img_1561548_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(4) "3323" "updated_at" => NULL "category_id" => string(3) "512" "garanty" => string(4) "5.60" "importer" => string(100) "Акватехнологии ООО 220070, г. Минск , ул. Олега Кошевого д. 5" "country_made" => string(0) "" "manufacturer" => string(0) "" "service" => string(0) "" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "1" "free_delivery" => string(1) "1" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => NULL "zoomos_filters" => NULL "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => NULL ) protected _related => array(1) ( "section" => object Model_Section(40)
) "minMonth" => integer 4 "reviews_count" => integer 0 "brand" => object Model_Brand(40){ protected _table_name => string(8) "sections" protected _has_many => array(1) ( "product" => array(4) ( "foreign_key" => string(10) "section_id" "through" => NULL "model" => string(7) "Product" "far_key" => string(10) "product_id" ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-section:edit?id=${id}" "external_url" => string(35) "site-section:index?url=${url}&page=" ) "active" => string(4) "bool" "position" => string(8) "position" "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(29) "admin-section:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(8) "position" "order_direction" => string(3) "ASC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(1) "7" "name" => string(55) "Инструменты и Садовая техника" "url" => string(31) "instrumentyi-i-sadovaya-tehnika" "md5_url" => string(32) "3809a652761c6d794a3e58998d28f4fb" "active" => string(1) "1" "s_title" => string(123) "Инструменты и садовая техника. Большой каталог с лучшей ценой - 1teh.by" "s_description" => string(303) "Большой выбор инструментов и садовой техники в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бо …" "s_keywords" => string(0) "" "description" => string(0) "" "position" => NULL "h1" => string(0) "" "updated_at" => string(19) "2025-05-31 17:01:39" "mobile_image" => string(0) "" "main_section_image" => string(0) "" "on_main" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(1) "7" "name" => string(55) "Инструменты и Садовая техника" "url" => string(31) "instrumentyi-i-sadovaya-tehnika" "md5_url" => string(32) "3809a652761c6d794a3e58998d28f4fb" "active" => string(1) "1" "s_title" => string(123) "Инструменты и садовая техника. Большой каталог с лучшей ценой - 1teh.by" "s_description" => string(303) "Большой выбор инструментов и садовой техники в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бо …" "s_keywords" => string(0) "" "description" => string(0) "" "position" => NULL "h1" => string(0) "" "updated_at" => string(19) "2025-05-31 17:01:39" "mobile_image" => string(0) "" "main_section_image" => string(0) "" "on_main" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "section" protected _object_plural => string(8) "sections" protected _table_columns => array(15) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(2) "50" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "position" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "position" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "h1" => array(12) ( "type" => string(6) "string" "column_name" => string(2) "h1" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "comment" => string(0) "" "extra" => string(27) "on update CURRENT_TIMESTAMP" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "mobile_image" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "mobile_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_section_image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(18) "main_section_image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "on_main" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "on_main" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "7" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "product" protected _object_plural => string(8) "products" protected _table_columns => array(63) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "256" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "top" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "top" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "important" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "important" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_image" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "main_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "more_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "more_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "comments_enabled" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "comments_enabled" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "create_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "create_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "update_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "update_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(10) "4294967295" "column_name" => string(7) "content" "column_default" => NULL "data_type" => string(8) "longtext" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "short_content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "short_content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "section_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "section_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "new_price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "new_price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 20 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "discount" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "discount" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "created_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "created_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "article" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "article" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 23 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "unique_code" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "unique_code" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "original" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "original" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 25 "character_maximum_length" => string(3) "512" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "empty" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "empty" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 26 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "to_upload" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "to_upload" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 27 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "reviews" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "reviews" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 28 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "brand_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(8) "brand_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 29 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 30 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 31 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "garanty" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(7) "garanty" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 32 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "importer" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "importer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 33 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "country_made" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "country_made" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 34 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "manufacturer" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "manufacturer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 35 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "service" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "service" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 36 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 37 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gift_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "gift_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 38 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "delivery" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "delivery" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 39 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rating" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "rating" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 40 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "fixed_price" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "fixed_price" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 41 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "popular" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "popular" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 42 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "expedient_on" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(12) "expedient_on" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 43 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "yandex_market_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(16) "yandex_market_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 44 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "no_percent" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "no_percent" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 45 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "free_delivery" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(13) "free_delivery" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 46 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "product_day" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "product_day" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 47 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pok" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "pok" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 48 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "halva" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "halva" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 49 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instructions" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(12) "instructions" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 50 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_hits" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "is_hits" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 51 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "no_percent_force" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "no_percent_force" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 52 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "narod" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(5) "narod" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 53 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "two_year" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "two_year" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 54 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "hit" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(3) "hit" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 55 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "zakaz" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(5) "zakaz" "column_default" => NULL "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 56 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "zoomos_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 57 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_filters" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(14) "zoomos_filters" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 58 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_corrupt" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(10) "is_corrupt" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 59 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "prepared" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "prepared" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 60 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_fixed" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "is_fixed" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 61 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ym_disabled" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(11) "ym_disabled" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 62 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_update_time" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(20) "18446744073709551615" "column_name" => string(18) "zoomos_update_time" "column_default" => NULL "data_type" => string(15) "bigint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 63 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(7) "1574808" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "section" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "product" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(5) "brand" protected _has_many => array(2) ( "product" => array(4) ( "foreign_key" => string(8) "brand_id" "through" => string(13) "brand_product" "model" => string(7) "Product" "far_key" => string(10) "product_id" ) "category" => array(4) ( "foreign_key" => string(8) "brand_id" "through" => string(14) "brand_category" "model" => string(8) "Category" "far_key" => string(11) "category_id" ) ) protected _grid_columns => array(6) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(25) "admin-brand:edit?id=${id}" "external_url" => string(27) "site-brand:index?url=${url}" ) "active" => string(4) "bool" "on_main" => string(4) "bool" "position" => string(8) "position" "description" => array(3) ( "width" => string(3) "40%" "route_str" => string(25) "admin-brand:edit?id=${id}" "type" => string(4) "more" ) "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "color" => string(3) "red" "route_str" => string(27) "admin-brand:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _form_fields => array(0) protected _grid_options => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(14) ( "id" => string(4) "2209" "name" => string(8) "Hozelock" "russian" => NULL "s_title" => NULL "s_description" => NULL "s_keywords" => NULL "url" => string(8) "hozelock" "md5_url" => string(32) "4d2055281b5181de281b1bf6427130c7" "popular" => NULL "active" => string(1) "1" "position" => string(1) "0" "description" => NULL "main_image" => NULL "on_main" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(14) ( "id" => string(4) "2209" "name" => string(8) "Hozelock" "russian" => NULL "s_title" => NULL "s_description" => NULL "s_keywords" => NULL "url" => string(8) "hozelock" "md5_url" => string(32) "4d2055281b5181de281b1bf6427130c7" "popular" => NULL "active" => string(1) "1" "position" => string(1) "0" "description" => NULL "main_image" => NULL "on_main" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(5) "brand" protected _object_plural => string(6) "brands" protected _table_columns => array(14) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(2) "50" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "UNI" "privileges" => string(31) "select,insert,update,references" ) "russian" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "russian" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "popular" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "popular" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "position" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(8) "position" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_image" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "main_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "on_main" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(7) "on_main" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(4) "2209" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
"new_styles" => bool TRUE "months" => array(1) ( 0 => integer 4 ) "reviews_count_yandex" => integer 0 "category" => object Model_Category(40){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(5) "brand" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(10) "categories" protected _has_many => array(4) ( "children" => array(4) ( "foreign_key" => string(9) "parent_id" "through" => NULL "far_key" => string(8) "child_id" "model" => string(8) "Category" ) "services" => array(5) ( "foreign_key" => string(11) "category_id" "through" => string(19) "categories_services" "far_key" => string(10) "service_id" "model" => string(7) "Service" "required" => bool TRUE ) "brand" => array(4) ( "foreign_key" => string(11) "category_id" "through" => string(14) "brand_category" "far_key" => string(8) "brand_id" "model" => string(5) "Brand" ) "filters" => array(4) ( "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(9) "filter_id" "model" => string(6) "Filter" ) ) protected _belongs_to => array(2) ( "section" => array(2) ( "foreign_key" => string(10) "section_id" "model" => string(7) "Section" ) "parent" => array(2) ( "foreign_key" => string(9) "parent_id" "model" => string(8) "Category" ) ) protected _grid_columns => array(7) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(28) "admin-category:edit?id=${id}" "external_url" => string(71) "site-category:index?section=${section.url}&category=${url}&parent=${id}" ) "active" => string(4) "bool" "on_main" => string(4) "bool" "section_id" => array(4) ( "type" => string(5) "child" "field" => string(4) "name" "model" => string(7) "section" "external_url" => string(37) "site-section:index?url=${section.url}" ) "filters" => array(3) ( "type" => string(4) "link" "route_str" => string(31) "admin-filter:index?parent=${id}" "title" => string(18) "[${filters|count}]" ) "add_child" => array(6) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(30) "admin-category:create?id=${id}" "title" => string(32) "<i class="fa fa-arrow-down"></i>" "alternative" => string(39) "Добавить вложенность" "color" => string(4) "blue" ) "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(43) "admin-category:delete?id=${id}&parent=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(4) "name" "order_direction" => string(3) "ASC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(34) ( "id" => string(3) "512" "name" => string(82) "Системы автоматического полива, распылители" "rod_name" => string(0) "" "ed_chislo" => NULL "vin_name" => NULL "rod_name_many" => NULL "h1" => string(0) "" "s_title" => string(150) "Системы автоматического полива, распылители. Большой каталог с лучшей ценой - 1teh.by" "s_description" => string(302) "Большой выбор систем автоматического полива в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бон …" "s_keywords" => string(0) "" "url" => string(45) "sistemyi-avtomaticheskogo-poliva-raspyiliteli" "md5_url" => string(32) "adee60af978a06a08497762ecf262941" "popular" => NULL "active" => string(1) "1" "position" => string(1) "0" "description" => string(0) "" "section_id" => string(1) "7" "parent_id" => string(3) "263" "level" => string(1) "2" "image" => string(56) "/files/category/512/0933d668ae56c1bf231073f377b174d8.jpg" "created_at" => string(19) "2019-03-27 14:10:14" "updated_at" => string(19) "2022-07-12 17:10:09" "video" => string(0) "" "delivery" => string(2) "15" "new" => string(1) "0" "important" => string(1) "0" "sale" => string(1) "0" "icon" => string(0) "" "banner_url" => string(0) "" "banner" => string(0) "" "on_main" => string(1) "0" "mobile_image" => string(0) "" "main_category_image" => NULL "main_banner" => string(0) "" ) protected _changed => array(0) protected _original_values => array(34) ( "id" => string(3) "512" "name" => string(82) "Системы автоматического полива, распылители" "rod_name" => string(0) "" "ed_chislo" => NULL "vin_name" => NULL "rod_name_many" => NULL "h1" => string(0) "" "s_title" => string(150) "Системы автоматического полива, распылители. Большой каталог с лучшей ценой - 1teh.by" "s_description" => string(302) "Большой выбор систем автоматического полива в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бон …" "s_keywords" => string(0) "" "url" => string(45) "sistemyi-avtomaticheskogo-poliva-raspyiliteli" "md5_url" => string(32) "adee60af978a06a08497762ecf262941" "popular" => NULL "active" => string(1) "1" "position" => string(1) "0" "description" => string(0) "" "section_id" => string(1) "7" "parent_id" => string(3) "263" "level" => string(1) "2" "image" => string(56) "/files/category/512/0933d668ae56c1bf231073f377b174d8.jpg" "created_at" => string(19) "2019-03-27 14:10:14" "updated_at" => string(19) "2022-07-12 17:10:09" "video" => string(0) "" "delivery" => string(2) "15" "new" => string(1) "0" "important" => string(1) "0" "sale" => string(1) "0" "icon" => string(0) "" "banner_url" => string(0) "" "banner" => string(0) "" "on_main" => string(1) "0" "mobile_image" => string(0) "" "main_category_image" => NULL "main_banner" => string(0) "" ) protected _related => array(1) ( "parent" => object Model_Category(40)
"product" => object Model_Product(40){ protected _table_name => string(10) "categories" protected _has_many => array(4) ( "children" => array(4) ( "foreign_key" => string(9) "parent_id" "through" => NULL "far_key" => string(8) "child_id" "model" => string(8) "Category" ) "services" => array(5) ( "foreign_key" => string(11) "category_id" "through" => string(19) "categories_services" "far_key" => string(10) "service_id" "model" => string(7) "Service" "required" => bool TRUE ) "brand" => array(4) ( "foreign_key" => string(11) "category_id" "through" => string(14) "brand_category" "far_key" => string(8) "brand_id" "model" => string(5) "Brand" ) "filters" => array(4) ( "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(9) "filter_id" "model" => string(6) "Filter" ) ) protected _belongs_to => array(2) ( "section" => array(2) ( "foreign_key" => string(10) "section_id" "model" => string(7) "Section" ) "parent" => array(2) ( "foreign_key" => string(9) "parent_id" "model" => string(8) "Category" ) ) protected _grid_columns => array(7) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(28) "admin-category:edit?id=${id}" "external_url" => string(71) "site-category:index?section=${section.url}&category=${url}&parent=${id}" ) "active" => string(4) "bool" "on_main" => string(4) "bool" "section_id" => array(4) ( "type" => string(5) "child" "field" => string(4) "name" "model" => string(7) "section" "external_url" => string(37) "site-section:index?url=${section.url}" ) "filters" => array(3) ( "type" => string(4) "link" "route_str" => string(31) "admin-filter:index?parent=${id}" "title" => string(18) "[${filters|count}]" ) "add_child" => array(6) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(30) "admin-category:create?id=${id}" "title" => string(32) "<i class="fa fa-arrow-down"></i>" "alternative" => string(39) "Добавить вложенность" "color" => string(4) "blue" ) "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(43) "admin-category:delete?id=${id}&parent=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(4) "name" "order_direction" => string(3) "ASC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(34) ( "id" => string(3) "263" "name" => string(29) "Садовая техника" "rod_name" => string(29) "Садовую технику" "ed_chislo" => string(29) "Садовая техника" "vin_name" => string(29) "садовой техники" "rod_name_many" => string(29) "садовой техники" "h1" => string(0) "" "s_title" => string(29) "Садовая техника" "s_description" => string(0) "" "s_keywords" => string(0) "" "url" => string(16) "sadovaya-tehnika" "md5_url" => string(32) "8a26814903f77e87df0e8732f6f070f1" "popular" => string(1) "7" "active" => string(1) "1" "position" => string(1) "0" "description" => string(0) "" "section_id" => string(1) "7" "parent_id" => NULL "level" => string(1) "1" "image" => string(56) "/files/category/263/784bb205d734c3037093743b87aa29c7.png" "created_at" => string(19) "2015-07-16 16:34:48" "updated_at" => string(19) "2021-03-17 14:42:07" "video" => string(0) "" "delivery" => string(2) "11" "new" => string(1) "0" "important" => string(1) "0" "sale" => string(1) "0" "icon" => string(0) "" "banner_url" => string(0) "" "banner" => string(0) "" "on_main" => string(1) "1" "mobile_image" => string(0) "" "main_category_image" => string(31) "/files/category/main-svg/12.svg" "main_banner" => string(56) "/files/category/263/72728767255844bc659522ef8ccf6363.jpg" ) protected _changed => array(0) protected _original_values => array(34) ( "id" => string(3) "263" "name" => string(29) "Садовая техника" "rod_name" => string(29) "Садовую технику" "ed_chislo" => string(29) "Садовая техника" "vin_name" => string(29) "садовой техники" "rod_name_many" => string(29) "садовой техники" "h1" => string(0) "" "s_title" => string(29) "Садовая техника" "s_description" => string(0) "" "s_keywords" => string(0) "" "url" => string(16) "sadovaya-tehnika" "md5_url" => string(32) "8a26814903f77e87df0e8732f6f070f1" "popular" => string(1) "7" "active" => string(1) "1" "position" => string(1) "0" "description" => string(0) "" "section_id" => string(1) "7" "parent_id" => NULL "level" => string(1) "1" "image" => string(56) "/files/category/263/784bb205d734c3037093743b87aa29c7.png" "created_at" => string(19) "2015-07-16 16:34:48" "updated_at" => string(19) "2021-03-17 14:42:07" "video" => string(0) "" "delivery" => string(2) "11" "new" => string(1) "0" "important" => string(1) "0" "sale" => string(1) "0" "icon" => string(0) "" "banner_url" => string(0) "" "banner" => string(0) "" "on_main" => string(1) "1" "mobile_image" => string(0) "" "main_category_image" => string(31) "/files/category/main-svg/12.svg" "main_banner" => string(56) "/files/category/263/72728767255844bc659522ef8ccf6363.jpg" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "category" protected _object_plural => string(10) "categories" protected _table_columns => array(34) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "rod_name" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "rod_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ed_chislo" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "ed_chislo" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "vin_name" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "vin_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rod_name_many" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "rod_name_many" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "h1" => array(12) ( "type" => string(6) "string" "column_name" => string(2) "h1" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "popular" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "popular" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "position" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(8) "position" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 15 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "section_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "section_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 17 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "parent_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(9) "parent_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 18 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "level" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(5) "level" "column_default" => string(1) "1" "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 19 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 20 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "created_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "created_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 21 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 22 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 23 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "delivery" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "delivery" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 24 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "new" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(3) "new" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 25 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "important" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(9) "important" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 26 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sale" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(4) "sale" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 27 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "icon" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "icon" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 28 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "banner_url" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "banner_url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 29 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "banner" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "banner" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 30 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "on_main" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(7) "on_main" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 31 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "mobile_image" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "mobile_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 32 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_category_image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(19) "main_category_image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 33 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_banner" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "main_banner" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 34 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "263" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "category" protected _object_plural => string(10) "categories" protected _table_columns => array(34) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "rod_name" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "rod_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ed_chislo" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "ed_chislo" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "vin_name" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "vin_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rod_name_many" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "rod_name_many" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "h1" => array(12) ( "type" => string(6) "string" "column_name" => string(2) "h1" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "popular" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "popular" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "position" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(8) "position" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 15 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "section_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "section_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 17 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "parent_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(9) "parent_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 18 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "level" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(5) "level" "column_default" => string(1) "1" "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 19 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 20 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "created_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "created_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 21 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 22 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 23 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "delivery" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "delivery" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 24 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "new" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(3) "new" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 25 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "important" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(9) "important" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 26 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sale" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(4) "sale" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 27 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "icon" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "icon" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 28 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "banner_url" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "banner_url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 29 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "banner" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "banner" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 30 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "on_main" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(7) "on_main" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 31 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "mobile_image" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "mobile_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 32 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_category_image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(19) "main_category_image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 33 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_banner" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "main_banner" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 34 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "512" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "category" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "category" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(7) "product" protected _belongs_to => array(4) ( "section" => array(3) ( "foreign_key" => string(10) "section_id" "model" => string(7) "Section" "required" => bool TRUE ) "gift" => array(3) ( "foreign_key" => string(7) "gift_id" "model" => string(4) "Gift" "required" => bool TRUE ) "brand" => array(3) ( "foreign_key" => string(8) "brand_id" "model" => string(5) "Brand" "required" => bool TRUE ) "category" => array(3) ( "foreign_key" => string(11) "category_id" "model" => string(8) "Category" "required" => bool TRUE ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-product:edit?id=${id}" "external_url" => string(77) "site-product:index?product=${url}&category=${category.url}&article=${article}" ) "two_year" => string(4) "bool" "edit" => array(6) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(27) "admin-product:edit?id=${id}" "title" => string(26) "<i class="fa fa-edit"></i>" "color" => string(5) "green" "alternative" => string(26) "Редактировать" ) "delete" => array(7) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(29) "admin-product:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "alternative" => string(14) "Удалить" "color" => string(3) "red" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(2) "id" "order_direction" => string(4) "DESC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(63) ( "id" => string(7) "1279366" "name" => string(108) "Системы автоматического полива, распылители Hozelock Flexi Spray 2683" "url" => string(25) "flexi-spray-2683_hozelock" "md5_url" => string(32) "33cff390375fc0e8eeb3006d180d55e8" "top" => string(1) "0" "important" => string(1) "0" "main_image" => string(59) "/files/product/1279366/3e21e83c8a5b327679aec1ef20135d2d.jpg" "more_images" => string(265) "["\/files\/product\/1279366\/b1f16ffe14b3b1c7b9a32c1ad2cee943.jpg","\/files\/product\/1279366\/bf87be8d54ddae4a10f753299dc0eb03. …" "s_title" => string(164) "Купить Системы автоматического полива, распылители Hozelock Flexi Spray 2683 в Минске по низкой цене" "s_description" => string(244) "Лучшие цены на Flexi Spray 2683 и все товары Hozelock в магазине 1teh.by. Бесплатная доставка, отзывы на Системы автоматического …" "s_keywords" => string(108) "Системы автоматического полива, распылители,Hozelock,Flexi Spray 2683" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(2289) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Общая информация</td></tr><tr class="qugroup_em …" "short_content" => string(143) "распылитель дождеватель/пистолет/штанга, 3 режима, пластик, площадь полива 69 м2" "active" => string(1) "1" "section_id" => string(1) "7" "price" => string(6) "185.76" "new_price" => string(6) "185.76" "discount" => NULL "created_at" => string(19) "2025-05-31 16:32:25" "article" => string(16) "Flexi Spray 2683" "unique_code" => string(7) "1279366" "original" => string(51) "http://1teh.by/files/products/img_1619342_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(4) "2209" "updated_at" => NULL "category_id" => string(3) "512" "garanty" => string(4) "0.00" "importer" => string(90) "СП "Сканлинк" ОООг.Минск, 4-ый пер. Монтажников д.5-16" "country_made" => string(0) "" "manufacturer" => string(0) "" "service" => string(0) "" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "1" "free_delivery" => string(1) "1" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(246) "["https:\/\/api.zoomos.by\/img\/item\/1929674\/0","https:\/\/api.zoomos.by\/img\/item\/1929674\/1","https:\/\/api.zoomos.by\/img …" "zoomos_filters" => NULL "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => string(13) "1748584067000" ) protected _changed => array(0) protected _original_values => array(63) ( "id" => string(7) "1279366" "name" => string(108) "Системы автоматического полива, распылители Hozelock Flexi Spray 2683" "url" => string(25) "flexi-spray-2683_hozelock" "md5_url" => string(32) "33cff390375fc0e8eeb3006d180d55e8" "top" => string(1) "0" "important" => string(1) "0" "main_image" => string(59) "/files/product/1279366/3e21e83c8a5b327679aec1ef20135d2d.jpg" "more_images" => string(265) "["\/files\/product\/1279366\/b1f16ffe14b3b1c7b9a32c1ad2cee943.jpg","\/files\/product\/1279366\/bf87be8d54ddae4a10f753299dc0eb03. …" "s_title" => string(164) "Купить Системы автоматического полива, распылители Hozelock Flexi Spray 2683 в Минске по низкой цене" "s_description" => string(244) "Лучшие цены на Flexi Spray 2683 и все товары Hozelock в магазине 1teh.by. Бесплатная доставка, отзывы на Системы автоматического …" "s_keywords" => string(108) "Системы автоматического полива, распылители,Hozelock,Flexi Spray 2683" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(2289) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Общая информация</td></tr><tr class="qugroup_em …" "short_content" => string(143) "распылитель дождеватель/пистолет/штанга, 3 режима, пластик, площадь полива 69 м2" "active" => string(1) "1" "section_id" => string(1) "7" "price" => string(6) "185.76" "new_price" => string(6) "185.76" "discount" => NULL "created_at" => string(19) "2025-05-31 16:32:25" "article" => string(16) "Flexi Spray 2683" "unique_code" => string(7) "1279366" "original" => string(51) "http://1teh.by/files/products/img_1619342_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(4) "2209" "updated_at" => NULL "category_id" => string(3) "512" "garanty" => string(4) "0.00" "importer" => string(90) "СП "Сканлинк" ОООг.Минск, 4-ый пер. Монтажников д.5-16" "country_made" => string(0) "" "manufacturer" => string(0) "" "service" => string(0) "" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "1" "free_delivery" => string(1) "1" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(246) "["https:\/\/api.zoomos.by\/img\/item\/1929674\/0","https:\/\/api.zoomos.by\/img\/item\/1929674\/1","https:\/\/api.zoomos.by\/img …" "zoomos_filters" => NULL "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => string(13) "1748584067000" ) protected _related => array(2) ( "category" => object Model_Category(40)
"giftUrl" => NULL "section" => object Model_Section(40){ protected _table_name => string(10) "categories" protected _has_many => array(4) ( "children" => array(4) ( "foreign_key" => string(9) "parent_id" "through" => NULL "far_key" => string(8) "child_id" "model" => string(8) "Category" ) "services" => array(5) ( "foreign_key" => string(11) "category_id" "through" => string(19) "categories_services" "far_key" => string(10) "service_id" "model" => string(7) "Service" "required" => bool TRUE ) "brand" => array(4) ( "foreign_key" => string(11) "category_id" "through" => string(14) "brand_category" "far_key" => string(8) "brand_id" "model" => string(5) "Brand" ) "filters" => array(4) ( "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(9) "filter_id" "model" => string(6) "Filter" ) ) protected _belongs_to => array(2) ( "section" => array(2) ( "foreign_key" => string(10) "section_id" "model" => string(7) "Section" ) "parent" => array(2) ( "foreign_key" => string(9) "parent_id" "model" => string(8) "Category" ) ) protected _grid_columns => array(7) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(28) "admin-category:edit?id=${id}" "external_url" => string(71) "site-category:index?section=${section.url}&category=${url}&parent=${id}" ) "active" => string(4) "bool" "on_main" => string(4) "bool" "section_id" => array(4) ( "type" => string(5) "child" "field" => string(4) "name" "model" => string(7) "section" "external_url" => string(37) "site-section:index?url=${section.url}" ) "filters" => array(3) ( "type" => string(4) "link" "route_str" => string(31) "admin-filter:index?parent=${id}" "title" => string(18) "[${filters|count}]" ) "add_child" => array(6) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(30) "admin-category:create?id=${id}" "title" => string(32) "<i class="fa fa-arrow-down"></i>" "alternative" => string(39) "Добавить вложенность" "color" => string(4) "blue" ) "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(43) "admin-category:delete?id=${id}&parent=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(4) "name" "order_direction" => string(3) "ASC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(34) ( "id" => string(3) "512" "name" => string(82) "Системы автоматического полива, распылители" "rod_name" => string(0) "" "ed_chislo" => NULL "vin_name" => NULL "rod_name_many" => NULL "h1" => string(0) "" "s_title" => string(150) "Системы автоматического полива, распылители. Большой каталог с лучшей ценой - 1teh.by" "s_description" => string(302) "Большой выбор систем автоматического полива в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бон …" "s_keywords" => string(0) "" "url" => string(45) "sistemyi-avtomaticheskogo-poliva-raspyiliteli" "md5_url" => string(32) "adee60af978a06a08497762ecf262941" "popular" => NULL "active" => string(1) "1" "position" => string(1) "0" "description" => string(0) "" "section_id" => string(1) "7" "parent_id" => string(3) "263" "level" => string(1) "2" "image" => string(56) "/files/category/512/0933d668ae56c1bf231073f377b174d8.jpg" "created_at" => string(19) "2019-03-27 14:10:14" "updated_at" => string(19) "2022-07-12 17:10:09" "video" => string(0) "" "delivery" => string(2) "15" "new" => string(1) "0" "important" => string(1) "0" "sale" => string(1) "0" "icon" => string(0) "" "banner_url" => string(0) "" "banner" => string(0) "" "on_main" => string(1) "0" "mobile_image" => string(0) "" "main_category_image" => NULL "main_banner" => string(0) "" ) protected _changed => array(0) protected _original_values => array(34) ( "id" => string(3) "512" "name" => string(82) "Системы автоматического полива, распылители" "rod_name" => string(0) "" "ed_chislo" => NULL "vin_name" => NULL "rod_name_many" => NULL "h1" => string(0) "" "s_title" => string(150) "Системы автоматического полива, распылители. Большой каталог с лучшей ценой - 1teh.by" "s_description" => string(302) "Большой выбор систем автоматического полива в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бон …" "s_keywords" => string(0) "" "url" => string(45) "sistemyi-avtomaticheskogo-poliva-raspyiliteli" "md5_url" => string(32) "adee60af978a06a08497762ecf262941" "popular" => NULL "active" => string(1) "1" "position" => string(1) "0" "description" => string(0) "" "section_id" => string(1) "7" "parent_id" => string(3) "263" "level" => string(1) "2" "image" => string(56) "/files/category/512/0933d668ae56c1bf231073f377b174d8.jpg" "created_at" => string(19) "2019-03-27 14:10:14" "updated_at" => string(19) "2022-07-12 17:10:09" "video" => string(0) "" "delivery" => string(2) "15" "new" => string(1) "0" "important" => string(1) "0" "sale" => string(1) "0" "icon" => string(0) "" "banner_url" => string(0) "" "banner" => string(0) "" "on_main" => string(1) "0" "mobile_image" => string(0) "" "main_category_image" => NULL "main_banner" => string(0) "" ) protected _related => array(1) ( "parent" => object Model_Category(40)
"brand" => object Model_Brand(40){ protected _table_name => string(10) "categories" protected _has_many => array(4) ( "children" => array(4) ( "foreign_key" => string(9) "parent_id" "through" => NULL "far_key" => string(8) "child_id" "model" => string(8) "Category" ) "services" => array(5) ( "foreign_key" => string(11) "category_id" "through" => string(19) "categories_services" "far_key" => string(10) "service_id" "model" => string(7) "Service" "required" => bool TRUE ) "brand" => array(4) ( "foreign_key" => string(11) "category_id" "through" => string(14) "brand_category" "far_key" => string(8) "brand_id" "model" => string(5) "Brand" ) "filters" => array(4) ( "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(9) "filter_id" "model" => string(6) "Filter" ) ) protected _belongs_to => array(2) ( "section" => array(2) ( "foreign_key" => string(10) "section_id" "model" => string(7) "Section" ) "parent" => array(2) ( "foreign_key" => string(9) "parent_id" "model" => string(8) "Category" ) ) protected _grid_columns => array(7) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(28) "admin-category:edit?id=${id}" "external_url" => string(71) "site-category:index?section=${section.url}&category=${url}&parent=${id}" ) "active" => string(4) "bool" "on_main" => string(4) "bool" "section_id" => array(4) ( "type" => string(5) "child" "field" => string(4) "name" "model" => string(7) "section" "external_url" => string(37) "site-section:index?url=${section.url}" ) "filters" => array(3) ( "type" => string(4) "link" "route_str" => string(31) "admin-filter:index?parent=${id}" "title" => string(18) "[${filters|count}]" ) "add_child" => array(6) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(30) "admin-category:create?id=${id}" "title" => string(32) "<i class="fa fa-arrow-down"></i>" "alternative" => string(39) "Добавить вложенность" "color" => string(4) "blue" ) "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(43) "admin-category:delete?id=${id}&parent=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(4) "name" "order_direction" => string(3) "ASC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(34) ( "id" => string(3) "263" "name" => string(29) "Садовая техника" "rod_name" => string(29) "Садовую технику" "ed_chislo" => string(29) "Садовая техника" "vin_name" => string(29) "садовой техники" "rod_name_many" => string(29) "садовой техники" "h1" => string(0) "" "s_title" => string(29) "Садовая техника" "s_description" => string(0) "" "s_keywords" => string(0) "" "url" => string(16) "sadovaya-tehnika" "md5_url" => string(32) "8a26814903f77e87df0e8732f6f070f1" "popular" => string(1) "7" "active" => string(1) "1" "position" => string(1) "0" "description" => string(0) "" "section_id" => string(1) "7" "parent_id" => NULL "level" => string(1) "1" "image" => string(56) "/files/category/263/784bb205d734c3037093743b87aa29c7.png" "created_at" => string(19) "2015-07-16 16:34:48" "updated_at" => string(19) "2021-03-17 14:42:07" "video" => string(0) "" "delivery" => string(2) "11" "new" => string(1) "0" "important" => string(1) "0" "sale" => string(1) "0" "icon" => string(0) "" "banner_url" => string(0) "" "banner" => string(0) "" "on_main" => string(1) "1" "mobile_image" => string(0) "" "main_category_image" => string(31) "/files/category/main-svg/12.svg" "main_banner" => string(56) "/files/category/263/72728767255844bc659522ef8ccf6363.jpg" ) protected _changed => array(0) protected _original_values => array(34) ( "id" => string(3) "263" "name" => string(29) "Садовая техника" "rod_name" => string(29) "Садовую технику" "ed_chislo" => string(29) "Садовая техника" "vin_name" => string(29) "садовой техники" "rod_name_many" => string(29) "садовой техники" "h1" => string(0) "" "s_title" => string(29) "Садовая техника" "s_description" => string(0) "" "s_keywords" => string(0) "" "url" => string(16) "sadovaya-tehnika" "md5_url" => string(32) "8a26814903f77e87df0e8732f6f070f1" "popular" => string(1) "7" "active" => string(1) "1" "position" => string(1) "0" "description" => string(0) "" "section_id" => string(1) "7" "parent_id" => NULL "level" => string(1) "1" "image" => string(56) "/files/category/263/784bb205d734c3037093743b87aa29c7.png" "created_at" => string(19) "2015-07-16 16:34:48" "updated_at" => string(19) "2021-03-17 14:42:07" "video" => string(0) "" "delivery" => string(2) "11" "new" => string(1) "0" "important" => string(1) "0" "sale" => string(1) "0" "icon" => string(0) "" "banner_url" => string(0) "" "banner" => string(0) "" "on_main" => string(1) "1" "mobile_image" => string(0) "" "main_category_image" => string(31) "/files/category/main-svg/12.svg" "main_banner" => string(56) "/files/category/263/72728767255844bc659522ef8ccf6363.jpg" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "category" protected _object_plural => string(10) "categories" protected _table_columns => array(34) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "rod_name" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "rod_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ed_chislo" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "ed_chislo" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "vin_name" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "vin_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rod_name_many" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "rod_name_many" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "h1" => array(12) ( "type" => string(6) "string" "column_name" => string(2) "h1" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "popular" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "popular" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "position" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(8) "position" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 15 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "section_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "section_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 17 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "parent_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(9) "parent_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 18 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "level" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(5) "level" "column_default" => string(1) "1" "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 19 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 20 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "created_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "created_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 21 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 22 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 23 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "delivery" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "delivery" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 24 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "new" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(3) "new" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 25 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "important" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(9) "important" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 26 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sale" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(4) "sale" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 27 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "icon" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "icon" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 28 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "banner_url" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "banner_url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 29 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "banner" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "banner" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 30 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "on_main" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(7) "on_main" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 31 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "mobile_image" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "mobile_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 32 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_category_image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(19) "main_category_image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 33 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_banner" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "main_banner" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 34 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "263" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "category" protected _object_plural => string(10) "categories" protected _table_columns => array(34) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "rod_name" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "rod_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ed_chislo" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "ed_chislo" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "vin_name" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "vin_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rod_name_many" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "rod_name_many" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "h1" => array(12) ( "type" => string(6) "string" "column_name" => string(2) "h1" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "popular" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "popular" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "position" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(8) "position" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 15 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "section_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "section_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 17 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "parent_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(9) "parent_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 18 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "level" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(5) "level" "column_default" => string(1) "1" "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 19 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 20 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "created_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "created_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 21 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 22 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 23 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "delivery" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "delivery" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 24 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "new" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(3) "new" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 25 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "important" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(9) "important" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 26 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sale" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(4) "sale" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 27 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "icon" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "icon" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 28 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "banner_url" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "banner_url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 29 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "banner" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "banner" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 30 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "on_main" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(7) "on_main" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 31 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "mobile_image" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "mobile_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 32 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_category_image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(19) "main_category_image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 33 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_banner" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "main_banner" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 34 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "512" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "category" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "category" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(5) "brand" protected _has_many => array(2) ( "product" => array(4) ( "foreign_key" => string(8) "brand_id" "through" => string(13) "brand_product" "model" => string(7) "Product" "far_key" => string(10) "product_id" ) "category" => array(4) ( "foreign_key" => string(8) "brand_id" "through" => string(14) "brand_category" "model" => string(8) "Category" "far_key" => string(11) "category_id" ) ) protected _grid_columns => array(6) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(25) "admin-brand:edit?id=${id}" "external_url" => string(27) "site-brand:index?url=${url}" ) "active" => string(4) "bool" "on_main" => string(4) "bool" "position" => string(8) "position" "description" => array(3) ( "width" => string(3) "40%" "route_str" => string(25) "admin-brand:edit?id=${id}" "type" => string(4) "more" ) "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "color" => string(3) "red" "route_str" => string(27) "admin-brand:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _form_fields => array(0) protected _grid_options => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(14) ( "id" => string(4) "2209" "name" => string(8) "Hozelock" "russian" => NULL "s_title" => NULL "s_description" => NULL "s_keywords" => NULL "url" => string(8) "hozelock" "md5_url" => string(32) "4d2055281b5181de281b1bf6427130c7" "popular" => NULL "active" => string(1) "1" "position" => string(1) "0" "description" => NULL "main_image" => NULL "on_main" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(14) ( "id" => string(4) "2209" "name" => string(8) "Hozelock" "russian" => NULL "s_title" => NULL "s_description" => NULL "s_keywords" => NULL "url" => string(8) "hozelock" "md5_url" => string(32) "4d2055281b5181de281b1bf6427130c7" "popular" => NULL "active" => string(1) "1" "position" => string(1) "0" "description" => NULL "main_image" => NULL "on_main" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(5) "brand" protected _object_plural => string(6) "brands" protected _table_columns => array(14) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(2) "50" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "UNI" "privileges" => string(31) "select,insert,update,references" ) "russian" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "russian" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "popular" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "popular" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "position" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(8) "position" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_image" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "main_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "on_main" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(7) "on_main" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(4) "2209" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "product" protected _object_plural => string(8) "products" protected _table_columns => array(63) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "256" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "top" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "top" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "important" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "important" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_image" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "main_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "more_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "more_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "comments_enabled" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "comments_enabled" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "create_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "create_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "update_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "update_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(10) "4294967295" "column_name" => string(7) "content" "column_default" => NULL "data_type" => string(8) "longtext" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "short_content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "short_content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "section_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "section_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "new_price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "new_price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 20 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "discount" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "discount" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "created_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "created_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "article" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "article" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 23 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "unique_code" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "unique_code" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "original" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "original" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 25 "character_maximum_length" => string(3) "512" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "empty" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "empty" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 26 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "to_upload" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "to_upload" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 27 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "reviews" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "reviews" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 28 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "brand_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(8) "brand_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 29 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 30 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 31 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "garanty" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(7) "garanty" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 32 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "importer" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "importer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 33 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "country_made" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "country_made" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 34 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "manufacturer" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "manufacturer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 35 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "service" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "service" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 36 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 37 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gift_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "gift_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 38 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "delivery" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "delivery" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 39 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rating" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "rating" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 40 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "fixed_price" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "fixed_price" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 41 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "popular" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "popular" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 42 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "expedient_on" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(12) "expedient_on" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 43 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "yandex_market_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(16) "yandex_market_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 44 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "no_percent" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "no_percent" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 45 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "free_delivery" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(13) "free_delivery" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 46 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "product_day" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "product_day" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 47 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pok" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "pok" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 48 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "halva" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "halva" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 49 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instructions" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(12) "instructions" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 50 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_hits" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "is_hits" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 51 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "no_percent_force" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "no_percent_force" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 52 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "narod" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(5) "narod" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 53 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "two_year" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "two_year" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 54 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "hit" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(3) "hit" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 55 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "zakaz" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(5) "zakaz" "column_default" => NULL "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 56 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "zoomos_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 57 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_filters" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(14) "zoomos_filters" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 58 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_corrupt" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(10) "is_corrupt" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 59 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "prepared" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "prepared" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 60 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_fixed" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "is_fixed" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 61 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ym_disabled" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(11) "ym_disabled" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 62 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_update_time" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(20) "18446744073709551615" "column_name" => string(18) "zoomos_update_time" "column_default" => NULL "data_type" => string(15) "bigint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 63 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(7) "1279366" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(5) "brand" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "product" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(8) "sections" protected _has_many => array(1) ( "product" => array(4) ( "foreign_key" => string(10) "section_id" "through" => NULL "model" => string(7) "Product" "far_key" => string(10) "product_id" ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-section:edit?id=${id}" "external_url" => string(35) "site-section:index?url=${url}&page=" ) "active" => string(4) "bool" "position" => string(8) "position" "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(29) "admin-section:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(8) "position" "order_direction" => string(3) "ASC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(1) "7" "name" => string(55) "Инструменты и Садовая техника" "url" => string(31) "instrumentyi-i-sadovaya-tehnika" "md5_url" => string(32) "3809a652761c6d794a3e58998d28f4fb" "active" => string(1) "1" "s_title" => string(123) "Инструменты и садовая техника. Большой каталог с лучшей ценой - 1teh.by" "s_description" => string(303) "Большой выбор инструментов и садовой техники в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бо …" "s_keywords" => string(0) "" "description" => string(0) "" "position" => NULL "h1" => string(0) "" "updated_at" => string(19) "2025-05-31 17:01:39" "mobile_image" => string(0) "" "main_section_image" => string(0) "" "on_main" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(1) "7" "name" => string(55) "Инструменты и Садовая техника" "url" => string(31) "instrumentyi-i-sadovaya-tehnika" "md5_url" => string(32) "3809a652761c6d794a3e58998d28f4fb" "active" => string(1) "1" "s_title" => string(123) "Инструменты и садовая техника. Большой каталог с лучшей ценой - 1teh.by" "s_description" => string(303) "Большой выбор инструментов и садовой техники в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бо …" "s_keywords" => string(0) "" "description" => string(0) "" "position" => NULL "h1" => string(0) "" "updated_at" => string(19) "2025-05-31 17:01:39" "mobile_image" => string(0) "" "main_section_image" => string(0) "" "on_main" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "section" protected _object_plural => string(8) "sections" protected _table_columns => array(15) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(2) "50" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "position" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "position" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "h1" => array(12) ( "type" => string(6) "string" "column_name" => string(2) "h1" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "comment" => string(0) "" "extra" => string(27) "on update CURRENT_TIMESTAMP" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "mobile_image" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "mobile_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_section_image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(18) "main_section_image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "on_main" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "on_main" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "7" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
"maxPercentCard" => string(1) "8" "installmentCard" => array(4) ( 0 => array(8) ( "id" => string(1) "1" "name" => string(40) "Карта рассрочки Халва" "active" => string(1) "1" "logo" => string(61) "/files/installmentcard/1/6b25a531a67792ad4d0f51a9147cb8ff.jpg" "month_standart" => string(1) "2" "month_akcia" => string(1) "0" "procent" => string(1) "6" "url" => string(5) "halva" ) 1 => array(8) ( "id" => string(1) "2" "name" => string(44) "Карта рассрочки "Магнит"" "active" => string(1) "1" "logo" => string(61) "/files/installmentcard/2/6bd782685a0627e53b975d70dcfe1603.png" "month_standart" => string(1) "3" "month_akcia" => string(1) "0" "procent" => string(1) "6" "url" => string(0) "" ) 2 => array(8) ( "id" => string(1) "3" "name" => string(27) ""Карта покупок"" "active" => string(1) "1" "logo" => string(61) "/files/installmentcard/3/b8465507aa42eedd63c31fd63563aa74.png" "month_standart" => string(1) "3" "month_akcia" => string(1) "0" "procent" => string(1) "8" "url" => string(0) "" ) 3 => array(8) ( "id" => string(1) "5" "name" => string(46) "Карта рассрочки "Карта FUN"" "active" => string(1) "1" "logo" => string(61) "/files/installmentcard/5/67dcd3069cf180c4ce7d6a7faf3996be.jpg" "month_standart" => string(1) "3" "month_akcia" => string(1) "0" "procent" => string(3) "7.5" "url" => string(0) "" ) ) "relatedProducts" => array(0) "maxCredit" => integer 0 "minCredit" => integer 0 "credits" => object Database_MySQLi_Result(7){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "section" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _internal_row => integer 0 protected _query => string(531) "SELECT `credit`.`id` AS `id`, `credit`.`name` AS `name`, `credit`.`percent` AS `percent`, `credit`.`variants` AS `variants`, `cr …" protected _result => object mysqli_result(5)
"mincredit" => bool FALSE "mininstallment" => float 46.44 "monthinstallment" => integer 4 "og_title" => string(108) "Системы автоматического полива, распылители Hozelock Flexi Spray 2683" "og_image" => string(59) "/files/product/1279366/3e21e83c8a5b327679aec1ef20135d2d.jpg" "lastNews" => array(8) ( 0 => object Model_News(40){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 0 protected _current_row => integer 0 protected _as_object => string(12) "Model_Credit" protected _object_params => NULL }{ protected _table_name => string(4) "news" protected _belongs_to => array(1) ( "category_news" => array(2) ( "foreign_key" => string(16) "category_news_id" "model" => string(12) "CategoryNews" ) ) protected _grid_columns => array(8) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(24) "admin-news:edit?id=${id}" "external_url" => string(26) "site-news:index?url=${url}" ) "s_title" => string(5) "empty" "s_description" => string(5) "empty" "s_keywords" => string(5) "empty" "active" => string(4) "bool" "updated_at" => NULL "edit" => array(6) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(24) "admin-news:edit?id=${id}" "title" => string(28) "<i class="fa fa-pencil"></i>" "color" => string(5) "green" "alternative" => string(26) "Редактировать" ) "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(26) "admin-news:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(3) ( "order_by" => string(10) "updated_at" "order_direction" => string(3) "ASC" "per_page" => integer 500 ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(2) "85" "name" => string(76) "Индукционная варочная панель Electrolux EHH56240IK" "s_title" => string(76) "Индукционная варочная панель Electrolux EHH56240IK" "s_description" => string(499) "Варочные панели с сенсорным управлением в интернет-магазине бытовой техники 1teh.by. Большой каталог варочных панелей с отзывами …" "s_keywords" => string(0) "" "url" => string(53) "induktsionnaya-varochnaya-panel-electrolux-ehh56240ik" "active" => string(1) "1" "updated_at" => string(19) "2025-02-12 17:32:01" "static" => string(1) "0" "content" => string(3015) "<p>Реализуйте свои таланты и воспользуйтесь скоростью и точностью, обычно доступной лишь профессиональным шеф-поварам. Индукцион …" "short_text" => string(360) "<p>Реализуйте свои таланты и воспользуйтесь скоростью и точностью, обычно доступной лишь профессиональным шеф-поварам. Индукцион …" "image" => string(51) "/files/news/85/a125e53c5cbd89af57dc37b15d41f984.png" "more_images" => NULL "category_id" => string(3) "115" "category_news_id" => string(1) "5" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(2) "85" "name" => string(76) "Индукционная варочная панель Electrolux EHH56240IK" "s_title" => string(76) "Индукционная варочная панель Electrolux EHH56240IK" "s_description" => string(499) "Варочные панели с сенсорным управлением в интернет-магазине бытовой техники 1teh.by. Большой каталог варочных панелей с отзывами …" "s_keywords" => string(0) "" "url" => string(53) "induktsionnaya-varochnaya-panel-electrolux-ehh56240ik" "active" => string(1) "1" "updated_at" => string(19) "2025-02-12 17:32:01" "static" => string(1) "0" "content" => string(3015) "<p>Реализуйте свои таланты и воспользуйтесь скоростью и точностью, обычно доступной лишь профессиональным шеф-поварам. Индукцион …" "short_text" => string(360) "<p>Реализуйте свои таланты и воспользуйтесь скоростью и точностью, обычно доступной лишь профессиональным шеф-поварам. Индукцион …" "image" => string(51) "/files/news/85/a125e53c5cbd89af57dc37b15d41f984.png" "more_images" => NULL "category_id" => string(3) "115" "category_news_id" => string(1) "5" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "news" protected _object_plural => string(4) "news" protected _table_columns => array(15) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "comment" => string(0) "" "extra" => string(27) "on update CURRENT_TIMESTAMP" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "static" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "static" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(7) "content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "short_text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(10) "short_text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "more_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "more_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_news_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(16) "category_news_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(2) "85" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
1 => object Model_News(40){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "news" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(4) "news" protected _belongs_to => array(1) ( "category_news" => array(2) ( "foreign_key" => string(16) "category_news_id" "model" => string(12) "CategoryNews" ) ) protected _grid_columns => array(8) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(24) "admin-news:edit?id=${id}" "external_url" => string(26) "site-news:index?url=${url}" ) "s_title" => string(5) "empty" "s_description" => string(5) "empty" "s_keywords" => string(5) "empty" "active" => string(4) "bool" "updated_at" => NULL "edit" => array(6) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(24) "admin-news:edit?id=${id}" "title" => string(28) "<i class="fa fa-pencil"></i>" "color" => string(5) "green" "alternative" => string(26) "Редактировать" ) "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(26) "admin-news:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(3) ( "order_by" => string(10) "updated_at" "order_direction" => string(3) "ASC" "per_page" => integer 500 ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(2) "75" "name" => string(130) "Как выбрать электрическую плиту? На что обратить внимание при покупке? " "s_title" => string(130) "Как выбрать электрическую плиту? На что обратить внимание при покупке? " "s_description" => string(453) "Электрические кухонные плиты в интернет-магазине бытовой техники 1teh.by. Большой каталог кухонных плит с отзывами клиентов и ха …" "s_keywords" => string(68) "плита, электрическая, доставка, минск" "url" => string(70) "kak-vyibrat-elektricheskuyu-plitu-na-chto-obratit-vnimanie-pri-pokupke" "active" => string(1) "1" "updated_at" => string(19) "2025-02-12 17:31:39" "static" => string(1) "0" "content" => string(3384) "<p>Кухонная плита – незаменимый помошник в кухонном искусстве. Как выбрать электрическую плиту, чтобы она прослужила …" "short_text" => string(339) "<p>Кухонная плита – незаменимый помошник в кухонном искусстве. Как выбрать электрическую плиту, чтобы она прослужила …" "image" => string(51) "/files/news/75/c248c43190ce883044e04f481df98f2e.jpg" "more_images" => NULL "category_id" => NULL "category_news_id" => string(1) "4" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(2) "75" "name" => string(130) "Как выбрать электрическую плиту? На что обратить внимание при покупке? " "s_title" => string(130) "Как выбрать электрическую плиту? На что обратить внимание при покупке? " "s_description" => string(453) "Электрические кухонные плиты в интернет-магазине бытовой техники 1teh.by. Большой каталог кухонных плит с отзывами клиентов и ха …" "s_keywords" => string(68) "плита, электрическая, доставка, минск" "url" => string(70) "kak-vyibrat-elektricheskuyu-plitu-na-chto-obratit-vnimanie-pri-pokupke" "active" => string(1) "1" "updated_at" => string(19) "2025-02-12 17:31:39" "static" => string(1) "0" "content" => string(3384) "<p>Кухонная плита – незаменимый помошник в кухонном искусстве. Как выбрать электрическую плиту, чтобы она прослужила …" "short_text" => string(339) "<p>Кухонная плита – незаменимый помошник в кухонном искусстве. Как выбрать электрическую плиту, чтобы она прослужила …" "image" => string(51) "/files/news/75/c248c43190ce883044e04f481df98f2e.jpg" "more_images" => NULL "category_id" => NULL "category_news_id" => string(1) "4" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "news" protected _object_plural => string(4) "news" protected _table_columns => array(15) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "comment" => string(0) "" "extra" => string(27) "on update CURRENT_TIMESTAMP" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "static" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "static" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(7) "content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "short_text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(10) "short_text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "more_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "more_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_news_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(16) "category_news_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(2) "75" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
2 => object Model_News(40){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "news" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(4) "news" protected _belongs_to => array(1) ( "category_news" => array(2) ( "foreign_key" => string(16) "category_news_id" "model" => string(12) "CategoryNews" ) ) protected _grid_columns => array(8) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(24) "admin-news:edit?id=${id}" "external_url" => string(26) "site-news:index?url=${url}" ) "s_title" => string(5) "empty" "s_description" => string(5) "empty" "s_keywords" => string(5) "empty" "active" => string(4) "bool" "updated_at" => NULL "edit" => array(6) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(24) "admin-news:edit?id=${id}" "title" => string(28) "<i class="fa fa-pencil"></i>" "color" => string(5) "green" "alternative" => string(26) "Редактировать" ) "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(26) "admin-news:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(3) ( "order_by" => string(10) "updated_at" "order_direction" => string(3) "ASC" "per_page" => integer 500 ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(2) "77" "name" => string(104) "Место для сушильной машины. Как его правильно подобрать? " "s_title" => string(104) "Место для сушильной машины. Как его правильно подобрать? " "s_description" => string(0) "" "s_keywords" => string(0) "" "url" => string(55) "mesto-dlya-sushilnoy-mashinyi-kak-ego-pravilno-podobrat" "active" => string(1) "1" "updated_at" => string(19) "2025-02-12 17:31:31" "static" => string(1) "0" "content" => string(2384) "<h1>Как расположить сушильную машину, сэкономив необходимое пространство?</h1> <p><br /> Стиральные машины стали необходимостью …" "short_text" => string(737) "<p>Стиральные машины стали необходимостью в каждой современной семье. Автоматическая стиральная машина есть практически в каждой …" "image" => string(51) "/files/news/77/d5f28955c172e3640ae3cdf4eb7441dd.png" "more_images" => NULL "category_id" => NULL "category_news_id" => string(1) "4" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(2) "77" "name" => string(104) "Место для сушильной машины. Как его правильно подобрать? " "s_title" => string(104) "Место для сушильной машины. Как его правильно подобрать? " "s_description" => string(0) "" "s_keywords" => string(0) "" "url" => string(55) "mesto-dlya-sushilnoy-mashinyi-kak-ego-pravilno-podobrat" "active" => string(1) "1" "updated_at" => string(19) "2025-02-12 17:31:31" "static" => string(1) "0" "content" => string(2384) "<h1>Как расположить сушильную машину, сэкономив необходимое пространство?</h1> <p><br /> Стиральные машины стали необходимостью …" "short_text" => string(737) "<p>Стиральные машины стали необходимостью в каждой современной семье. Автоматическая стиральная машина есть практически в каждой …" "image" => string(51) "/files/news/77/d5f28955c172e3640ae3cdf4eb7441dd.png" "more_images" => NULL "category_id" => NULL "category_news_id" => string(1) "4" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "news" protected _object_plural => string(4) "news" protected _table_columns => array(15) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "comment" => string(0) "" "extra" => string(27) "on update CURRENT_TIMESTAMP" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "static" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "static" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(7) "content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "short_text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(10) "short_text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "more_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "more_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_news_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(16) "category_news_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(2) "77" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
3 => object Model_News(40){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "news" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(4) "news" protected _belongs_to => array(1) ( "category_news" => array(2) ( "foreign_key" => string(16) "category_news_id" "model" => string(12) "CategoryNews" ) ) protected _grid_columns => array(8) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(24) "admin-news:edit?id=${id}" "external_url" => string(26) "site-news:index?url=${url}" ) "s_title" => string(5) "empty" "s_description" => string(5) "empty" "s_keywords" => string(5) "empty" "active" => string(4) "bool" "updated_at" => NULL "edit" => array(6) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(24) "admin-news:edit?id=${id}" "title" => string(28) "<i class="fa fa-pencil"></i>" "color" => string(5) "green" "alternative" => string(26) "Редактировать" ) "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(26) "admin-news:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(3) ( "order_by" => string(10) "updated_at" "order_direction" => string(3) "ASC" "per_page" => integer 500 ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(2) "41" "name" => string(149) "Как правильно загружать посудомоечную машину: жизненные советы от экспертов 1тех" "s_title" => string(169) "Как правильно загружать посудомоечную машину - советы по эксплуатации посудомоечной машины" "s_description" => string(0) "" "s_keywords" => string(0) "" "url" => string(82) "kak-pravilno-zagrujat-posudomoechnuyu-mashinu-jiznennyie-sovetyi-ot-ekspertov-1teh" "active" => string(1) "1" "updated_at" => string(19) "2024-08-27 14:47:40" "static" => string(1) "0" "content" => string(4887) "<p>Хотите, чтобы свежевымытая посуда из посудомоечной машины всегда радовала вас идеальной чистотой и свежестью? Загружайте её г …" "short_text" => string(354) "<p>Хотите, чтобы свежевымытая посуда из посудомоечной машины всегда радовала вас идеальной чистотой и свежестью? Загружайте её г …" "image" => string(51) "/files/news/41/ab40daa67221839270151b3e114f2c77.jpg" "more_images" => NULL "category_id" => NULL "category_news_id" => string(1) "4" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(2) "41" "name" => string(149) "Как правильно загружать посудомоечную машину: жизненные советы от экспертов 1тех" "s_title" => string(169) "Как правильно загружать посудомоечную машину - советы по эксплуатации посудомоечной машины" "s_description" => string(0) "" "s_keywords" => string(0) "" "url" => string(82) "kak-pravilno-zagrujat-posudomoechnuyu-mashinu-jiznennyie-sovetyi-ot-ekspertov-1teh" "active" => string(1) "1" "updated_at" => string(19) "2024-08-27 14:47:40" "static" => string(1) "0" "content" => string(4887) "<p>Хотите, чтобы свежевымытая посуда из посудомоечной машины всегда радовала вас идеальной чистотой и свежестью? Загружайте её г …" "short_text" => string(354) "<p>Хотите, чтобы свежевымытая посуда из посудомоечной машины всегда радовала вас идеальной чистотой и свежестью? Загружайте её г …" "image" => string(51) "/files/news/41/ab40daa67221839270151b3e114f2c77.jpg" "more_images" => NULL "category_id" => NULL "category_news_id" => string(1) "4" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "news" protected _object_plural => string(4) "news" protected _table_columns => array(15) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "comment" => string(0) "" "extra" => string(27) "on update CURRENT_TIMESTAMP" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "static" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "static" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(7) "content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "short_text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(10) "short_text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "more_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "more_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_news_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(16) "category_news_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(2) "41" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
4 => object Model_News(40){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "news" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(4) "news" protected _belongs_to => array(1) ( "category_news" => array(2) ( "foreign_key" => string(16) "category_news_id" "model" => string(12) "CategoryNews" ) ) protected _grid_columns => array(8) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(24) "admin-news:edit?id=${id}" "external_url" => string(26) "site-news:index?url=${url}" ) "s_title" => string(5) "empty" "s_description" => string(5) "empty" "s_keywords" => string(5) "empty" "active" => string(4) "bool" "updated_at" => NULL "edit" => array(6) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(24) "admin-news:edit?id=${id}" "title" => string(28) "<i class="fa fa-pencil"></i>" "color" => string(5) "green" "alternative" => string(26) "Редактировать" ) "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(26) "admin-news:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(3) ( "order_by" => string(10) "updated_at" "order_direction" => string(3) "ASC" "per_page" => integer 500 ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(2) "50" "name" => string(118) "Встраиваемые холодильники: Полное руководство по выбору и уходу" "s_title" => string(133) "Как выбрать встраиваемый холодильник: что нужно знать до и после покупки" "s_description" => string(0) "" "s_keywords" => string(0) "" "url" => string(25) "vstraivaemyie-holodilniki" "active" => string(1) "1" "updated_at" => string(19) "2024-05-02 10:50:34" "static" => string(1) "0" "content" => string(30242) "<p>В современном мире дизайна интерьера кухни все больше уделяется внимание не только функциональности, но и гармонии элементов. …" "short_text" => string(589) "<p>Как правильно выбрать встраиваемый холодильник Вы не хотите, чтобы холодильник ярким пятном выделялся среди оформленного кухо …" "image" => string(51) "/files/news/50/90dbcc8af1acbf146b49b735173c5479.jpg" "more_images" => NULL "category_id" => string(3) "123" "category_news_id" => string(1) "4" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(2) "50" "name" => string(118) "Встраиваемые холодильники: Полное руководство по выбору и уходу" "s_title" => string(133) "Как выбрать встраиваемый холодильник: что нужно знать до и после покупки" "s_description" => string(0) "" "s_keywords" => string(0) "" "url" => string(25) "vstraivaemyie-holodilniki" "active" => string(1) "1" "updated_at" => string(19) "2024-05-02 10:50:34" "static" => string(1) "0" "content" => string(30242) "<p>В современном мире дизайна интерьера кухни все больше уделяется внимание не только функциональности, но и гармонии элементов. …" "short_text" => string(589) "<p>Как правильно выбрать встраиваемый холодильник Вы не хотите, чтобы холодильник ярким пятном выделялся среди оформленного кухо …" "image" => string(51) "/files/news/50/90dbcc8af1acbf146b49b735173c5479.jpg" "more_images" => NULL "category_id" => string(3) "123" "category_news_id" => string(1) "4" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "news" protected _object_plural => string(4) "news" protected _table_columns => array(15) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "comment" => string(0) "" "extra" => string(27) "on update CURRENT_TIMESTAMP" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "static" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "static" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(7) "content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "short_text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(10) "short_text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "more_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "more_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_news_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(16) "category_news_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(2) "50" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
5 => object Model_News(40){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "news" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(4) "news" protected _belongs_to => array(1) ( "category_news" => array(2) ( "foreign_key" => string(16) "category_news_id" "model" => string(12) "CategoryNews" ) ) protected _grid_columns => array(8) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(24) "admin-news:edit?id=${id}" "external_url" => string(26) "site-news:index?url=${url}" ) "s_title" => string(5) "empty" "s_description" => string(5) "empty" "s_keywords" => string(5) "empty" "active" => string(4) "bool" "updated_at" => NULL "edit" => array(6) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(24) "admin-news:edit?id=${id}" "title" => string(28) "<i class="fa fa-pencil"></i>" "color" => string(5) "green" "alternative" => string(26) "Редактировать" ) "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(26) "admin-news:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(3) ( "order_by" => string(10) "updated_at" "order_direction" => string(3) "ASC" "per_page" => integer 500 ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(2) "13" "name" => string(78) "Полезные советы по выбору водонагревателя" "s_title" => string(106) "Как выбрать водонагреватель когда отключили горячую воду" "s_description" => string(0) "" "s_keywords" => string(0) "" "url" => string(15) "vodonagrevateli" "active" => string(1) "1" "updated_at" => string(19) "2024-05-02 10:49:56" "static" => string(1) "0" "content" => string(8631) "<p>Вы не готовы мучительно греть воду в кастрюльках или довольствоваться бодрящим ледяным душем в течение долгих недель без горя …" "short_text" => string(564) "<p>Вы не готовы мучительно греть воду в кастрюльках или довольствоваться бодрящим ледяным душем в течение долгих недель без горя …" "image" => string(51) "/files/news/13/b1b79cc695add18456253584f5fe4de8.jpg" "more_images" => NULL "category_id" => string(3) "150" "category_news_id" => string(1) "4" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(2) "13" "name" => string(78) "Полезные советы по выбору водонагревателя" "s_title" => string(106) "Как выбрать водонагреватель когда отключили горячую воду" "s_description" => string(0) "" "s_keywords" => string(0) "" "url" => string(15) "vodonagrevateli" "active" => string(1) "1" "updated_at" => string(19) "2024-05-02 10:49:56" "static" => string(1) "0" "content" => string(8631) "<p>Вы не готовы мучительно греть воду в кастрюльках или довольствоваться бодрящим ледяным душем в течение долгих недель без горя …" "short_text" => string(564) "<p>Вы не готовы мучительно греть воду в кастрюльках или довольствоваться бодрящим ледяным душем в течение долгих недель без горя …" "image" => string(51) "/files/news/13/b1b79cc695add18456253584f5fe4de8.jpg" "more_images" => NULL "category_id" => string(3) "150" "category_news_id" => string(1) "4" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "news" protected _object_plural => string(4) "news" protected _table_columns => array(15) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "comment" => string(0) "" "extra" => string(27) "on update CURRENT_TIMESTAMP" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "static" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "static" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(7) "content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "short_text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(10) "short_text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "more_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "more_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_news_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(16) "category_news_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(2) "13" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
6 => object Model_News(40){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "news" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(4) "news" protected _belongs_to => array(1) ( "category_news" => array(2) ( "foreign_key" => string(16) "category_news_id" "model" => string(12) "CategoryNews" ) ) protected _grid_columns => array(8) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(24) "admin-news:edit?id=${id}" "external_url" => string(26) "site-news:index?url=${url}" ) "s_title" => string(5) "empty" "s_description" => string(5) "empty" "s_keywords" => string(5) "empty" "active" => string(4) "bool" "updated_at" => NULL "edit" => array(6) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(24) "admin-news:edit?id=${id}" "title" => string(28) "<i class="fa fa-pencil"></i>" "color" => string(5) "green" "alternative" => string(26) "Редактировать" ) "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(26) "admin-news:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(3) ( "order_by" => string(10) "updated_at" "order_direction" => string(3) "ASC" "per_page" => integer 500 ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(3) "126" "name" => string(123) "Советы и руководство по выбору идеальной электрической вафельницы" "s_title" => string(123) "Советы и руководство по выбору идеальной электрической вафельницы" "s_description" => string(0) "" "s_keywords" => string(0) "" "url" => string(68) "sovetyi-i-rukovodstvo-po-vyiboru-idealnoy-elektricheskoy-vafelnitsyi" "active" => string(1) "1" "updated_at" => string(19) "2024-04-07 13:00:55" "static" => string(1) "0" "content" => string(17903) "<p>Вафельница представляет собой устройство, снабженное двумя нагреваемыми поверхностями с узорами. Жарочные формы обычно изгота …" "short_text" => string(406) "<p>Вафельница представляет собой устройство, снабженное двумя нагреваемыми поверхностями с узорами. Жарочные формы обычно изгота …" "image" => string(53) "/files/news/126/4b97d0199b5b95dc2db97ec7a4d0e284.jpeg" "more_images" => NULL "category_id" => NULL "category_news_id" => string(1) "4" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(3) "126" "name" => string(123) "Советы и руководство по выбору идеальной электрической вафельницы" "s_title" => string(123) "Советы и руководство по выбору идеальной электрической вафельницы" "s_description" => string(0) "" "s_keywords" => string(0) "" "url" => string(68) "sovetyi-i-rukovodstvo-po-vyiboru-idealnoy-elektricheskoy-vafelnitsyi" "active" => string(1) "1" "updated_at" => string(19) "2024-04-07 13:00:55" "static" => string(1) "0" "content" => string(17903) "<p>Вафельница представляет собой устройство, снабженное двумя нагреваемыми поверхностями с узорами. Жарочные формы обычно изгота …" "short_text" => string(406) "<p>Вафельница представляет собой устройство, снабженное двумя нагреваемыми поверхностями с узорами. Жарочные формы обычно изгота …" "image" => string(53) "/files/news/126/4b97d0199b5b95dc2db97ec7a4d0e284.jpeg" "more_images" => NULL "category_id" => NULL "category_news_id" => string(1) "4" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "news" protected _object_plural => string(4) "news" protected _table_columns => array(15) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "comment" => string(0) "" "extra" => string(27) "on update CURRENT_TIMESTAMP" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "static" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "static" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(7) "content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "short_text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(10) "short_text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "more_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "more_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_news_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(16) "category_news_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "126" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
7 => object Model_News(40){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "news" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(4) "news" protected _belongs_to => array(1) ( "category_news" => array(2) ( "foreign_key" => string(16) "category_news_id" "model" => string(12) "CategoryNews" ) ) protected _grid_columns => array(8) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(24) "admin-news:edit?id=${id}" "external_url" => string(26) "site-news:index?url=${url}" ) "s_title" => string(5) "empty" "s_description" => string(5) "empty" "s_keywords" => string(5) "empty" "active" => string(4) "bool" "updated_at" => NULL "edit" => array(6) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(24) "admin-news:edit?id=${id}" "title" => string(28) "<i class="fa fa-pencil"></i>" "color" => string(5) "green" "alternative" => string(26) "Редактировать" ) "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(26) "admin-news:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(3) ( "order_by" => string(10) "updated_at" "order_direction" => string(3) "ASC" "per_page" => integer 500 ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(3) "125" "name" => string(122) "Блендеры как часть нашей жизни. Отличительные черты и особенности " "s_title" => string(123) "Блендеры и их предназначение. Как выбрать блендер? - Советы и нюансы" "s_description" => string(278) "Блендеры и их предназначение. В этой статье мы разберем, для чего же нужен блендер и на что он способен. Какие виды блендеров бы …" "s_keywords" => string(0) "" "url" => string(69) "blenderyi-kak-chast-nashey-jizni-otlichitelnyie-chertyi-i-osobennosti" "active" => string(1) "1" "updated_at" => string(19) "2024-04-06 23:30:34" "static" => string(1) "0" "content" => string(13109) "<p>Многие хозяйки считают, что наличие блендера в кухне - это излишество, но это мнение обусловлено недостатком опыта и знаний о …" "short_text" => string(737) "<p>Многие хозяйки считают, что наличие блендера в кухне - это излишество, но это мнение обусловлено недостатком опыта и знаний о …" "image" => string(52) "/files/news/125/524ff754a613b6d14a5411bb4982d9fb.jpg" "more_images" => NULL "category_id" => NULL "category_news_id" => string(1) "4" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(3) "125" "name" => string(122) "Блендеры как часть нашей жизни. Отличительные черты и особенности " "s_title" => string(123) "Блендеры и их предназначение. Как выбрать блендер? - Советы и нюансы" "s_description" => string(278) "Блендеры и их предназначение. В этой статье мы разберем, для чего же нужен блендер и на что он способен. Какие виды блендеров бы …" "s_keywords" => string(0) "" "url" => string(69) "blenderyi-kak-chast-nashey-jizni-otlichitelnyie-chertyi-i-osobennosti" "active" => string(1) "1" "updated_at" => string(19) "2024-04-06 23:30:34" "static" => string(1) "0" "content" => string(13109) "<p>Многие хозяйки считают, что наличие блендера в кухне - это излишество, но это мнение обусловлено недостатком опыта и знаний о …" "short_text" => string(737) "<p>Многие хозяйки считают, что наличие блендера в кухне - это излишество, но это мнение обусловлено недостатком опыта и знаний о …" "image" => string(52) "/files/news/125/524ff754a613b6d14a5411bb4982d9fb.jpg" "more_images" => NULL "category_id" => NULL "category_news_id" => string(1) "4" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "news" protected _object_plural => string(4) "news" protected _table_columns => array(15) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "comment" => string(0) "" "extra" => string(27) "on update CURRENT_TIMESTAMP" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "static" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "static" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(7) "content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "short_text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(10) "short_text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "more_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "more_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_news_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(16) "category_news_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "125" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) "ender_likes" => NULL "ender" => string(0) "" "result_quantity" => integer 0 "cartitems" => NULL "likeitems" => NULL "summlikes" => integer 0 "sravnenieCount" => integer 0 "lookedCount" => integer 13 "result_price" => string(1) "0" ){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "news" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 }
-
MODPATH/ariol/classes/Extasy/View.php [ 27 ] » Kohana_View->render(arguments)
0
NULL
22 { 23 return parent::render($file); 24 } 25 else 26 { 27 $this->content = parent::render($file); 28 return parent::render($this->_layout); 29 } 30 } 31 32 public function set_filename($file)
-
SYSPATH/classes/Kohana/View.php [ 228 ] » Extasy_View->render()
223 */ 224 public function __toString() 225 { 226 try 227 { 228 return $this->render(); 229 } 230 catch (Exception $e) 231 { 232 /** 233 * Display the exception message.
-
MODPATH/ariol/classes/Extasy/Controller.php [ 73 ] » Kohana_View->__toString()
68 69 } else if (!$this->blockDefaultView) { 70 $this->template->set_filename(mb_strtolower($this->_view)); 71 } 72 73 $response = (string) $this->template; 74 $this->response->body($response); 75 } 76 77 78 // public function after()
-
MODPATH/ariol/classes/Controller/Site.php [ 136 ] » Extasy_Controller->after()
131 } 132 if ($SEO->h1) { 133 $this->template->h1 = $SEO->h1; 134 } 135 136 parent::after(); 137 138 } 139 140 public function set_metatags_and_content($url, $name = 'page', $items_on_page = null) 141 {
-
SYSPATH/classes/Kohana/Controller.php [ 87 ] » Controller_Site->after()
82 83 // Execute the action itself 84 $this->{$action}(); 85 86 // Execute the "after action" method 87 $this->after(); 88 89 // Return the response 90 return $this->response; 91 } 92
-
{PHP internal call} » Kohana_Controller->execute()
-
SYSPATH/classes/Kohana/Request/Client/Internal.php [ 97 ] » ReflectionMethod->invoke(arguments)
0
object Controller_Site_Product(11)
{ private _items_on_page => NULL private _object_name => string(7) "Product" protected device => object Device(1)
{ protected _detector => object Mobile_Detect(3)
protected _model => object Model_Product(40){ protected userAgent => string(103) "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" protected httpHeaders => array(8) ( "HTTP_ACCEPT_ENCODING" => string(23) "gzip, br, zstd, deflate" "HTTP_COOKIE" => string(866) "PHPSESSID=o3ghojevjj64rj9aml2skc5gn7; products[1574808]=1d5d4b49c6ea92d89a78703c81e158371ad9cd75%7E1; products[540145]=bbb6b9a3e …" "HTTP_USER_AGENT" => string(103) "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "HTTP_ACCEPT" => string(3) "*/*" "HTTP_CONNECTION" => string(5) "close" "HTTP_X_FORWARDED_PORT" => string(3) "443" "HTTP_X_FORWARDED_PROTO" => string(5) "https" "HTTP_HOST" => string(7) "1teh.by" ) protected detectionType => string(6) "mobile" }
}{ protected _table_name => string(7) "product" protected _belongs_to => array(4) ( "section" => array(3) ( "foreign_key" => string(10) "section_id" "model" => string(7) "Section" "required" => bool TRUE ) "gift" => array(3) ( "foreign_key" => string(7) "gift_id" "model" => string(4) "Gift" "required" => bool TRUE ) "brand" => array(3) ( "foreign_key" => string(8) "brand_id" "model" => string(5) "Brand" "required" => bool TRUE ) "category" => array(3) ( "foreign_key" => string(11) "category_id" "model" => string(8) "Category" "required" => bool TRUE ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-product:edit?id=${id}" "external_url" => string(77) "site-product:index?product=${url}&category=${category.url}&article=${article}" ) "two_year" => string(4) "bool" "edit" => array(6) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(27) "admin-product:edit?id=${id}" "title" => string(26) "<i class="fa fa-edit"></i>" "color" => string(5) "green" "alternative" => string(26) "Редактировать" ) "delete" => array(7) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(29) "admin-product:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "alternative" => string(14) "Удалить" "color" => string(3) "red" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(2) "id" "order_direction" => string(4) "DESC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(63) ( "id" => string(7) "1279366" "name" => string(108) "Системы автоматического полива, распылители Hozelock Flexi Spray 2683" "url" => string(25) "flexi-spray-2683_hozelock" "md5_url" => string(32) "33cff390375fc0e8eeb3006d180d55e8" "top" => string(1) "0" "important" => string(1) "0" "main_image" => string(59) "/files/product/1279366/3e21e83c8a5b327679aec1ef20135d2d.jpg" "more_images" => string(265) "["\/files\/product\/1279366\/b1f16ffe14b3b1c7b9a32c1ad2cee943.jpg","\/files\/product\/1279366\/bf87be8d54ddae4a10f753299dc0eb03. …" "s_title" => string(164) "Купить Системы автоматического полива, распылители Hozelock Flexi Spray 2683 в Минске по низкой цене" "s_description" => string(244) "Лучшие цены на Flexi Spray 2683 и все товары Hozelock в магазине 1teh.by. Бесплатная доставка, отзывы на Системы автоматического …" "s_keywords" => string(108) "Системы автоматического полива, распылители,Hozelock,Flexi Spray 2683" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(2289) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Общая информация</td></tr><tr class="qugroup_em …" "short_content" => string(143) "распылитель дождеватель/пистолет/штанга, 3 режима, пластик, площадь полива 69 м2" "active" => string(1) "1" "section_id" => string(1) "7" "price" => string(6) "185.76" "new_price" => string(6) "185.76" "discount" => NULL "created_at" => string(19) "2025-05-31 16:32:25" "article" => string(16) "Flexi Spray 2683" "unique_code" => string(7) "1279366" "original" => string(51) "http://1teh.by/files/products/img_1619342_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(4) "2209" "updated_at" => NULL "category_id" => string(3) "512" "garanty" => string(4) "0.00" "importer" => string(90) "СП "Сканлинк" ОООг.Минск, 4-ый пер. Монтажников д.5-16" "country_made" => string(0) "" "manufacturer" => string(0) "" "service" => string(0) "" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "1" "free_delivery" => string(1) "1" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(246) "["https:\/\/api.zoomos.by\/img\/item\/1929674\/0","https:\/\/api.zoomos.by\/img\/item\/1929674\/1","https:\/\/api.zoomos.by\/img …" "zoomos_filters" => NULL "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => string(13) "1748584067000" ) protected _changed => array(0) protected _original_values => array(63) ( "id" => string(7) "1279366" "name" => string(108) "Системы автоматического полива, распылители Hozelock Flexi Spray 2683" "url" => string(25) "flexi-spray-2683_hozelock" "md5_url" => string(32) "33cff390375fc0e8eeb3006d180d55e8" "top" => string(1) "0" "important" => string(1) "0" "main_image" => string(59) "/files/product/1279366/3e21e83c8a5b327679aec1ef20135d2d.jpg" "more_images" => string(265) "["\/files\/product\/1279366\/b1f16ffe14b3b1c7b9a32c1ad2cee943.jpg","\/files\/product\/1279366\/bf87be8d54ddae4a10f753299dc0eb03. …" "s_title" => string(164) "Купить Системы автоматического полива, распылители Hozelock Flexi Spray 2683 в Минске по низкой цене" "s_description" => string(244) "Лучшие цены на Flexi Spray 2683 и все товары Hozelock в магазине 1teh.by. Бесплатная доставка, отзывы на Системы автоматического …" "s_keywords" => string(108) "Системы автоматического полива, распылители,Hozelock,Flexi Spray 2683" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(2289) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Общая информация</td></tr><tr class="qugroup_em …" "short_content" => string(143) "распылитель дождеватель/пистолет/штанга, 3 режима, пластик, площадь полива 69 м2" "active" => string(1) "1" "section_id" => string(1) "7" "price" => string(6) "185.76" "new_price" => string(6) "185.76" "discount" => NULL "created_at" => string(19) "2025-05-31 16:32:25" "article" => string(16) "Flexi Spray 2683" "unique_code" => string(7) "1279366" "original" => string(51) "http://1teh.by/files/products/img_1619342_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(4) "2209" "updated_at" => NULL "category_id" => string(3) "512" "garanty" => string(4) "0.00" "importer" => string(90) "СП "Сканлинк" ОООг.Минск, 4-ый пер. Монтажников д.5-16" "country_made" => string(0) "" "manufacturer" => string(0) "" "service" => string(0) "" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "1" "free_delivery" => string(1) "1" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(246) "["https:\/\/api.zoomos.by\/img\/item\/1929674\/0","https:\/\/api.zoomos.by\/img\/item\/1929674\/1","https:\/\/api.zoomos.by\/img …" "zoomos_filters" => NULL "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => string(13) "1748584067000" ) protected _related => array(2) ( "category" => object Model_Category(40)
public blockDefaultView => bool FALSE protected template => object View(3){ protected _table_name => string(10) "categories" protected _has_many => array(4) ( "children" => array(4) ( "foreign_key" => string(9) "parent_id" "through" => NULL "far_key" => string(8) "child_id" "model" => string(8) "Category" ) "services" => array(5) ( "foreign_key" => string(11) "category_id" "through" => string(19) "categories_services" "far_key" => string(10) "service_id" "model" => string(7) "Service" "required" => bool TRUE ) "brand" => array(4) ( "foreign_key" => string(11) "category_id" "through" => string(14) "brand_category" "far_key" => string(8) "brand_id" "model" => string(5) "Brand" ) "filters" => array(4) ( "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(9) "filter_id" "model" => string(6) "Filter" ) ) protected _belongs_to => array(2) ( "section" => array(2) ( "foreign_key" => string(10) "section_id" "model" => string(7) "Section" ) "parent" => array(2) ( "foreign_key" => string(9) "parent_id" "model" => string(8) "Category" ) ) protected _grid_columns => array(7) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(28) "admin-category:edit?id=${id}" "external_url" => string(71) "site-category:index?section=${section.url}&category=${url}&parent=${id}" ) "active" => string(4) "bool" "on_main" => string(4) "bool" "section_id" => array(4) ( "type" => string(5) "child" "field" => string(4) "name" "model" => string(7) "section" "external_url" => string(37) "site-section:index?url=${section.url}" ) "filters" => array(3) ( "type" => string(4) "link" "route_str" => string(31) "admin-filter:index?parent=${id}" "title" => string(18) "[${filters|count}]" ) "add_child" => array(6) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(30) "admin-category:create?id=${id}" "title" => string(32) "<i class="fa fa-arrow-down"></i>" "alternative" => string(39) "Добавить вложенность" "color" => string(4) "blue" ) "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(43) "admin-category:delete?id=${id}&parent=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(4) "name" "order_direction" => string(3) "ASC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(34) ( "id" => string(3) "512" "name" => string(82) "Системы автоматического полива, распылители" "rod_name" => string(0) "" "ed_chislo" => NULL "vin_name" => NULL "rod_name_many" => NULL "h1" => string(0) "" "s_title" => string(150) "Системы автоматического полива, распылители. Большой каталог с лучшей ценой - 1teh.by" "s_description" => string(302) "Большой выбор систем автоматического полива в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бон …" "s_keywords" => string(0) "" "url" => string(45) "sistemyi-avtomaticheskogo-poliva-raspyiliteli" "md5_url" => string(32) "adee60af978a06a08497762ecf262941" "popular" => NULL "active" => string(1) "1" "position" => string(1) "0" "description" => string(0) "" "section_id" => string(1) "7" "parent_id" => string(3) "263" "level" => string(1) "2" "image" => string(56) "/files/category/512/0933d668ae56c1bf231073f377b174d8.jpg" "created_at" => string(19) "2019-03-27 14:10:14" "updated_at" => string(19) "2022-07-12 17:10:09" "video" => string(0) "" "delivery" => string(2) "15" "new" => string(1) "0" "important" => string(1) "0" "sale" => string(1) "0" "icon" => string(0) "" "banner_url" => string(0) "" "banner" => string(0) "" "on_main" => string(1) "0" "mobile_image" => string(0) "" "main_category_image" => NULL "main_banner" => string(0) "" ) protected _changed => array(0) protected _original_values => array(34) ( "id" => string(3) "512" "name" => string(82) "Системы автоматического полива, распылители" "rod_name" => string(0) "" "ed_chislo" => NULL "vin_name" => NULL "rod_name_many" => NULL "h1" => string(0) "" "s_title" => string(150) "Системы автоматического полива, распылители. Большой каталог с лучшей ценой - 1teh.by" "s_description" => string(302) "Большой выбор систем автоматического полива в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бон …" "s_keywords" => string(0) "" "url" => string(45) "sistemyi-avtomaticheskogo-poliva-raspyiliteli" "md5_url" => string(32) "adee60af978a06a08497762ecf262941" "popular" => NULL "active" => string(1) "1" "position" => string(1) "0" "description" => string(0) "" "section_id" => string(1) "7" "parent_id" => string(3) "263" "level" => string(1) "2" "image" => string(56) "/files/category/512/0933d668ae56c1bf231073f377b174d8.jpg" "created_at" => string(19) "2019-03-27 14:10:14" "updated_at" => string(19) "2022-07-12 17:10:09" "video" => string(0) "" "delivery" => string(2) "15" "new" => string(1) "0" "important" => string(1) "0" "sale" => string(1) "0" "icon" => string(0) "" "banner_url" => string(0) "" "banner" => string(0) "" "on_main" => string(1) "0" "mobile_image" => string(0) "" "main_category_image" => NULL "main_banner" => string(0) "" ) protected _related => array(1) ( "parent" => object Model_Category(40)
"brand" => object Model_Brand(40){ protected _table_name => string(10) "categories" protected _has_many => array(4) ( "children" => array(4) ( "foreign_key" => string(9) "parent_id" "through" => NULL "far_key" => string(8) "child_id" "model" => string(8) "Category" ) "services" => array(5) ( "foreign_key" => string(11) "category_id" "through" => string(19) "categories_services" "far_key" => string(10) "service_id" "model" => string(7) "Service" "required" => bool TRUE ) "brand" => array(4) ( "foreign_key" => string(11) "category_id" "through" => string(14) "brand_category" "far_key" => string(8) "brand_id" "model" => string(5) "Brand" ) "filters" => array(4) ( "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(9) "filter_id" "model" => string(6) "Filter" ) ) protected _belongs_to => array(2) ( "section" => array(2) ( "foreign_key" => string(10) "section_id" "model" => string(7) "Section" ) "parent" => array(2) ( "foreign_key" => string(9) "parent_id" "model" => string(8) "Category" ) ) protected _grid_columns => array(7) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(28) "admin-category:edit?id=${id}" "external_url" => string(71) "site-category:index?section=${section.url}&category=${url}&parent=${id}" ) "active" => string(4) "bool" "on_main" => string(4) "bool" "section_id" => array(4) ( "type" => string(5) "child" "field" => string(4) "name" "model" => string(7) "section" "external_url" => string(37) "site-section:index?url=${section.url}" ) "filters" => array(3) ( "type" => string(4) "link" "route_str" => string(31) "admin-filter:index?parent=${id}" "title" => string(18) "[${filters|count}]" ) "add_child" => array(6) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(30) "admin-category:create?id=${id}" "title" => string(32) "<i class="fa fa-arrow-down"></i>" "alternative" => string(39) "Добавить вложенность" "color" => string(4) "blue" ) "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(43) "admin-category:delete?id=${id}&parent=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(4) "name" "order_direction" => string(3) "ASC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(34) ( "id" => string(3) "263" "name" => string(29) "Садовая техника" "rod_name" => string(29) "Садовую технику" "ed_chislo" => string(29) "Садовая техника" "vin_name" => string(29) "садовой техники" "rod_name_many" => string(29) "садовой техники" "h1" => string(0) "" "s_title" => string(29) "Садовая техника" "s_description" => string(0) "" "s_keywords" => string(0) "" "url" => string(16) "sadovaya-tehnika" "md5_url" => string(32) "8a26814903f77e87df0e8732f6f070f1" "popular" => string(1) "7" "active" => string(1) "1" "position" => string(1) "0" "description" => string(0) "" "section_id" => string(1) "7" "parent_id" => NULL "level" => string(1) "1" "image" => string(56) "/files/category/263/784bb205d734c3037093743b87aa29c7.png" "created_at" => string(19) "2015-07-16 16:34:48" "updated_at" => string(19) "2021-03-17 14:42:07" "video" => string(0) "" "delivery" => string(2) "11" "new" => string(1) "0" "important" => string(1) "0" "sale" => string(1) "0" "icon" => string(0) "" "banner_url" => string(0) "" "banner" => string(0) "" "on_main" => string(1) "1" "mobile_image" => string(0) "" "main_category_image" => string(31) "/files/category/main-svg/12.svg" "main_banner" => string(56) "/files/category/263/72728767255844bc659522ef8ccf6363.jpg" ) protected _changed => array(0) protected _original_values => array(34) ( "id" => string(3) "263" "name" => string(29) "Садовая техника" "rod_name" => string(29) "Садовую технику" "ed_chislo" => string(29) "Садовая техника" "vin_name" => string(29) "садовой техники" "rod_name_many" => string(29) "садовой техники" "h1" => string(0) "" "s_title" => string(29) "Садовая техника" "s_description" => string(0) "" "s_keywords" => string(0) "" "url" => string(16) "sadovaya-tehnika" "md5_url" => string(32) "8a26814903f77e87df0e8732f6f070f1" "popular" => string(1) "7" "active" => string(1) "1" "position" => string(1) "0" "description" => string(0) "" "section_id" => string(1) "7" "parent_id" => NULL "level" => string(1) "1" "image" => string(56) "/files/category/263/784bb205d734c3037093743b87aa29c7.png" "created_at" => string(19) "2015-07-16 16:34:48" "updated_at" => string(19) "2021-03-17 14:42:07" "video" => string(0) "" "delivery" => string(2) "11" "new" => string(1) "0" "important" => string(1) "0" "sale" => string(1) "0" "icon" => string(0) "" "banner_url" => string(0) "" "banner" => string(0) "" "on_main" => string(1) "1" "mobile_image" => string(0) "" "main_category_image" => string(31) "/files/category/main-svg/12.svg" "main_banner" => string(56) "/files/category/263/72728767255844bc659522ef8ccf6363.jpg" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "category" protected _object_plural => string(10) "categories" protected _table_columns => array(34) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "rod_name" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "rod_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ed_chislo" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "ed_chislo" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "vin_name" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "vin_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rod_name_many" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "rod_name_many" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "h1" => array(12) ( "type" => string(6) "string" "column_name" => string(2) "h1" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "popular" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "popular" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "position" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(8) "position" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 15 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "section_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "section_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 17 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "parent_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(9) "parent_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 18 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "level" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(5) "level" "column_default" => string(1) "1" "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 19 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 20 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "created_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "created_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 21 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 22 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 23 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "delivery" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "delivery" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 24 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "new" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(3) "new" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 25 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "important" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(9) "important" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 26 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sale" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(4) "sale" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 27 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "icon" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "icon" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 28 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "banner_url" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "banner_url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 29 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "banner" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "banner" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 30 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "on_main" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(7) "on_main" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 31 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "mobile_image" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "mobile_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 32 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_category_image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(19) "main_category_image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 33 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_banner" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "main_banner" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 34 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "263" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "category" protected _object_plural => string(10) "categories" protected _table_columns => array(34) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "rod_name" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "rod_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ed_chislo" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "ed_chislo" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "vin_name" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "vin_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rod_name_many" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "rod_name_many" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "h1" => array(12) ( "type" => string(6) "string" "column_name" => string(2) "h1" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "popular" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "popular" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "position" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(8) "position" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 15 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "section_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "section_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 17 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "parent_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(9) "parent_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 18 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "level" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(5) "level" "column_default" => string(1) "1" "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 19 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 20 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "created_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "created_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 21 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 22 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 23 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "delivery" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "delivery" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 24 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "new" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(3) "new" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 25 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "important" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(9) "important" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 26 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sale" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(4) "sale" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 27 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "icon" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "icon" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 28 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "banner_url" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "banner_url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 29 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "banner" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "banner" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 30 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "on_main" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(7) "on_main" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 31 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "mobile_image" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "mobile_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 32 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_category_image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(19) "main_category_image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 33 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_banner" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "main_banner" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 34 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "512" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "category" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "category" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(5) "brand" protected _has_many => array(2) ( "product" => array(4) ( "foreign_key" => string(8) "brand_id" "through" => string(13) "brand_product" "model" => string(7) "Product" "far_key" => string(10) "product_id" ) "category" => array(4) ( "foreign_key" => string(8) "brand_id" "through" => string(14) "brand_category" "model" => string(8) "Category" "far_key" => string(11) "category_id" ) ) protected _grid_columns => array(6) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(25) "admin-brand:edit?id=${id}" "external_url" => string(27) "site-brand:index?url=${url}" ) "active" => string(4) "bool" "on_main" => string(4) "bool" "position" => string(8) "position" "description" => array(3) ( "width" => string(3) "40%" "route_str" => string(25) "admin-brand:edit?id=${id}" "type" => string(4) "more" ) "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "color" => string(3) "red" "route_str" => string(27) "admin-brand:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _form_fields => array(0) protected _grid_options => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(14) ( "id" => string(4) "2209" "name" => string(8) "Hozelock" "russian" => NULL "s_title" => NULL "s_description" => NULL "s_keywords" => NULL "url" => string(8) "hozelock" "md5_url" => string(32) "4d2055281b5181de281b1bf6427130c7" "popular" => NULL "active" => string(1) "1" "position" => string(1) "0" "description" => NULL "main_image" => NULL "on_main" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(14) ( "id" => string(4) "2209" "name" => string(8) "Hozelock" "russian" => NULL "s_title" => NULL "s_description" => NULL "s_keywords" => NULL "url" => string(8) "hozelock" "md5_url" => string(32) "4d2055281b5181de281b1bf6427130c7" "popular" => NULL "active" => string(1) "1" "position" => string(1) "0" "description" => NULL "main_image" => NULL "on_main" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(5) "brand" protected _object_plural => string(6) "brands" protected _table_columns => array(14) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(2) "50" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "UNI" "privileges" => string(31) "select,insert,update,references" ) "russian" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "russian" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "popular" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "popular" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "position" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(8) "position" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_image" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "main_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "on_main" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(7) "on_main" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(4) "2209" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "product" protected _object_plural => string(8) "products" protected _table_columns => array(63) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "256" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "top" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "top" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "important" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "important" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_image" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "main_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "more_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "more_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "comments_enabled" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "comments_enabled" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "create_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "create_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "update_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "update_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(10) "4294967295" "column_name" => string(7) "content" "column_default" => NULL "data_type" => string(8) "longtext" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "short_content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "short_content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "section_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "section_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "new_price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "new_price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 20 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "discount" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "discount" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "created_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "created_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "article" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "article" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 23 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "unique_code" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "unique_code" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "original" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "original" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 25 "character_maximum_length" => string(3) "512" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "empty" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "empty" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 26 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "to_upload" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "to_upload" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 27 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "reviews" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "reviews" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 28 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "brand_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(8) "brand_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 29 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 30 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 31 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "garanty" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(7) "garanty" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 32 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "importer" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "importer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 33 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "country_made" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "country_made" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 34 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "manufacturer" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "manufacturer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 35 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "service" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "service" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 36 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 37 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gift_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "gift_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 38 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "delivery" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "delivery" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 39 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rating" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "rating" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 40 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "fixed_price" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "fixed_price" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 41 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "popular" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "popular" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 42 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "expedient_on" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(12) "expedient_on" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 43 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "yandex_market_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(16) "yandex_market_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 44 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "no_percent" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "no_percent" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 45 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "free_delivery" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(13) "free_delivery" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 46 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "product_day" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "product_day" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 47 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pok" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "pok" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 48 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "halva" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "halva" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 49 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instructions" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(12) "instructions" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 50 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_hits" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "is_hits" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 51 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "no_percent_force" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "no_percent_force" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 52 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "narod" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(5) "narod" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 53 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "two_year" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "two_year" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 54 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "hit" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(3) "hit" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 55 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "zakaz" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(5) "zakaz" "column_default" => NULL "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 56 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "zoomos_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 57 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_filters" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(14) "zoomos_filters" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 58 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_corrupt" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(10) "is_corrupt" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 59 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "prepared" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "prepared" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 60 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_fixed" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "is_fixed" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 61 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ym_disabled" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(11) "ym_disabled" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 62 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_update_time" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(20) "18446744073709551615" "column_name" => string(18) "zoomos_update_time" "column_default" => NULL "data_type" => string(15) "bigint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 63 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(7) "1279366" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(5) "brand" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "product" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ private _layout => string(28) "layout/site/global_inner_new" protected _file => string(75) "/var/www/www-root/data/www/1teh.by/application/views/site/product/index.php" protected _data => array(119) ( "return_location" => NULL "isAppeal" => integer 0 "model" => object Model_Product(40)
private _view => string(5) "index" private _return_location => NULL public request => object Request(19){ protected _table_name => string(7) "product" protected _belongs_to => array(4) ( "section" => array(3) ( "foreign_key" => string(10) "section_id" "model" => string(7) "Section" "required" => bool TRUE ) "gift" => array(3) ( "foreign_key" => string(7) "gift_id" "model" => string(4) "Gift" "required" => bool TRUE ) "brand" => array(3) ( "foreign_key" => string(8) "brand_id" "model" => string(5) "Brand" "required" => bool TRUE ) "category" => array(3) ( "foreign_key" => string(11) "category_id" "model" => string(8) "Category" "required" => bool TRUE ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-product:edit?id=${id}" "external_url" => string(77) "site-product:index?product=${url}&category=${category.url}&article=${article}" ) "two_year" => string(4) "bool" "edit" => array(6) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(27) "admin-product:edit?id=${id}" "title" => string(26) "<i class="fa fa-edit"></i>" "color" => string(5) "green" "alternative" => string(26) "Редактировать" ) "delete" => array(7) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(29) "admin-product:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "alternative" => string(14) "Удалить" "color" => string(3) "red" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(2) "id" "order_direction" => string(4) "DESC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(63) ( "id" => string(7) "1279366" "name" => string(108) "Системы автоматического полива, распылители Hozelock Flexi Spray 2683" "url" => string(25) "flexi-spray-2683_hozelock" "md5_url" => string(32) "33cff390375fc0e8eeb3006d180d55e8" "top" => string(1) "0" "important" => string(1) "0" "main_image" => string(59) "/files/product/1279366/3e21e83c8a5b327679aec1ef20135d2d.jpg" "more_images" => string(265) "["\/files\/product\/1279366\/b1f16ffe14b3b1c7b9a32c1ad2cee943.jpg","\/files\/product\/1279366\/bf87be8d54ddae4a10f753299dc0eb03. …" "s_title" => string(164) "Купить Системы автоматического полива, распылители Hozelock Flexi Spray 2683 в Минске по низкой цене" "s_description" => string(244) "Лучшие цены на Flexi Spray 2683 и все товары Hozelock в магазине 1teh.by. Бесплатная доставка, отзывы на Системы автоматического …" "s_keywords" => string(108) "Системы автоматического полива, распылители,Hozelock,Flexi Spray 2683" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(2289) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Общая информация</td></tr><tr class="qugroup_em …" "short_content" => string(143) "распылитель дождеватель/пистолет/штанга, 3 режима, пластик, площадь полива 69 м2" "active" => string(1) "1" "section_id" => string(1) "7" "price" => string(6) "185.76" "new_price" => string(6) "185.76" "discount" => NULL "created_at" => string(19) "2025-05-31 16:32:25" "article" => string(16) "Flexi Spray 2683" "unique_code" => string(7) "1279366" "original" => string(51) "http://1teh.by/files/products/img_1619342_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(4) "2209" "updated_at" => NULL "category_id" => string(3) "512" "garanty" => string(4) "0.00" "importer" => string(90) "СП "Сканлинк" ОООг.Минск, 4-ый пер. Монтажников д.5-16" "country_made" => string(0) "" "manufacturer" => string(0) "" "service" => string(0) "" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "1" "free_delivery" => string(1) "1" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(246) "["https:\/\/api.zoomos.by\/img\/item\/1929674\/0","https:\/\/api.zoomos.by\/img\/item\/1929674\/1","https:\/\/api.zoomos.by\/img …" "zoomos_filters" => NULL "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => string(13) "1748584067000" ) protected _changed => array(0) protected _original_values => array(63) ( "id" => string(7) "1279366" "name" => string(108) "Системы автоматического полива, распылители Hozelock Flexi Spray 2683" "url" => string(25) "flexi-spray-2683_hozelock" "md5_url" => string(32) "33cff390375fc0e8eeb3006d180d55e8" "top" => string(1) "0" "important" => string(1) "0" "main_image" => string(59) "/files/product/1279366/3e21e83c8a5b327679aec1ef20135d2d.jpg" "more_images" => string(265) "["\/files\/product\/1279366\/b1f16ffe14b3b1c7b9a32c1ad2cee943.jpg","\/files\/product\/1279366\/bf87be8d54ddae4a10f753299dc0eb03. …" "s_title" => string(164) "Купить Системы автоматического полива, распылители Hozelock Flexi Spray 2683 в Минске по низкой цене" "s_description" => string(244) "Лучшие цены на Flexi Spray 2683 и все товары Hozelock в магазине 1teh.by. Бесплатная доставка, отзывы на Системы автоматического …" "s_keywords" => string(108) "Системы автоматического полива, распылители,Hozelock,Flexi Spray 2683" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(2289) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Общая информация</td></tr><tr class="qugroup_em …" "short_content" => string(143) "распылитель дождеватель/пистолет/штанга, 3 режима, пластик, площадь полива 69 м2" "active" => string(1) "1" "section_id" => string(1) "7" "price" => string(6) "185.76" "new_price" => string(6) "185.76" "discount" => NULL "created_at" => string(19) "2025-05-31 16:32:25" "article" => string(16) "Flexi Spray 2683" "unique_code" => string(7) "1279366" "original" => string(51) "http://1teh.by/files/products/img_1619342_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(4) "2209" "updated_at" => NULL "category_id" => string(3) "512" "garanty" => string(4) "0.00" "importer" => string(90) "СП "Сканлинк" ОООг.Минск, 4-ый пер. Монтажников д.5-16" "country_made" => string(0) "" "manufacturer" => string(0) "" "service" => string(0) "" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "1" "free_delivery" => string(1) "1" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(246) "["https:\/\/api.zoomos.by\/img\/item\/1929674\/0","https:\/\/api.zoomos.by\/img\/item\/1929674\/1","https:\/\/api.zoomos.by\/img …" "zoomos_filters" => NULL "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => string(13) "1748584067000" ) protected _related => array(1) ( "gift" => object Model_Gift(40)
"id" => string(7) "1279366" "name" => string(108) "Системы автоматического полива, распылители Hozelock Flexi Spray 2683" "url" => string(25) "flexi-spray-2683_hozelock" "md5_url" => string(32) "33cff390375fc0e8eeb3006d180d55e8" "top" => string(1) "0" "important" => string(1) "0" "main_image" => string(59) "/files/product/1279366/3e21e83c8a5b327679aec1ef20135d2d.jpg" "more_images" => string(265) "["\/files\/product\/1279366\/b1f16ffe14b3b1c7b9a32c1ad2cee943.jpg","\/files\/product\/1279366\/bf87be8d54ddae4a10f753299dc0eb03. …" "s_title" => string(126) " Hozelock Flexi Spray 2683 - купить по выгодной цене, доставка по Беларуси, отзывы" "s_description" => string(268) "Купить Hozelock Flexi Spray 2683 в интернет-магазине бытовой техники и электроники 1teh.by. Бесплатная доставка по Беларуси, с …" "s_keywords" => string(108) "Системы автоматического полива, распылители,Hozelock,Flexi Spray 2683" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(2289) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Общая информация</td></tr><tr class="qugroup_em …" "short_content" => string(143) "распылитель дождеватель/пистолет/штанга, 3 режима, пластик, площадь полива 69 м2" "active" => string(1) "1" "section_id" => NULL "price" => string(6) "185.76" "new_price" => string(6) "185.76" "discount" => NULL "created_at" => string(19) "2025-05-31 16:32:25" "article" => string(16) "Flexi Spray 2683" "unique_code" => string(7) "1279366" "original" => string(51) "http://1teh.by/files/products/img_1619342_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => object Database_MySQLi_Result(7){ protected _table_name => string(5) "gifts" protected _grid_columns => array(4) ( "name" => NULL "active" => string(4) "bool" "edit" => array(6) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(24) "admin-gift:edit?id=${id}" "title" => string(26) "<i class="fa fa-edit"></i>" "color" => string(5) "green" "alternative" => string(26) "Редактировать" ) "delete" => array(7) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(26) "admin-gift:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "alternative" => string(14) "Удалить" "color" => string(3) "red" "confirm" => string(20) "Вы уверены?" ) ) protected _form_fields => array(0) protected _grid_options => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _belongs_to => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(10) ( "id" => NULL "name" => NULL "image" => NULL "active" => NULL "url" => NULL "price" => NULL "s_title" => NULL "s_description" => NULL "s_keywords" => NULL "description" => NULL ) protected _changed => array(0) protected _original_values => array(0) protected _related => array(0) protected _valid => bool FALSE protected _loaded => bool FALSE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "gift" protected _object_plural => string(5) "gifts" protected _table_columns => array(10) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "character_maximum_length" => string(4) "2048" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "price" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => NULL protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "product" protected _object_plural => string(8) "products" protected _table_columns => array(63) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "256" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "top" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "top" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "important" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "important" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_image" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "main_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "more_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "more_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "comments_enabled" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "comments_enabled" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "create_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "create_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "update_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "update_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(10) "4294967295" "column_name" => string(7) "content" "column_default" => NULL "data_type" => string(8) "longtext" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "short_content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "short_content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "section_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "section_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "new_price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "new_price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 20 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "discount" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "discount" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "created_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "created_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "article" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "article" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 23 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "unique_code" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "unique_code" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "original" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "original" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 25 "character_maximum_length" => string(3) "512" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "empty" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "empty" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 26 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "to_upload" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "to_upload" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 27 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "reviews" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "reviews" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 28 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "brand_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(8) "brand_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 29 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 30 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 31 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "garanty" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(7) "garanty" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 32 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "importer" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "importer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 33 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "country_made" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "country_made" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 34 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "manufacturer" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "manufacturer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 35 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "service" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "service" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 36 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 37 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gift_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "gift_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 38 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "delivery" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "delivery" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 39 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rating" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "rating" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 40 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "fixed_price" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "fixed_price" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 41 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "popular" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "popular" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 42 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "expedient_on" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(12) "expedient_on" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 43 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "yandex_market_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(16) "yandex_market_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 44 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "no_percent" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "no_percent" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 45 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "free_delivery" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(13) "free_delivery" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 46 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "product_day" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "product_day" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 47 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pok" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "pok" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 48 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "halva" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "halva" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 49 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instructions" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(12) "instructions" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 50 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_hits" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "is_hits" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 51 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "no_percent_force" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "no_percent_force" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 52 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "narod" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(5) "narod" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 53 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "two_year" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "two_year" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 54 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "hit" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(3) "hit" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 55 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "zakaz" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(5) "zakaz" "column_default" => NULL "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 56 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "zoomos_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 57 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_filters" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(14) "zoomos_filters" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 58 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_corrupt" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(10) "is_corrupt" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 59 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "prepared" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "prepared" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 60 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_fixed" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "is_fixed" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 61 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ym_disabled" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(11) "ym_disabled" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 62 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_update_time" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(20) "18446744073709551615" "column_name" => string(18) "zoomos_update_time" "column_default" => NULL "data_type" => string(15) "bigint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 63 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(7) "1279366" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "gift" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "product" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _internal_row => integer 0 protected _query => string(538) "SELECT `reviews`.`id` AS `id`, `reviews`.`prod_id` AS `prod_id`, `reviews`.`name` AS `name`, `reviews`.`title` AS `title`, `revi …" protected _result => object mysqli_result(5)
"brand_id" => string(4) "2209" "updated_at" => NULL "category_id" => string(3) "512" "garanty" => string(4) "0.00" "importer" => string(90) "СП "Сканлинк" ОООг.Минск, 4-ый пер. Монтажников д.5-16" "country_made" => string(0) "" "manufacturer" => string(0) "" "service" => string(0) "" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => integer 0 "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "1" "free_delivery" => string(1) "1" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(246) "["https:\/\/api.zoomos.by\/img\/item\/1929674\/0","https:\/\/api.zoomos.by\/img\/item\/1929674\/1","https:\/\/api.zoomos.by\/img …" "zoomos_filters" => NULL "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => string(13) "1748584067000" "section_name" => NULL "section_url" => NULL "section_md5_url" => NULL "section_active" => NULL "section_s_title" => NULL "section_s_description" => NULL "section_s_keywords" => NULL "section_description" => NULL "section_position" => NULL "section_h1" => NULL "section_updated_at" => NULL "section_mobile_image" => NULL "section_main_section_image" => NULL "section_on_main" => NULL "is_mobile" => bool FALSE "other_brand" => array(6) ( 0 => array(5) ( "url" => string(9) "wmc-tools" "name" => string(9) "WMC Tools" "id" => string(4) "3571" "main_image" => NULL "rod_name_many" => NULL ) 1 => array(5) ( "url" => string(7) "karcher" "name" => string(7) "Karcher" "id" => string(2) "81" "main_image" => string(52) "/files/brand/81/3602c9baa7930ec9c4e4e5ef4a60d078.png" "rod_name_many" => NULL ) 2 => array(5) ( "url" => string(6) "bradas" "name" => string(6) "Bradas" "id" => string(4) "3323" "main_image" => NULL "rod_name_many" => NULL ) 3 => array(5) ( "url" => string(3) "juk" "name" => string(6) "Жук" "id" => string(4) "3216" "main_image" => NULL "rod_name_many" => NULL ) 4 => array(5) ( "url" => string(6) "claber" "name" => string(6) "Claber" "id" => string(4) "2724" "main_image" => NULL "rod_name_many" => NULL ) 5 => array(5) ( "url" => string(9) "akvadusya" "name" => string(16) "АкваДуся" "id" => string(4) "2152" "main_image" => NULL "rod_name_many" => NULL ) ) "other_product" => array(3) ( 0 => array(7) ( "name" => string(35) "Садовый инструмент" "rod_name" => string(0) "" "id" => string(3) "454" "url" => string(19) "sadovyiy-instrument" "image" => string(56) "/files/category/454/59feaa25f5ab6f0bb62ae39f0d2ad2f4.jpg" "parent_id" => string(3) "292" "sect_url" => string(31) "instrumentyi-i-sadovaya-tehnika" ) 1 => array(7) ( "name" => string(33) "Поливочные шланги" "rod_name" => string(0) "" "id" => string(4) "4272" "url" => string(20) "polivochnyie-shlangi" "image" => string(57) "/files/category/4272/b5d2c9907138987d13eef984fb4639e6.jpg" "parent_id" => string(3) "263" "sect_url" => string(31) "instrumentyi-i-sadovaya-tehnika" ) 2 => array(7) ( "name" => string(26) "Опрыскиватели" "rod_name" => string(0) "" "id" => string(4) "4051" "url" => string(14) "opryiskivateli" "image" => string(57) "/files/category/4051/e03b3923dd47da536cca2d263c3b22cf.jpg" "parent_id" => string(3) "263" "sect_url" => string(31) "instrumentyi-i-sadovaya-tehnika" ) ) "blog" => object Model_News(40){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 0 protected _current_row => integer 0 protected _as_object => string(13) "Model_Reviews" protected _object_params => NULL }{ protected _table_name => string(4) "news" protected _belongs_to => array(1) ( "category_news" => array(2) ( "foreign_key" => string(16) "category_news_id" "model" => string(12) "CategoryNews" ) ) protected _grid_columns => array(8) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(24) "admin-news:edit?id=${id}" "external_url" => string(26) "site-news:index?url=${url}" ) "s_title" => string(5) "empty" "s_description" => string(5) "empty" "s_keywords" => string(5) "empty" "active" => string(4) "bool" "updated_at" => NULL "edit" => array(6) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(24) "admin-news:edit?id=${id}" "title" => string(28) "<i class="fa fa-pencil"></i>" "color" => string(5) "green" "alternative" => string(26) "Редактировать" ) "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(26) "admin-news:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(3) ( "order_by" => string(10) "updated_at" "order_direction" => string(3) "ASC" "per_page" => integer 500 ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => NULL "name" => NULL "s_title" => NULL "s_description" => NULL "s_keywords" => NULL "url" => NULL "active" => NULL "updated_at" => NULL "static" => NULL "content" => NULL "short_text" => NULL "image" => NULL "more_images" => NULL "category_id" => NULL "category_news_id" => NULL ) protected _changed => array(0) protected _original_values => array(0) protected _related => array(0) protected _valid => bool FALSE protected _loaded => bool FALSE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "news" protected _object_plural => string(4) "news" protected _table_columns => array(15) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "comment" => string(0) "" "extra" => string(27) "on update CURRENT_TIMESTAMP" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "static" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "static" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(7) "content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "short_text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(10) "short_text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "more_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "more_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_news_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(16) "category_news_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => NULL protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
"installments" => array(1) ( 0 => object Model_Installment(40){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "news" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(12) "installments" protected _grid_columns => array(5) ( "name" => NULL "bank_name" => NULL "active" => string(4) "bool" "edit" => array(6) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(31) "admin-installment:edit?id=${id}" "title" => string(26) "<i class="fa fa-edit"></i>" "color" => string(5) "green" "alternative" => string(26) "Редактировать" ) "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(33) "admin-installment:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _form_fields => array(0) protected _grid_options => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _belongs_to => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(16) ( "id" => string(1) "5" "name" => string(18) "АльфаБанк" "variants" => string(18) "a:1:{i:4;s:1:"4";}" "min_sum" => string(3) "300" "max_sum" => string(5) "10000" "first" => string(1) "0" "bank_name" => string(30) "ЗАО «Альфа-Банк»" "bank_logo" => string(57) "/files/installment/5/23bee41438e02d84c9b69f0dcb28e9e6.png" "active" => string(1) "1" "text" => string(5089) "<div style="color: rgb(26, 26, 26); font-family: "YS Text", "Helvetica Neue", Helvetica, Arial, sans-serif; …" "s_title" => string(0) "" "s_description" => string(0) "" "s_keywords" => string(0) "" "insurance_rate" => string(0) "" "percent" => string(18) "a:1:{i:0;s:1:"0";}" "extra_cost" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(16) ( "id" => string(1) "5" "name" => string(18) "АльфаБанк" "variants" => string(18) "a:1:{i:4;s:1:"4";}" "min_sum" => string(3) "300" "max_sum" => string(5) "10000" "first" => string(1) "0" "bank_name" => string(30) "ЗАО «Альфа-Банк»" "bank_logo" => string(57) "/files/installment/5/23bee41438e02d84c9b69f0dcb28e9e6.png" "active" => string(1) "1" "text" => string(5089) "<div style="color: rgb(26, 26, 26); font-family: "YS Text", "Helvetica Neue", Helvetica, Arial, sans-serif; …" "s_title" => string(0) "" "s_description" => string(0) "" "s_keywords" => string(0) "" "insurance_rate" => string(0) "" "percent" => string(18) "a:1:{i:0;s:1:"0";}" "extra_cost" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(11) "installment" protected _object_plural => string(12) "installments" protected _table_columns => array(16) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "variants" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "variants" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "512" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "min_sum" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "min_sum" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(3) "255" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "max_sum" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "max_sum" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(3) "255" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "first" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(5) "first" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(3) "255" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "bank_name" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "bank_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "bank_logo" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(9) "bank_logo" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(6) "active" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "512" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "insurance_rate" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(14) "insurance_rate" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "percent" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(7) "percent" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "extra_cost" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "extra_cost" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 16 "display" => string(3) "255" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "5" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) "minInstallmentSum" => string(3) "300" "maxInstallmentSum" => string(5) "10000" "looked_products" => array(12) ( 0 => object Model_Product(40){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(11) "installment" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(7) "product" protected _belongs_to => array(4) ( "section" => array(3) ( "foreign_key" => string(10) "section_id" "model" => string(7) "Section" "required" => bool TRUE ) "gift" => array(3) ( "foreign_key" => string(7) "gift_id" "model" => string(4) "Gift" "required" => bool TRUE ) "brand" => array(3) ( "foreign_key" => string(8) "brand_id" "model" => string(5) "Brand" "required" => bool TRUE ) "category" => array(3) ( "foreign_key" => string(11) "category_id" "model" => string(8) "Category" "required" => bool TRUE ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-product:edit?id=${id}" "external_url" => string(77) "site-product:index?product=${url}&category=${category.url}&article=${article}" ) "two_year" => string(4) "bool" "edit" => array(6) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(27) "admin-product:edit?id=${id}" "title" => string(26) "<i class="fa fa-edit"></i>" "color" => string(5) "green" "alternative" => string(26) "Редактировать" ) "delete" => array(7) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(29) "admin-product:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "alternative" => string(14) "Удалить" "color" => string(3) "red" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(2) "id" "order_direction" => string(4) "DESC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(63) ( "id" => string(6) "437209" "name" => string(62) "Сэндвичницы, вафельницы Clatronic HA 3494" "url" => string(17) "ha-3494_clatronic" "md5_url" => string(32) "70cc8832456d2b95b9d1b062b66380bc" "top" => string(1) "0" "important" => string(1) "0" "main_image" => string(58) "/files/product/437209/d10235ca97724b6c7aa2ad1865caa60c.jpg" "more_images" => string(131) "["\/files\/product\/437209\/5f9f63faa92c6ebf4514936bb5400e6c.jpg","\/files\/product\/437209\/985344fbaa22fbec0d2b4a4a0027a548.jp …" "s_title" => string(118) "Купить Сэндвичницы, вафельницы Clatronic HA 3494 в Минске по низкой цене" "s_description" => string(198) "Лучшие цены на HA 3494 и все товары Clatronic в магазине 1teh.by. Бесплатная доставка, отзывы на Сэндвичницы, вафельницы" "s_keywords" => string(62) "Сэндвичницы, вафельницы,Clatronic,HA 3494" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(1528) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Основные</td></tr><tr class="qurow2"><td class= …" "short_content" => string(79) "вафельница, 1200 Вт, регулировка температуры" "active" => string(1) "1" "section_id" => string(1) "1" "price" => string(6) "145.40" "new_price" => string(6) "145.40" "discount" => NULL "created_at" => string(19) "2025-05-31 16:31:50" "article" => string(7) "HA 3494" "unique_code" => string(6) "437209" "original" => string(50) "http://1teh.by/files/products/img_402012_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(2) "31" "updated_at" => NULL "category_id" => string(4) "4299" "garanty" => string(5) "12.00" "importer" => string(180) "ООО «НТТ Импорт» 223060 Минская обл. Минский р-н Новодворский с/с 40/2 район д. Большое Стиклево оф.86<br>" "country_made" => string(0) "" "manufacturer" => string(43) "uwon-si Gyeonggi-do 443-742 Malaysia Penang" "service" => string(188) "ООО «НТТ Систем» Минский р-н Новодворский с/с 40/1-2 район д. Большое Стиклево Торгово-складской корпус №1" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "1" "free_delivery" => string(1) "1" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(145) "["https:\/\/api.zoomos.by\/img\/item\/564764\/0","https:\/\/api.zoomos.by\/img\/item\/564764\/1","https:\/\/api.zoomos.by\/img\/ …" "zoomos_filters" => NULL "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => string(13) "1748583523000" ) protected _changed => array(0) protected _original_values => array(63) ( "id" => string(6) "437209" "name" => string(62) "Сэндвичницы, вафельницы Clatronic HA 3494" "url" => string(17) "ha-3494_clatronic" "md5_url" => string(32) "70cc8832456d2b95b9d1b062b66380bc" "top" => string(1) "0" "important" => string(1) "0" "main_image" => string(58) "/files/product/437209/d10235ca97724b6c7aa2ad1865caa60c.jpg" "more_images" => string(131) "["\/files\/product\/437209\/5f9f63faa92c6ebf4514936bb5400e6c.jpg","\/files\/product\/437209\/985344fbaa22fbec0d2b4a4a0027a548.jp …" "s_title" => string(118) "Купить Сэндвичницы, вафельницы Clatronic HA 3494 в Минске по низкой цене" "s_description" => string(198) "Лучшие цены на HA 3494 и все товары Clatronic в магазине 1teh.by. Бесплатная доставка, отзывы на Сэндвичницы, вафельницы" "s_keywords" => string(62) "Сэндвичницы, вафельницы,Clatronic,HA 3494" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(1528) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Основные</td></tr><tr class="qurow2"><td class= …" "short_content" => string(79) "вафельница, 1200 Вт, регулировка температуры" "active" => string(1) "1" "section_id" => string(1) "1" "price" => string(6) "145.40" "new_price" => string(6) "145.40" "discount" => NULL "created_at" => string(19) "2025-05-31 16:31:50" "article" => string(7) "HA 3494" "unique_code" => string(6) "437209" "original" => string(50) "http://1teh.by/files/products/img_402012_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(2) "31" "updated_at" => NULL "category_id" => string(4) "4299" "garanty" => string(5) "12.00" "importer" => string(180) "ООО «НТТ Импорт» 223060 Минская обл. Минский р-н Новодворский с/с 40/2 район д. Большое Стиклево оф.86<br>" "country_made" => string(0) "" "manufacturer" => string(43) "uwon-si Gyeonggi-do 443-742 Malaysia Penang" "service" => string(188) "ООО «НТТ Систем» Минский р-н Новодворский с/с 40/1-2 район д. Большое Стиклево Торгово-складской корпус №1" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "1" "free_delivery" => string(1) "1" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(145) "["https:\/\/api.zoomos.by\/img\/item\/564764\/0","https:\/\/api.zoomos.by\/img\/item\/564764\/1","https:\/\/api.zoomos.by\/img\/ …" "zoomos_filters" => NULL "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => string(13) "1748583523000" ) protected _related => array(1) ( "section" => object Model_Section(40)
1 => object Model_Product(40){ protected _table_name => string(8) "sections" protected _has_many => array(1) ( "product" => array(4) ( "foreign_key" => string(10) "section_id" "through" => NULL "model" => string(7) "Product" "far_key" => string(10) "product_id" ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-section:edit?id=${id}" "external_url" => string(35) "site-section:index?url=${url}&page=" ) "active" => string(4) "bool" "position" => string(8) "position" "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(29) "admin-section:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(8) "position" "order_direction" => string(3) "ASC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(1) "1" "name" => string(17) "Для кухни" "url" => string(10) "dlya-kuhni" "md5_url" => string(32) "88ad44ed318cc2730fcbd8848a9817a1" "active" => string(1) "1" "s_title" => string(120) "Кухонная бытовая техника. Каталог кухонных принадлежностей - 1teh.by" "s_description" => string(293) "Большой выбор бытовой техники для кухни в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бонусы …" "s_keywords" => string(0) "" "description" => string(0) "" "position" => NULL "h1" => string(0) "" "updated_at" => string(19) "2025-05-31 17:01:39" "mobile_image" => string(0) "" "main_section_image" => string(0) "" "on_main" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(1) "1" "name" => string(17) "Для кухни" "url" => string(10) "dlya-kuhni" "md5_url" => string(32) "88ad44ed318cc2730fcbd8848a9817a1" "active" => string(1) "1" "s_title" => string(120) "Кухонная бытовая техника. Каталог кухонных принадлежностей - 1teh.by" "s_description" => string(293) "Большой выбор бытовой техники для кухни в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бонусы …" "s_keywords" => string(0) "" "description" => string(0) "" "position" => NULL "h1" => string(0) "" "updated_at" => string(19) "2025-05-31 17:01:39" "mobile_image" => string(0) "" "main_section_image" => string(0) "" "on_main" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "section" protected _object_plural => string(8) "sections" protected _table_columns => array(15) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(2) "50" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "position" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "position" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "h1" => array(12) ( "type" => string(6) "string" "column_name" => string(2) "h1" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "comment" => string(0) "" "extra" => string(27) "on update CURRENT_TIMESTAMP" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "mobile_image" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "mobile_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_section_image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(18) "main_section_image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "on_main" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "on_main" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "1" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "product" protected _object_plural => string(8) "products" protected _table_columns => array(63) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "256" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "top" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "top" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "important" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "important" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_image" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "main_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "more_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "more_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "comments_enabled" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "comments_enabled" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "create_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "create_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "update_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "update_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(10) "4294967295" "column_name" => string(7) "content" "column_default" => NULL "data_type" => string(8) "longtext" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "short_content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "short_content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "section_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "section_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "new_price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "new_price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 20 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "discount" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "discount" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "created_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "created_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "article" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "article" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 23 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "unique_code" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "unique_code" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "original" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "original" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 25 "character_maximum_length" => string(3) "512" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "empty" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "empty" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 26 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "to_upload" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "to_upload" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 27 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "reviews" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "reviews" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 28 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "brand_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(8) "brand_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 29 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 30 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 31 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "garanty" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(7) "garanty" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 32 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "importer" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "importer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 33 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "country_made" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "country_made" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 34 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "manufacturer" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "manufacturer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 35 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "service" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "service" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 36 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 37 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gift_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "gift_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 38 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "delivery" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "delivery" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 39 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rating" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "rating" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 40 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "fixed_price" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "fixed_price" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 41 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "popular" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "popular" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 42 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "expedient_on" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(12) "expedient_on" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 43 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "yandex_market_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(16) "yandex_market_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 44 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "no_percent" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "no_percent" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 45 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "free_delivery" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(13) "free_delivery" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 46 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "product_day" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "product_day" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 47 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pok" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "pok" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 48 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "halva" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "halva" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 49 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instructions" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(12) "instructions" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 50 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_hits" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "is_hits" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 51 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "no_percent_force" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "no_percent_force" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 52 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "narod" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(5) "narod" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 53 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "two_year" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "two_year" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 54 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "hit" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(3) "hit" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 55 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "zakaz" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(5) "zakaz" "column_default" => NULL "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 56 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "zoomos_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 57 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_filters" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(14) "zoomos_filters" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 58 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_corrupt" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(10) "is_corrupt" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 59 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "prepared" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "prepared" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 60 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_fixed" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "is_fixed" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 61 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ym_disabled" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(11) "ym_disabled" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 62 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_update_time" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(20) "18446744073709551615" "column_name" => string(18) "zoomos_update_time" "column_default" => NULL "data_type" => string(15) "bigint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 63 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(6) "437209" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "section" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "product" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(7) "product" protected _belongs_to => array(4) ( "section" => array(3) ( "foreign_key" => string(10) "section_id" "model" => string(7) "Section" "required" => bool TRUE ) "gift" => array(3) ( "foreign_key" => string(7) "gift_id" "model" => string(4) "Gift" "required" => bool TRUE ) "brand" => array(3) ( "foreign_key" => string(8) "brand_id" "model" => string(5) "Brand" "required" => bool TRUE ) "category" => array(3) ( "foreign_key" => string(11) "category_id" "model" => string(8) "Category" "required" => bool TRUE ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-product:edit?id=${id}" "external_url" => string(77) "site-product:index?product=${url}&category=${category.url}&article=${article}" ) "two_year" => string(4) "bool" "edit" => array(6) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(27) "admin-product:edit?id=${id}" "title" => string(26) "<i class="fa fa-edit"></i>" "color" => string(5) "green" "alternative" => string(26) "Редактировать" ) "delete" => array(7) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(29) "admin-product:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "alternative" => string(14) "Удалить" "color" => string(3) "red" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(2) "id" "order_direction" => string(4) "DESC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(63) ( "id" => string(6) "540145" "name" => string(62) "Сэндвичницы, вафельницы Clatronic WA 3492" "url" => string(17) "wa-3492_clatronic" "md5_url" => string(32) "8f909c5de1ba743290ad226fa2e082bc" "top" => string(1) "0" "important" => string(1) "0" "main_image" => string(58) "/files/product/540145/8f7554fb8d145736052407a6113f57ce.jpg" "more_images" => NULL "s_title" => string(118) "Купить Сэндвичницы, вафельницы Clatronic WA 3492 в Минске по низкой цене" "s_description" => string(198) "Лучшие цены на WA 3492 и все товары Clatronic в магазине 1teh.by. Бесплатная доставка, отзывы на Сэндвичницы, вафельницы" "s_keywords" => string(62) "Сэндвичницы, вафельницы,Clatronic,WA 3492" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(1454) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Основные</td></tr><tr class="qurow2"><td class= …" "short_content" => string(79) "вафельница, 1000 Вт, регулировка температуры" "active" => string(1) "1" "section_id" => string(1) "1" "price" => string(6) "180.70" "new_price" => string(6) "180.70" "discount" => NULL "created_at" => string(19) "2025-05-31 16:31:50" "article" => string(7) "WA 3492" "unique_code" => string(6) "540145" "original" => string(50) "http://1teh.by/files/products/img_429756_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(2) "31" "updated_at" => NULL "category_id" => string(4) "4299" "garanty" => string(5) "12.00" "importer" => string(180) "ООО «НТТ Импорт» 223060 Минская обл. Минский р-н Новодворский с/с 40/2 район д. Большое Стиклево оф.86<br>" "country_made" => string(0) "" "manufacturer" => string(43) "uwon-si Gyeonggi-do 443-742 Malaysia Penang" "service" => string(188) "ООО «НТТ Систем» Минский р-н Новодворский с/с 40/1-2 район д. Большое Стиклево Торгово-складской корпус №1" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "1" "free_delivery" => string(1) "1" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(49) "["https:\/\/api.zoomos.by\/img\/item\/564771\/0"]" "zoomos_filters" => NULL "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => string(13) "1748583523000" ) protected _changed => array(0) protected _original_values => array(63) ( "id" => string(6) "540145" "name" => string(62) "Сэндвичницы, вафельницы Clatronic WA 3492" "url" => string(17) "wa-3492_clatronic" "md5_url" => string(32) "8f909c5de1ba743290ad226fa2e082bc" "top" => string(1) "0" "important" => string(1) "0" "main_image" => string(58) "/files/product/540145/8f7554fb8d145736052407a6113f57ce.jpg" "more_images" => NULL "s_title" => string(118) "Купить Сэндвичницы, вафельницы Clatronic WA 3492 в Минске по низкой цене" "s_description" => string(198) "Лучшие цены на WA 3492 и все товары Clatronic в магазине 1teh.by. Бесплатная доставка, отзывы на Сэндвичницы, вафельницы" "s_keywords" => string(62) "Сэндвичницы, вафельницы,Clatronic,WA 3492" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(1454) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Основные</td></tr><tr class="qurow2"><td class= …" "short_content" => string(79) "вафельница, 1000 Вт, регулировка температуры" "active" => string(1) "1" "section_id" => string(1) "1" "price" => string(6) "180.70" "new_price" => string(6) "180.70" "discount" => NULL "created_at" => string(19) "2025-05-31 16:31:50" "article" => string(7) "WA 3492" "unique_code" => string(6) "540145" "original" => string(50) "http://1teh.by/files/products/img_429756_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(2) "31" "updated_at" => NULL "category_id" => string(4) "4299" "garanty" => string(5) "12.00" "importer" => string(180) "ООО «НТТ Импорт» 223060 Минская обл. Минский р-н Новодворский с/с 40/2 район д. Большое Стиклево оф.86<br>" "country_made" => string(0) "" "manufacturer" => string(43) "uwon-si Gyeonggi-do 443-742 Malaysia Penang" "service" => string(188) "ООО «НТТ Систем» Минский р-н Новодворский с/с 40/1-2 район д. Большое Стиклево Торгово-складской корпус №1" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "1" "free_delivery" => string(1) "1" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(49) "["https:\/\/api.zoomos.by\/img\/item\/564771\/0"]" "zoomos_filters" => NULL "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => string(13) "1748583523000" ) protected _related => array(1) ( "section" => object Model_Section(40)
2 => object Model_Product(40){ protected _table_name => string(8) "sections" protected _has_many => array(1) ( "product" => array(4) ( "foreign_key" => string(10) "section_id" "through" => NULL "model" => string(7) "Product" "far_key" => string(10) "product_id" ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-section:edit?id=${id}" "external_url" => string(35) "site-section:index?url=${url}&page=" ) "active" => string(4) "bool" "position" => string(8) "position" "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(29) "admin-section:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(8) "position" "order_direction" => string(3) "ASC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(1) "1" "name" => string(17) "Для кухни" "url" => string(10) "dlya-kuhni" "md5_url" => string(32) "88ad44ed318cc2730fcbd8848a9817a1" "active" => string(1) "1" "s_title" => string(120) "Кухонная бытовая техника. Каталог кухонных принадлежностей - 1teh.by" "s_description" => string(293) "Большой выбор бытовой техники для кухни в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бонусы …" "s_keywords" => string(0) "" "description" => string(0) "" "position" => NULL "h1" => string(0) "" "updated_at" => string(19) "2025-05-31 17:01:39" "mobile_image" => string(0) "" "main_section_image" => string(0) "" "on_main" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(1) "1" "name" => string(17) "Для кухни" "url" => string(10) "dlya-kuhni" "md5_url" => string(32) "88ad44ed318cc2730fcbd8848a9817a1" "active" => string(1) "1" "s_title" => string(120) "Кухонная бытовая техника. Каталог кухонных принадлежностей - 1teh.by" "s_description" => string(293) "Большой выбор бытовой техники для кухни в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бонусы …" "s_keywords" => string(0) "" "description" => string(0) "" "position" => NULL "h1" => string(0) "" "updated_at" => string(19) "2025-05-31 17:01:39" "mobile_image" => string(0) "" "main_section_image" => string(0) "" "on_main" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "section" protected _object_plural => string(8) "sections" protected _table_columns => array(15) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(2) "50" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "position" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "position" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "h1" => array(12) ( "type" => string(6) "string" "column_name" => string(2) "h1" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "comment" => string(0) "" "extra" => string(27) "on update CURRENT_TIMESTAMP" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "mobile_image" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "mobile_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_section_image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(18) "main_section_image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "on_main" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "on_main" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "1" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "product" protected _object_plural => string(8) "products" protected _table_columns => array(63) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "256" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "top" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "top" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "important" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "important" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_image" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "main_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "more_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "more_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "comments_enabled" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "comments_enabled" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "create_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "create_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "update_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "update_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(10) "4294967295" "column_name" => string(7) "content" "column_default" => NULL "data_type" => string(8) "longtext" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "short_content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "short_content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "section_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "section_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "new_price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "new_price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 20 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "discount" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "discount" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "created_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "created_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "article" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "article" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 23 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "unique_code" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "unique_code" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "original" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "original" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 25 "character_maximum_length" => string(3) "512" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "empty" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "empty" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 26 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "to_upload" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "to_upload" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 27 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "reviews" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "reviews" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 28 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "brand_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(8) "brand_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 29 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 30 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 31 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "garanty" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(7) "garanty" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 32 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "importer" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "importer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 33 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "country_made" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "country_made" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 34 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "manufacturer" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "manufacturer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 35 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "service" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "service" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 36 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 37 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gift_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "gift_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 38 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "delivery" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "delivery" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 39 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rating" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "rating" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 40 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "fixed_price" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "fixed_price" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 41 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "popular" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "popular" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 42 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "expedient_on" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(12) "expedient_on" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 43 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "yandex_market_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(16) "yandex_market_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 44 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "no_percent" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "no_percent" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 45 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "free_delivery" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(13) "free_delivery" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 46 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "product_day" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "product_day" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 47 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pok" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "pok" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 48 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "halva" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "halva" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 49 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instructions" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(12) "instructions" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 50 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_hits" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "is_hits" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 51 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "no_percent_force" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "no_percent_force" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 52 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "narod" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(5) "narod" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 53 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "two_year" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "two_year" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 54 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "hit" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(3) "hit" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 55 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "zakaz" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(5) "zakaz" "column_default" => NULL "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 56 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "zoomos_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 57 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_filters" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(14) "zoomos_filters" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 58 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_corrupt" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(10) "is_corrupt" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 59 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "prepared" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "prepared" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 60 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_fixed" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "is_fixed" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 61 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ym_disabled" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(11) "ym_disabled" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 62 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_update_time" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(20) "18446744073709551615" "column_name" => string(18) "zoomos_update_time" "column_default" => NULL "data_type" => string(15) "bigint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 63 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(6) "540145" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "section" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "product" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(7) "product" protected _belongs_to => array(4) ( "section" => array(3) ( "foreign_key" => string(10) "section_id" "model" => string(7) "Section" "required" => bool TRUE ) "gift" => array(3) ( "foreign_key" => string(7) "gift_id" "model" => string(4) "Gift" "required" => bool TRUE ) "brand" => array(3) ( "foreign_key" => string(8) "brand_id" "model" => string(5) "Brand" "required" => bool TRUE ) "category" => array(3) ( "foreign_key" => string(11) "category_id" "model" => string(8) "Category" "required" => bool TRUE ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-product:edit?id=${id}" "external_url" => string(77) "site-product:index?product=${url}&category=${category.url}&article=${article}" ) "two_year" => string(4) "bool" "edit" => array(6) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(27) "admin-product:edit?id=${id}" "title" => string(26) "<i class="fa fa-edit"></i>" "color" => string(5) "green" "alternative" => string(26) "Редактировать" ) "delete" => array(7) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(29) "admin-product:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "alternative" => string(14) "Удалить" "color" => string(3) "red" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(2) "id" "order_direction" => string(4) "DESC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(63) ( "id" => string(7) "1209178" "name" => string(76) "Мультимедиа акустика Dialog AP-150 (коричневый)" "url" => string(26) "ap-150-korichnevyiy_dialog" "md5_url" => string(32) "9ab6970e361a00b67406a5fd6ad50167" "top" => string(1) "0" "important" => string(1) "0" "main_image" => string(59) "/files/product/1209178/e9796c13617c650febc98343ebdf3a5f.jpg" "more_images" => string(265) "["\/files\/product\/1209178\/dc9444a18c10d15fcae1598ac633f030.jpg","\/files\/product\/1209178\/a9d51491b0651b22fcdd9d31dbc43324. …" "s_title" => string(132) "Купить Мультимедиа акустика Dialog AP-150 (коричневый) в Минске по низкой цене" "s_description" => string(212) "Лучшие цены на AP-150 (коричневый) и все товары Dialog в магазине 1teh.by. Бесплатная доставка, отзывы на Мультимедиа акустика" "s_keywords" => string(76) "Мультимедиа акустика,Dialog,AP-150 (коричневый)" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(6234) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Основные</td></tr><tr class="qurow2"><td class= …" "short_content" => string(61) "2.1, 20 Вт, пульт, радио, карты памяти" "active" => string(1) "1" "section_id" => string(1) "3" "price" => string(6) "167.40" "new_price" => string(6) "167.40" "discount" => NULL "created_at" => string(19) "2025-05-31 16:31:40" "article" => string(29) "AP-150 (коричневый)" "unique_code" => string(7) "1209178" "original" => string(51) "http://1teh.by/files/products/img_1110226_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(3) "420" "updated_at" => NULL "category_id" => string(1) "5" "garanty" => string(5) "12.00" "importer" => string(97) "ООО «Компания «МИПС» 220103 РБ г. Минск ул. Кнорина 50 к. 501" "country_made" => string(10) "КИТАЙ" "manufacturer" => string(116) "ЗАО «ДиалогИнвест» 199106 Россия Санкт-Петербург Средний пр. В.О. 86" "service" => string(85) "ООО «БТМ Трейдинг» ул. Даумана 23 оф. 63 8 (029) 993-73-35" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "1" "free_delivery" => string(1) "1" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(246) "["https:\/\/api.zoomos.by\/img\/item\/1080472\/6","https:\/\/api.zoomos.by\/img\/item\/1080472\/0","https:\/\/api.zoomos.by\/img …" "zoomos_filters" => string(8519) "[{"id":145,"name":"\u0423\u0441\u0438\u043b\u0438\u0442\u0435\u043b\u044c","type":"enum","unit":"","orderPriority":10,"values":[ …" "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => string(13) "1748583249000" ) protected _changed => array(0) protected _original_values => array(63) ( "id" => string(7) "1209178" "name" => string(76) "Мультимедиа акустика Dialog AP-150 (коричневый)" "url" => string(26) "ap-150-korichnevyiy_dialog" "md5_url" => string(32) "9ab6970e361a00b67406a5fd6ad50167" "top" => string(1) "0" "important" => string(1) "0" "main_image" => string(59) "/files/product/1209178/e9796c13617c650febc98343ebdf3a5f.jpg" "more_images" => string(265) "["\/files\/product\/1209178\/dc9444a18c10d15fcae1598ac633f030.jpg","\/files\/product\/1209178\/a9d51491b0651b22fcdd9d31dbc43324. …" "s_title" => string(132) "Купить Мультимедиа акустика Dialog AP-150 (коричневый) в Минске по низкой цене" "s_description" => string(212) "Лучшие цены на AP-150 (коричневый) и все товары Dialog в магазине 1teh.by. Бесплатная доставка, отзывы на Мультимедиа акустика" "s_keywords" => string(76) "Мультимедиа акустика,Dialog,AP-150 (коричневый)" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(6234) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Основные</td></tr><tr class="qurow2"><td class= …" "short_content" => string(61) "2.1, 20 Вт, пульт, радио, карты памяти" "active" => string(1) "1" "section_id" => string(1) "3" "price" => string(6) "167.40" "new_price" => string(6) "167.40" "discount" => NULL "created_at" => string(19) "2025-05-31 16:31:40" "article" => string(29) "AP-150 (коричневый)" "unique_code" => string(7) "1209178" "original" => string(51) "http://1teh.by/files/products/img_1110226_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(3) "420" "updated_at" => NULL "category_id" => string(1) "5" "garanty" => string(5) "12.00" "importer" => string(97) "ООО «Компания «МИПС» 220103 РБ г. Минск ул. Кнорина 50 к. 501" "country_made" => string(10) "КИТАЙ" "manufacturer" => string(116) "ЗАО «ДиалогИнвест» 199106 Россия Санкт-Петербург Средний пр. В.О. 86" "service" => string(85) "ООО «БТМ Трейдинг» ул. Даумана 23 оф. 63 8 (029) 993-73-35" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "1" "free_delivery" => string(1) "1" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(246) "["https:\/\/api.zoomos.by\/img\/item\/1080472\/6","https:\/\/api.zoomos.by\/img\/item\/1080472\/0","https:\/\/api.zoomos.by\/img …" "zoomos_filters" => string(8519) "[{"id":145,"name":"\u0423\u0441\u0438\u043b\u0438\u0442\u0435\u043b\u044c","type":"enum","unit":"","orderPriority":10,"values":[ …" "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => string(13) "1748583249000" ) protected _related => array(1) ( "section" => object Model_Section(40)
3 => object Model_Product(40){ protected _table_name => string(8) "sections" protected _has_many => array(1) ( "product" => array(4) ( "foreign_key" => string(10) "section_id" "through" => NULL "model" => string(7) "Product" "far_key" => string(10) "product_id" ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-section:edit?id=${id}" "external_url" => string(35) "site-section:index?url=${url}&page=" ) "active" => string(4) "bool" "position" => string(8) "position" "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(29) "admin-section:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(8) "position" "order_direction" => string(3) "ASC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(1) "3" "name" => string(22) "Электроника" "url" => string(11) "elektronika" "md5_url" => string(32) "76b94353c5e008664be91220b3bcffb8" "active" => string(1) "1" "s_title" => string(94) "Электроника. Большой каталог электроприборов - 1teh.by" "s_description" => string(276) "Большой выбор электроприборов в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бонусы и скидки. …" "s_keywords" => string(0) "" "description" => string(0) "" "position" => NULL "h1" => string(0) "" "updated_at" => string(19) "2025-05-31 17:01:39" "mobile_image" => string(0) "" "main_section_image" => string(0) "" "on_main" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(1) "3" "name" => string(22) "Электроника" "url" => string(11) "elektronika" "md5_url" => string(32) "76b94353c5e008664be91220b3bcffb8" "active" => string(1) "1" "s_title" => string(94) "Электроника. Большой каталог электроприборов - 1teh.by" "s_description" => string(276) "Большой выбор электроприборов в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бонусы и скидки. …" "s_keywords" => string(0) "" "description" => string(0) "" "position" => NULL "h1" => string(0) "" "updated_at" => string(19) "2025-05-31 17:01:39" "mobile_image" => string(0) "" "main_section_image" => string(0) "" "on_main" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "section" protected _object_plural => string(8) "sections" protected _table_columns => array(15) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(2) "50" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "position" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "position" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "h1" => array(12) ( "type" => string(6) "string" "column_name" => string(2) "h1" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "comment" => string(0) "" "extra" => string(27) "on update CURRENT_TIMESTAMP" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "mobile_image" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "mobile_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_section_image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(18) "main_section_image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "on_main" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "on_main" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "3" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "product" protected _object_plural => string(8) "products" protected _table_columns => array(63) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "256" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "top" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "top" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "important" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "important" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_image" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "main_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "more_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "more_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "comments_enabled" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "comments_enabled" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "create_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "create_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "update_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "update_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(10) "4294967295" "column_name" => string(7) "content" "column_default" => NULL "data_type" => string(8) "longtext" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "short_content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "short_content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "section_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "section_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "new_price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "new_price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 20 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "discount" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "discount" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "created_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "created_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "article" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "article" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 23 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "unique_code" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "unique_code" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "original" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "original" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 25 "character_maximum_length" => string(3) "512" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "empty" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "empty" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 26 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "to_upload" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "to_upload" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 27 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "reviews" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "reviews" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 28 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "brand_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(8) "brand_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 29 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 30 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 31 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "garanty" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(7) "garanty" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 32 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "importer" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "importer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 33 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "country_made" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "country_made" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 34 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "manufacturer" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "manufacturer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 35 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "service" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "service" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 36 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 37 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gift_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "gift_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 38 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "delivery" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "delivery" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 39 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rating" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "rating" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 40 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "fixed_price" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "fixed_price" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 41 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "popular" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "popular" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 42 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "expedient_on" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(12) "expedient_on" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 43 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "yandex_market_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(16) "yandex_market_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 44 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "no_percent" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "no_percent" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 45 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "free_delivery" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(13) "free_delivery" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 46 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "product_day" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "product_day" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 47 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pok" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "pok" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 48 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "halva" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "halva" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 49 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instructions" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(12) "instructions" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 50 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_hits" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "is_hits" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 51 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "no_percent_force" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "no_percent_force" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 52 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "narod" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(5) "narod" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 53 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "two_year" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "two_year" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 54 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "hit" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(3) "hit" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 55 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "zakaz" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(5) "zakaz" "column_default" => NULL "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 56 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "zoomos_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 57 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_filters" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(14) "zoomos_filters" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 58 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_corrupt" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(10) "is_corrupt" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 59 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "prepared" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "prepared" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 60 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_fixed" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "is_fixed" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 61 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ym_disabled" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(11) "ym_disabled" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 62 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_update_time" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(20) "18446744073709551615" "column_name" => string(18) "zoomos_update_time" "column_default" => NULL "data_type" => string(15) "bigint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 63 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(7) "1209178" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "section" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "product" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(7) "product" protected _belongs_to => array(4) ( "section" => array(3) ( "foreign_key" => string(10) "section_id" "model" => string(7) "Section" "required" => bool TRUE ) "gift" => array(3) ( "foreign_key" => string(7) "gift_id" "model" => string(4) "Gift" "required" => bool TRUE ) "brand" => array(3) ( "foreign_key" => string(8) "brand_id" "model" => string(5) "Brand" "required" => bool TRUE ) "category" => array(3) ( "foreign_key" => string(11) "category_id" "model" => string(8) "Category" "required" => bool TRUE ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-product:edit?id=${id}" "external_url" => string(77) "site-product:index?product=${url}&category=${category.url}&article=${article}" ) "two_year" => string(4) "bool" "edit" => array(6) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(27) "admin-product:edit?id=${id}" "title" => string(26) "<i class="fa fa-edit"></i>" "color" => string(5) "green" "alternative" => string(26) "Редактировать" ) "delete" => array(7) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(29) "admin-product:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "alternative" => string(14) "Удалить" "color" => string(3) "red" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(2) "id" "order_direction" => string(4) "DESC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(63) ( "id" => string(7) "1252522" "name" => string(45) "Кронштейны Onkron M5 (черный)" "url" => string(18) "m5-chernyiy_onkron" "md5_url" => string(32) "9d7a57ef16d80f20396ae70d81378154" "top" => NULL "important" => NULL "main_image" => string(59) "/files/product/1252522/9072d2dc2fe6d5bd7d25ee54719a2575.jpg" "more_images" => string(727) "["\/files\/product\/1252522\/eff211029073c22fe76305dee9835415.jpg","\/files\/product\/1252522\/54b86ef0554bf9f5b1358df426ede480. …" "s_title" => string(101) "Купить Кронштейны Onkron M5 (черный) в Минске по низкой цене" "s_description" => string(181) "Лучшие цены на M5 (черный) и все товары Onkron в магазине 1teh.by. Бесплатная доставка, отзывы на Кронштейны" "s_keywords" => string(45) "Кронштейны,Onkron,M5 (черный)" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(1497) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Основные</td></tr><tr class="qurow2"><td class= …" "short_content" => string(100) "настенный кронштейн для ЖК-телевизора 32-55", цвет черный" "active" => string(1) "1" "section_id" => string(1) "3" "price" => string(6) "237.24" "new_price" => string(6) "237.24" "discount" => NULL "created_at" => string(19) "2025-05-31 16:31:42" "article" => string(17) "M5 (черный)" "unique_code" => string(7) "1252522" "original" => string(51) "http://1teh.by/files/products/img_1375144_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(4) "1916" "updated_at" => NULL "category_id" => string(2) "24" "garanty" => string(5) "12.00" "importer" => string(0) "" "country_made" => string(10) "КИТАЙ" "manufacturer" => string(0) "" "service" => string(0) "" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => NULL "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "1" "free_delivery" => string(1) "1" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => NULL "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(592) "["https:\/\/api.zoomos.by\/img\/item\/2132106\/0","https:\/\/api.zoomos.by\/img\/item\/2132106\/1","https:\/\/api.zoomos.by\/img …" "zoomos_filters" => NULL "is_corrupt" => string(1) "0" "prepared" => NULL "is_fixed" => string(1) "0" "ym_disabled" => string(1) "1" "zoomos_update_time" => string(13) "1748583302000" ) protected _changed => array(0) protected _original_values => array(63) ( "id" => string(7) "1252522" "name" => string(45) "Кронштейны Onkron M5 (черный)" "url" => string(18) "m5-chernyiy_onkron" "md5_url" => string(32) "9d7a57ef16d80f20396ae70d81378154" "top" => NULL "important" => NULL "main_image" => string(59) "/files/product/1252522/9072d2dc2fe6d5bd7d25ee54719a2575.jpg" "more_images" => string(727) "["\/files\/product\/1252522\/eff211029073c22fe76305dee9835415.jpg","\/files\/product\/1252522\/54b86ef0554bf9f5b1358df426ede480. …" "s_title" => string(101) "Купить Кронштейны Onkron M5 (черный) в Минске по низкой цене" "s_description" => string(181) "Лучшие цены на M5 (черный) и все товары Onkron в магазине 1teh.by. Бесплатная доставка, отзывы на Кронштейны" "s_keywords" => string(45) "Кронштейны,Onkron,M5 (черный)" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(1497) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Основные</td></tr><tr class="qurow2"><td class= …" "short_content" => string(100) "настенный кронштейн для ЖК-телевизора 32-55", цвет черный" "active" => string(1) "1" "section_id" => string(1) "3" "price" => string(6) "237.24" "new_price" => string(6) "237.24" "discount" => NULL "created_at" => string(19) "2025-05-31 16:31:42" "article" => string(17) "M5 (черный)" "unique_code" => string(7) "1252522" "original" => string(51) "http://1teh.by/files/products/img_1375144_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(4) "1916" "updated_at" => NULL "category_id" => string(2) "24" "garanty" => string(5) "12.00" "importer" => string(0) "" "country_made" => string(10) "КИТАЙ" "manufacturer" => string(0) "" "service" => string(0) "" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => NULL "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "1" "free_delivery" => string(1) "1" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => NULL "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(592) "["https:\/\/api.zoomos.by\/img\/item\/2132106\/0","https:\/\/api.zoomos.by\/img\/item\/2132106\/1","https:\/\/api.zoomos.by\/img …" "zoomos_filters" => NULL "is_corrupt" => string(1) "0" "prepared" => NULL "is_fixed" => string(1) "0" "ym_disabled" => string(1) "1" "zoomos_update_time" => string(13) "1748583302000" ) protected _related => array(1) ( "section" => object Model_Section(40)
4 => object Model_Product(40){ protected _table_name => string(8) "sections" protected _has_many => array(1) ( "product" => array(4) ( "foreign_key" => string(10) "section_id" "through" => NULL "model" => string(7) "Product" "far_key" => string(10) "product_id" ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-section:edit?id=${id}" "external_url" => string(35) "site-section:index?url=${url}&page=" ) "active" => string(4) "bool" "position" => string(8) "position" "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(29) "admin-section:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(8) "position" "order_direction" => string(3) "ASC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(1) "3" "name" => string(22) "Электроника" "url" => string(11) "elektronika" "md5_url" => string(32) "76b94353c5e008664be91220b3bcffb8" "active" => string(1) "1" "s_title" => string(94) "Электроника. Большой каталог электроприборов - 1teh.by" "s_description" => string(276) "Большой выбор электроприборов в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бонусы и скидки. …" "s_keywords" => string(0) "" "description" => string(0) "" "position" => NULL "h1" => string(0) "" "updated_at" => string(19) "2025-05-31 17:01:39" "mobile_image" => string(0) "" "main_section_image" => string(0) "" "on_main" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(1) "3" "name" => string(22) "Электроника" "url" => string(11) "elektronika" "md5_url" => string(32) "76b94353c5e008664be91220b3bcffb8" "active" => string(1) "1" "s_title" => string(94) "Электроника. Большой каталог электроприборов - 1teh.by" "s_description" => string(276) "Большой выбор электроприборов в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бонусы и скидки. …" "s_keywords" => string(0) "" "description" => string(0) "" "position" => NULL "h1" => string(0) "" "updated_at" => string(19) "2025-05-31 17:01:39" "mobile_image" => string(0) "" "main_section_image" => string(0) "" "on_main" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "section" protected _object_plural => string(8) "sections" protected _table_columns => array(15) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(2) "50" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "position" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "position" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "h1" => array(12) ( "type" => string(6) "string" "column_name" => string(2) "h1" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "comment" => string(0) "" "extra" => string(27) "on update CURRENT_TIMESTAMP" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "mobile_image" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "mobile_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_section_image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(18) "main_section_image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "on_main" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "on_main" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "3" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "product" protected _object_plural => string(8) "products" protected _table_columns => array(63) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "256" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "top" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "top" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "important" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "important" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_image" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "main_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "more_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "more_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "comments_enabled" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "comments_enabled" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "create_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "create_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "update_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "update_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(10) "4294967295" "column_name" => string(7) "content" "column_default" => NULL "data_type" => string(8) "longtext" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "short_content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "short_content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "section_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "section_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "new_price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "new_price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 20 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "discount" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "discount" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "created_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "created_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "article" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "article" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 23 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "unique_code" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "unique_code" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "original" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "original" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 25 "character_maximum_length" => string(3) "512" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "empty" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "empty" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 26 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "to_upload" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "to_upload" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 27 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "reviews" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "reviews" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 28 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "brand_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(8) "brand_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 29 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 30 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 31 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "garanty" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(7) "garanty" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 32 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "importer" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "importer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 33 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "country_made" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "country_made" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 34 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "manufacturer" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "manufacturer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 35 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "service" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "service" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 36 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 37 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gift_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "gift_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 38 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "delivery" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "delivery" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 39 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rating" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "rating" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 40 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "fixed_price" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "fixed_price" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 41 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "popular" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "popular" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 42 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "expedient_on" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(12) "expedient_on" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 43 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "yandex_market_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(16) "yandex_market_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 44 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "no_percent" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "no_percent" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 45 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "free_delivery" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(13) "free_delivery" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 46 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "product_day" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "product_day" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 47 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pok" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "pok" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 48 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "halva" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "halva" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 49 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instructions" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(12) "instructions" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 50 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_hits" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "is_hits" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 51 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "no_percent_force" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "no_percent_force" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 52 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "narod" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(5) "narod" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 53 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "two_year" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "two_year" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 54 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "hit" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(3) "hit" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 55 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "zakaz" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(5) "zakaz" "column_default" => NULL "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 56 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "zoomos_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 57 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_filters" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(14) "zoomos_filters" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 58 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_corrupt" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(10) "is_corrupt" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 59 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "prepared" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "prepared" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 60 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_fixed" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "is_fixed" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 61 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ym_disabled" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(11) "ym_disabled" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 62 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_update_time" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(20) "18446744073709551615" "column_name" => string(18) "zoomos_update_time" "column_default" => NULL "data_type" => string(15) "bigint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 63 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(7) "1252522" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "section" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "product" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(7) "product" protected _belongs_to => array(4) ( "section" => array(3) ( "foreign_key" => string(10) "section_id" "model" => string(7) "Section" "required" => bool TRUE ) "gift" => array(3) ( "foreign_key" => string(7) "gift_id" "model" => string(4) "Gift" "required" => bool TRUE ) "brand" => array(3) ( "foreign_key" => string(8) "brand_id" "model" => string(5) "Brand" "required" => bool TRUE ) "category" => array(3) ( "foreign_key" => string(11) "category_id" "model" => string(8) "Category" "required" => bool TRUE ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-product:edit?id=${id}" "external_url" => string(77) "site-product:index?product=${url}&category=${category.url}&article=${article}" ) "two_year" => string(4) "bool" "edit" => array(6) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(27) "admin-product:edit?id=${id}" "title" => string(26) "<i class="fa fa-edit"></i>" "color" => string(5) "green" "alternative" => string(26) "Редактировать" ) "delete" => array(7) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(29) "admin-product:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "alternative" => string(14) "Удалить" "color" => string(3) "red" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(2) "id" "order_direction" => string(4) "DESC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(63) ( "id" => string(7) "1279366" "name" => string(108) "Системы автоматического полива, распылители Hozelock Flexi Spray 2683" "url" => string(25) "flexi-spray-2683_hozelock" "md5_url" => string(32) "33cff390375fc0e8eeb3006d180d55e8" "top" => string(1) "0" "important" => string(1) "0" "main_image" => string(59) "/files/product/1279366/3e21e83c8a5b327679aec1ef20135d2d.jpg" "more_images" => string(265) "["\/files\/product\/1279366\/b1f16ffe14b3b1c7b9a32c1ad2cee943.jpg","\/files\/product\/1279366\/bf87be8d54ddae4a10f753299dc0eb03. …" "s_title" => string(164) "Купить Системы автоматического полива, распылители Hozelock Flexi Spray 2683 в Минске по низкой цене" "s_description" => string(244) "Лучшие цены на Flexi Spray 2683 и все товары Hozelock в магазине 1teh.by. Бесплатная доставка, отзывы на Системы автоматического …" "s_keywords" => string(108) "Системы автоматического полива, распылители,Hozelock,Flexi Spray 2683" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(2289) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Общая информация</td></tr><tr class="qugroup_em …" "short_content" => string(143) "распылитель дождеватель/пистолет/штанга, 3 режима, пластик, площадь полива 69 м2" "active" => string(1) "1" "section_id" => string(1) "7" "price" => string(6) "185.76" "new_price" => string(6) "185.76" "discount" => NULL "created_at" => string(19) "2025-05-31 16:32:25" "article" => string(16) "Flexi Spray 2683" "unique_code" => string(7) "1279366" "original" => string(51) "http://1teh.by/files/products/img_1619342_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(4) "2209" "updated_at" => NULL "category_id" => string(3) "512" "garanty" => string(4) "0.00" "importer" => string(90) "СП "Сканлинк" ОООг.Минск, 4-ый пер. Монтажников д.5-16" "country_made" => string(0) "" "manufacturer" => string(0) "" "service" => string(0) "" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "1" "free_delivery" => string(1) "1" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(246) "["https:\/\/api.zoomos.by\/img\/item\/1929674\/0","https:\/\/api.zoomos.by\/img\/item\/1929674\/1","https:\/\/api.zoomos.by\/img …" "zoomos_filters" => NULL "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => string(13) "1748584067000" ) protected _changed => array(0) protected _original_values => array(63) ( "id" => string(7) "1279366" "name" => string(108) "Системы автоматического полива, распылители Hozelock Flexi Spray 2683" "url" => string(25) "flexi-spray-2683_hozelock" "md5_url" => string(32) "33cff390375fc0e8eeb3006d180d55e8" "top" => string(1) "0" "important" => string(1) "0" "main_image" => string(59) "/files/product/1279366/3e21e83c8a5b327679aec1ef20135d2d.jpg" "more_images" => string(265) "["\/files\/product\/1279366\/b1f16ffe14b3b1c7b9a32c1ad2cee943.jpg","\/files\/product\/1279366\/bf87be8d54ddae4a10f753299dc0eb03. …" "s_title" => string(164) "Купить Системы автоматического полива, распылители Hozelock Flexi Spray 2683 в Минске по низкой цене" "s_description" => string(244) "Лучшие цены на Flexi Spray 2683 и все товары Hozelock в магазине 1teh.by. Бесплатная доставка, отзывы на Системы автоматического …" "s_keywords" => string(108) "Системы автоматического полива, распылители,Hozelock,Flexi Spray 2683" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(2289) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Общая информация</td></tr><tr class="qugroup_em …" "short_content" => string(143) "распылитель дождеватель/пистолет/штанга, 3 режима, пластик, площадь полива 69 м2" "active" => string(1) "1" "section_id" => string(1) "7" "price" => string(6) "185.76" "new_price" => string(6) "185.76" "discount" => NULL "created_at" => string(19) "2025-05-31 16:32:25" "article" => string(16) "Flexi Spray 2683" "unique_code" => string(7) "1279366" "original" => string(51) "http://1teh.by/files/products/img_1619342_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(4) "2209" "updated_at" => NULL "category_id" => string(3) "512" "garanty" => string(4) "0.00" "importer" => string(90) "СП "Сканлинк" ОООг.Минск, 4-ый пер. Монтажников д.5-16" "country_made" => string(0) "" "manufacturer" => string(0) "" "service" => string(0) "" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "1" "free_delivery" => string(1) "1" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(246) "["https:\/\/api.zoomos.by\/img\/item\/1929674\/0","https:\/\/api.zoomos.by\/img\/item\/1929674\/1","https:\/\/api.zoomos.by\/img …" "zoomos_filters" => NULL "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => string(13) "1748584067000" ) protected _related => array(1) ( "section" => object Model_Section(40)
5 => object Model_Product(40){ protected _table_name => string(8) "sections" protected _has_many => array(1) ( "product" => array(4) ( "foreign_key" => string(10) "section_id" "through" => NULL "model" => string(7) "Product" "far_key" => string(10) "product_id" ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-section:edit?id=${id}" "external_url" => string(35) "site-section:index?url=${url}&page=" ) "active" => string(4) "bool" "position" => string(8) "position" "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(29) "admin-section:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(8) "position" "order_direction" => string(3) "ASC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(1) "7" "name" => string(55) "Инструменты и Садовая техника" "url" => string(31) "instrumentyi-i-sadovaya-tehnika" "md5_url" => string(32) "3809a652761c6d794a3e58998d28f4fb" "active" => string(1) "1" "s_title" => string(123) "Инструменты и садовая техника. Большой каталог с лучшей ценой - 1teh.by" "s_description" => string(303) "Большой выбор инструментов и садовой техники в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бо …" "s_keywords" => string(0) "" "description" => string(0) "" "position" => NULL "h1" => string(0) "" "updated_at" => string(19) "2025-05-31 17:01:39" "mobile_image" => string(0) "" "main_section_image" => string(0) "" "on_main" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(1) "7" "name" => string(55) "Инструменты и Садовая техника" "url" => string(31) "instrumentyi-i-sadovaya-tehnika" "md5_url" => string(32) "3809a652761c6d794a3e58998d28f4fb" "active" => string(1) "1" "s_title" => string(123) "Инструменты и садовая техника. Большой каталог с лучшей ценой - 1teh.by" "s_description" => string(303) "Большой выбор инструментов и садовой техники в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бо …" "s_keywords" => string(0) "" "description" => string(0) "" "position" => NULL "h1" => string(0) "" "updated_at" => string(19) "2025-05-31 17:01:39" "mobile_image" => string(0) "" "main_section_image" => string(0) "" "on_main" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "section" protected _object_plural => string(8) "sections" protected _table_columns => array(15) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(2) "50" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "position" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "position" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "h1" => array(12) ( "type" => string(6) "string" "column_name" => string(2) "h1" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "comment" => string(0) "" "extra" => string(27) "on update CURRENT_TIMESTAMP" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "mobile_image" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "mobile_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_section_image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(18) "main_section_image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "on_main" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "on_main" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "7" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "product" protected _object_plural => string(8) "products" protected _table_columns => array(63) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "256" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "top" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "top" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "important" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "important" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_image" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "main_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "more_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "more_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "comments_enabled" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "comments_enabled" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "create_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "create_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "update_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "update_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(10) "4294967295" "column_name" => string(7) "content" "column_default" => NULL "data_type" => string(8) "longtext" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "short_content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "short_content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "section_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "section_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "new_price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "new_price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 20 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "discount" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "discount" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "created_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "created_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "article" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "article" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 23 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "unique_code" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "unique_code" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "original" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "original" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 25 "character_maximum_length" => string(3) "512" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "empty" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "empty" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 26 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "to_upload" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "to_upload" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 27 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "reviews" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "reviews" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 28 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "brand_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(8) "brand_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 29 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 30 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 31 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "garanty" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(7) "garanty" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 32 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "importer" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "importer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 33 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "country_made" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "country_made" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 34 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "manufacturer" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "manufacturer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 35 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "service" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "service" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 36 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 37 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gift_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "gift_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 38 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "delivery" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "delivery" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 39 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rating" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "rating" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 40 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "fixed_price" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "fixed_price" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 41 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "popular" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "popular" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 42 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "expedient_on" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(12) "expedient_on" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 43 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "yandex_market_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(16) "yandex_market_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 44 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "no_percent" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "no_percent" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 45 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "free_delivery" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(13) "free_delivery" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 46 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "product_day" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "product_day" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 47 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pok" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "pok" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 48 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "halva" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "halva" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 49 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instructions" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(12) "instructions" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 50 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_hits" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "is_hits" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 51 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "no_percent_force" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "no_percent_force" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 52 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "narod" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(5) "narod" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 53 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "two_year" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "two_year" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 54 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "hit" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(3) "hit" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 55 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "zakaz" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(5) "zakaz" "column_default" => NULL "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 56 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "zoomos_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 57 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_filters" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(14) "zoomos_filters" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 58 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_corrupt" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(10) "is_corrupt" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 59 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "prepared" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "prepared" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 60 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_fixed" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "is_fixed" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 61 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ym_disabled" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(11) "ym_disabled" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 62 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_update_time" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(20) "18446744073709551615" "column_name" => string(18) "zoomos_update_time" "column_default" => NULL "data_type" => string(15) "bigint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 63 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(7) "1279366" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "section" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "product" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(7) "product" protected _belongs_to => array(4) ( "section" => array(3) ( "foreign_key" => string(10) "section_id" "model" => string(7) "Section" "required" => bool TRUE ) "gift" => array(3) ( "foreign_key" => string(7) "gift_id" "model" => string(4) "Gift" "required" => bool TRUE ) "brand" => array(3) ( "foreign_key" => string(8) "brand_id" "model" => string(5) "Brand" "required" => bool TRUE ) "category" => array(3) ( "foreign_key" => string(11) "category_id" "model" => string(8) "Category" "required" => bool TRUE ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-product:edit?id=${id}" "external_url" => string(77) "site-product:index?product=${url}&category=${category.url}&article=${article}" ) "two_year" => string(4) "bool" "edit" => array(6) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(27) "admin-product:edit?id=${id}" "title" => string(26) "<i class="fa fa-edit"></i>" "color" => string(5) "green" "alternative" => string(26) "Редактировать" ) "delete" => array(7) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(29) "admin-product:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "alternative" => string(14) "Удалить" "color" => string(3) "red" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(2) "id" "order_direction" => string(4) "DESC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(63) ( "id" => string(7) "1297586" "name" => string(85) "Автомобильные видеорегистраторы 70mai Dash Cam 4K A800S" "url" => string(23) "dash-cam-4k-a800s_70mai" "md5_url" => string(32) "de3c49e95708684bfa55837c8000bfe4" "top" => string(1) "0" "important" => string(1) "0" "main_image" => string(59) "/files/product/1297586/dbf3fe37c77e3648f2dafee8c9c08bae.jpg" "more_images" => string(463) "["\/files\/product\/1297586\/203f681306b5d8cd6263a4cfe729a7d2.jpg","\/files\/product\/1297586\/818a9988c5a60300c1f1b045667eb859. …" "s_title" => string(141) "Купить Автомобильные видеорегистраторы 70mai Dash Cam 4K A800S в Минске по низкой цене" "s_description" => string(221) "Лучшие цены на Dash Cam 4K A800S и все товары 70mai в магазине 1teh.by. Бесплатная доставка, отзывы на Автомобильные видеорегист …" "s_keywords" => string(85) "Автомобильные видеорегистраторы,70mai,Dash Cam 4K A800S" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(8628) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Общая информация</td></tr><tr class="qugroup_em …" "short_content" => string(117) "основная камера: 8 Мп 140°, видео 3840x2160 H.264, GPS, G-сенсор, экран 3" 854 x 480" "active" => string(1) "1" "section_id" => string(1) "5" "price" => string(6) "574.70" "new_price" => string(6) "547.33" "discount" => NULL "created_at" => string(19) "2025-05-31 16:31:46" "article" => string(17) "Dash Cam 4K A800S" "unique_code" => string(7) "1297586" "original" => string(51) "http://1teh.by/files/products/img_2508265_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(4) "2629" "updated_at" => NULL "category_id" => string(2) "51" "garanty" => string(5) "12.00" "importer" => string(177) "ООО ТрайдексБелПлюс 223016, Минская обл., Минский р-н Новодворский с/с, 33/1-8 к.64 р-н д. Большое Стиклево" "country_made" => string(10) "КИТАЙ" "manufacturer" => string(126) "70маи Ко., Лтд. Кинг Шу Рум 2А, 2 этаж, Строеине 1, 401, Каобао РД, Шанхай 200030." "service" => string(156) "ООО ""НетАир"",220125, Минская обл., Минский р-н, Боровлянский с/с, д. Копище,ул. Лопатина, д. 7" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "0" "free_delivery" => string(1) "0" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(393) "["https:\/\/api.zoomos.by\/img\/item\/2082166\/0","https:\/\/api.zoomos.by\/img\/item\/2082166\/1","https:\/\/api.zoomos.by\/img …" "zoomos_filters" => NULL "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => string(13) "1748583427000" ) protected _changed => array(0) protected _original_values => array(63) ( "id" => string(7) "1297586" "name" => string(85) "Автомобильные видеорегистраторы 70mai Dash Cam 4K A800S" "url" => string(23) "dash-cam-4k-a800s_70mai" "md5_url" => string(32) "de3c49e95708684bfa55837c8000bfe4" "top" => string(1) "0" "important" => string(1) "0" "main_image" => string(59) "/files/product/1297586/dbf3fe37c77e3648f2dafee8c9c08bae.jpg" "more_images" => string(463) "["\/files\/product\/1297586\/203f681306b5d8cd6263a4cfe729a7d2.jpg","\/files\/product\/1297586\/818a9988c5a60300c1f1b045667eb859. …" "s_title" => string(141) "Купить Автомобильные видеорегистраторы 70mai Dash Cam 4K A800S в Минске по низкой цене" "s_description" => string(221) "Лучшие цены на Dash Cam 4K A800S и все товары 70mai в магазине 1teh.by. Бесплатная доставка, отзывы на Автомобильные видеорегист …" "s_keywords" => string(85) "Автомобильные видеорегистраторы,70mai,Dash Cam 4K A800S" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(8628) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Общая информация</td></tr><tr class="qugroup_em …" "short_content" => string(117) "основная камера: 8 Мп 140°, видео 3840x2160 H.264, GPS, G-сенсор, экран 3" 854 x 480" "active" => string(1) "1" "section_id" => string(1) "5" "price" => string(6) "574.70" "new_price" => string(6) "547.33" "discount" => NULL "created_at" => string(19) "2025-05-31 16:31:46" "article" => string(17) "Dash Cam 4K A800S" "unique_code" => string(7) "1297586" "original" => string(51) "http://1teh.by/files/products/img_2508265_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(4) "2629" "updated_at" => NULL "category_id" => string(2) "51" "garanty" => string(5) "12.00" "importer" => string(177) "ООО ТрайдексБелПлюс 223016, Минская обл., Минский р-н Новодворский с/с, 33/1-8 к.64 р-н д. Большое Стиклево" "country_made" => string(10) "КИТАЙ" "manufacturer" => string(126) "70маи Ко., Лтд. Кинг Шу Рум 2А, 2 этаж, Строеине 1, 401, Каобао РД, Шанхай 200030." "service" => string(156) "ООО ""НетАир"",220125, Минская обл., Минский р-н, Боровлянский с/с, д. Копище,ул. Лопатина, д. 7" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "0" "free_delivery" => string(1) "0" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(393) "["https:\/\/api.zoomos.by\/img\/item\/2082166\/0","https:\/\/api.zoomos.by\/img\/item\/2082166\/1","https:\/\/api.zoomos.by\/img …" "zoomos_filters" => NULL "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => string(13) "1748583427000" ) protected _related => array(1) ( "section" => object Model_Section(40)
6 => object Model_Product(40){ protected _table_name => string(8) "sections" protected _has_many => array(1) ( "product" => array(4) ( "foreign_key" => string(10) "section_id" "through" => NULL "model" => string(7) "Product" "far_key" => string(10) "product_id" ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-section:edit?id=${id}" "external_url" => string(35) "site-section:index?url=${url}&page=" ) "active" => string(4) "bool" "position" => string(8) "position" "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(29) "admin-section:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(8) "position" "order_direction" => string(3) "ASC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(1) "5" "name" => string(8) "Авто" "url" => string(4) "avto" "md5_url" => string(32) "d616a0b2d0d9ebed26e4e3436e19f42c" "active" => string(1) "1" "s_title" => string(112) "Автотовары и аксессуары. Большой каталог с лучшей ценой - 1teh.by" "s_description" => string(294) "Большой выбор автотоваров и аксессуаров в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бонусы …" "s_keywords" => string(0) "" "description" => string(0) "" "position" => NULL "h1" => string(0) "" "updated_at" => string(19) "2025-05-31 17:01:39" "mobile_image" => string(0) "" "main_section_image" => string(0) "" "on_main" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(1) "5" "name" => string(8) "Авто" "url" => string(4) "avto" "md5_url" => string(32) "d616a0b2d0d9ebed26e4e3436e19f42c" "active" => string(1) "1" "s_title" => string(112) "Автотовары и аксессуары. Большой каталог с лучшей ценой - 1teh.by" "s_description" => string(294) "Большой выбор автотоваров и аксессуаров в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бонусы …" "s_keywords" => string(0) "" "description" => string(0) "" "position" => NULL "h1" => string(0) "" "updated_at" => string(19) "2025-05-31 17:01:39" "mobile_image" => string(0) "" "main_section_image" => string(0) "" "on_main" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "section" protected _object_plural => string(8) "sections" protected _table_columns => array(15) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(2) "50" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "position" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "position" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "h1" => array(12) ( "type" => string(6) "string" "column_name" => string(2) "h1" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "comment" => string(0) "" "extra" => string(27) "on update CURRENT_TIMESTAMP" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "mobile_image" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "mobile_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_section_image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(18) "main_section_image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "on_main" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "on_main" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "5" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "product" protected _object_plural => string(8) "products" protected _table_columns => array(63) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "256" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "top" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "top" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "important" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "important" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_image" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "main_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "more_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "more_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "comments_enabled" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "comments_enabled" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "create_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "create_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "update_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "update_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(10) "4294967295" "column_name" => string(7) "content" "column_default" => NULL "data_type" => string(8) "longtext" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "short_content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "short_content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "section_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "section_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "new_price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "new_price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 20 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "discount" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "discount" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "created_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "created_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "article" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "article" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 23 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "unique_code" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "unique_code" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "original" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "original" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 25 "character_maximum_length" => string(3) "512" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "empty" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "empty" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 26 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "to_upload" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "to_upload" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 27 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "reviews" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "reviews" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 28 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "brand_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(8) "brand_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 29 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 30 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 31 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "garanty" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(7) "garanty" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 32 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "importer" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "importer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 33 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "country_made" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "country_made" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 34 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "manufacturer" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "manufacturer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 35 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "service" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "service" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 36 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 37 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gift_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "gift_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 38 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "delivery" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "delivery" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 39 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rating" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "rating" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 40 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "fixed_price" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "fixed_price" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 41 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "popular" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "popular" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 42 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "expedient_on" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(12) "expedient_on" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 43 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "yandex_market_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(16) "yandex_market_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 44 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "no_percent" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "no_percent" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 45 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "free_delivery" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(13) "free_delivery" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 46 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "product_day" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "product_day" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 47 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pok" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "pok" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 48 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "halva" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "halva" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 49 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instructions" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(12) "instructions" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 50 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_hits" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "is_hits" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 51 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "no_percent_force" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "no_percent_force" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 52 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "narod" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(5) "narod" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 53 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "two_year" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "two_year" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 54 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "hit" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(3) "hit" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 55 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "zakaz" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(5) "zakaz" "column_default" => NULL "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 56 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "zoomos_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 57 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_filters" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(14) "zoomos_filters" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 58 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_corrupt" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(10) "is_corrupt" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 59 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "prepared" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "prepared" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 60 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_fixed" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "is_fixed" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 61 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ym_disabled" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(11) "ym_disabled" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 62 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_update_time" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(20) "18446744073709551615" "column_name" => string(18) "zoomos_update_time" "column_default" => NULL "data_type" => string(15) "bigint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 63 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(7) "1297586" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "section" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "product" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(7) "product" protected _belongs_to => array(4) ( "section" => array(3) ( "foreign_key" => string(10) "section_id" "model" => string(7) "Section" "required" => bool TRUE ) "gift" => array(3) ( "foreign_key" => string(7) "gift_id" "model" => string(4) "Gift" "required" => bool TRUE ) "brand" => array(3) ( "foreign_key" => string(8) "brand_id" "model" => string(5) "Brand" "required" => bool TRUE ) "category" => array(3) ( "foreign_key" => string(11) "category_id" "model" => string(8) "Category" "required" => bool TRUE ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-product:edit?id=${id}" "external_url" => string(77) "site-product:index?product=${url}&category=${category.url}&article=${article}" ) "two_year" => string(4) "bool" "edit" => array(6) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(27) "admin-product:edit?id=${id}" "title" => string(26) "<i class="fa fa-edit"></i>" "color" => string(5) "green" "alternative" => string(26) "Редактировать" ) "delete" => array(7) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(29) "admin-product:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "alternative" => string(14) "Удалить" "color" => string(3) "red" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(2) "id" "order_direction" => string(4) "DESC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(63) ( "id" => string(7) "1316490" "name" => string(94) "Системы автоматического полива, распылители Claber 8707" "url" => string(11) "8707_claber" "md5_url" => string(32) "5b6cf62598f3a7323733bcbe0397583d" "top" => string(1) "0" "important" => string(1) "0" "main_image" => string(59) "/files/product/1316490/5a51ff28197d092a803fa1165306f18b.jpg" "more_images" => NULL "s_title" => string(150) "Купить Системы автоматического полива, распылители Claber 8707 в Минске по низкой цене" "s_description" => string(230) "Лучшие цены на 8707 и все товары Claber в магазине 1teh.by. Бесплатная доставка, отзывы на Системы автоматического полива, распы …" "s_keywords" => string(94) "Системы автоматического полива, распылители,Claber,8707" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(2351) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Общая информация</td></tr><tr class="qugroup_em …" "short_content" => string(256) "распылитель осциллирующий, металл/пластик, дальность распыления 22.5 м, площадь полива 397 м2, с регулировкой расхода, с регулир …" "active" => string(1) "1" "section_id" => string(1) "7" "price" => string(5) "91.00" "new_price" => string(5) "91.00" "discount" => NULL "created_at" => string(19) "2025-05-31 16:32:25" "article" => string(4) "8707" "unique_code" => string(7) "1316490" "original" => string(51) "http://1teh.by/files/products/img_1836340_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(4) "2724" "updated_at" => NULL "category_id" => string(3) "512" "garanty" => string(5) "12.00" "importer" => string(100) "Акватехнологии ООО 220070, г. Минск , ул. Олега Кошевого д. 5" "country_made" => string(0) "" "manufacturer" => string(0) "" "service" => string(0) "" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "1" "free_delivery" => string(1) "1" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(50) "["https:\/\/api.zoomos.by\/img\/item\/1823460\/0"]" "zoomos_filters" => NULL "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => string(13) "1748584068000" ) protected _changed => array(0) protected _original_values => array(63) ( "id" => string(7) "1316490" "name" => string(94) "Системы автоматического полива, распылители Claber 8707" "url" => string(11) "8707_claber" "md5_url" => string(32) "5b6cf62598f3a7323733bcbe0397583d" "top" => string(1) "0" "important" => string(1) "0" "main_image" => string(59) "/files/product/1316490/5a51ff28197d092a803fa1165306f18b.jpg" "more_images" => NULL "s_title" => string(150) "Купить Системы автоматического полива, распылители Claber 8707 в Минске по низкой цене" "s_description" => string(230) "Лучшие цены на 8707 и все товары Claber в магазине 1teh.by. Бесплатная доставка, отзывы на Системы автоматического полива, распы …" "s_keywords" => string(94) "Системы автоматического полива, распылители,Claber,8707" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(2351) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Общая информация</td></tr><tr class="qugroup_em …" "short_content" => string(256) "распылитель осциллирующий, металл/пластик, дальность распыления 22.5 м, площадь полива 397 м2, с регулировкой расхода, с регулир …" "active" => string(1) "1" "section_id" => string(1) "7" "price" => string(5) "91.00" "new_price" => string(5) "91.00" "discount" => NULL "created_at" => string(19) "2025-05-31 16:32:25" "article" => string(4) "8707" "unique_code" => string(7) "1316490" "original" => string(51) "http://1teh.by/files/products/img_1836340_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(4) "2724" "updated_at" => NULL "category_id" => string(3) "512" "garanty" => string(5) "12.00" "importer" => string(100) "Акватехнологии ООО 220070, г. Минск , ул. Олега Кошевого д. 5" "country_made" => string(0) "" "manufacturer" => string(0) "" "service" => string(0) "" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "1" "free_delivery" => string(1) "1" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(50) "["https:\/\/api.zoomos.by\/img\/item\/1823460\/0"]" "zoomos_filters" => NULL "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => string(13) "1748584068000" ) protected _related => array(1) ( "section" => object Model_Section(40)
7 => object Model_Product(40){ protected _table_name => string(8) "sections" protected _has_many => array(1) ( "product" => array(4) ( "foreign_key" => string(10) "section_id" "through" => NULL "model" => string(7) "Product" "far_key" => string(10) "product_id" ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-section:edit?id=${id}" "external_url" => string(35) "site-section:index?url=${url}&page=" ) "active" => string(4) "bool" "position" => string(8) "position" "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(29) "admin-section:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(8) "position" "order_direction" => string(3) "ASC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(1) "7" "name" => string(55) "Инструменты и Садовая техника" "url" => string(31) "instrumentyi-i-sadovaya-tehnika" "md5_url" => string(32) "3809a652761c6d794a3e58998d28f4fb" "active" => string(1) "1" "s_title" => string(123) "Инструменты и садовая техника. Большой каталог с лучшей ценой - 1teh.by" "s_description" => string(303) "Большой выбор инструментов и садовой техники в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бо …" "s_keywords" => string(0) "" "description" => string(0) "" "position" => NULL "h1" => string(0) "" "updated_at" => string(19) "2025-05-31 17:01:39" "mobile_image" => string(0) "" "main_section_image" => string(0) "" "on_main" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(1) "7" "name" => string(55) "Инструменты и Садовая техника" "url" => string(31) "instrumentyi-i-sadovaya-tehnika" "md5_url" => string(32) "3809a652761c6d794a3e58998d28f4fb" "active" => string(1) "1" "s_title" => string(123) "Инструменты и садовая техника. Большой каталог с лучшей ценой - 1teh.by" "s_description" => string(303) "Большой выбор инструментов и садовой техники в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бо …" "s_keywords" => string(0) "" "description" => string(0) "" "position" => NULL "h1" => string(0) "" "updated_at" => string(19) "2025-05-31 17:01:39" "mobile_image" => string(0) "" "main_section_image" => string(0) "" "on_main" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "section" protected _object_plural => string(8) "sections" protected _table_columns => array(15) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(2) "50" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "position" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "position" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "h1" => array(12) ( "type" => string(6) "string" "column_name" => string(2) "h1" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "comment" => string(0) "" "extra" => string(27) "on update CURRENT_TIMESTAMP" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "mobile_image" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "mobile_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_section_image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(18) "main_section_image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "on_main" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "on_main" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "7" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "product" protected _object_plural => string(8) "products" protected _table_columns => array(63) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "256" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "top" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "top" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "important" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "important" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_image" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "main_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "more_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "more_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "comments_enabled" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "comments_enabled" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "create_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "create_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "update_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "update_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(10) "4294967295" "column_name" => string(7) "content" "column_default" => NULL "data_type" => string(8) "longtext" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "short_content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "short_content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "section_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "section_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "new_price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "new_price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 20 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "discount" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "discount" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "created_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "created_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "article" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "article" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 23 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "unique_code" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "unique_code" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "original" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "original" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 25 "character_maximum_length" => string(3) "512" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "empty" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "empty" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 26 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "to_upload" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "to_upload" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 27 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "reviews" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "reviews" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 28 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "brand_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(8) "brand_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 29 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 30 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 31 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "garanty" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(7) "garanty" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 32 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "importer" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "importer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 33 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "country_made" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "country_made" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 34 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "manufacturer" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "manufacturer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 35 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "service" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "service" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 36 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 37 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gift_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "gift_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 38 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "delivery" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "delivery" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 39 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rating" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "rating" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 40 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "fixed_price" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "fixed_price" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 41 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "popular" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "popular" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 42 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "expedient_on" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(12) "expedient_on" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 43 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "yandex_market_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(16) "yandex_market_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 44 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "no_percent" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "no_percent" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 45 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "free_delivery" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(13) "free_delivery" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 46 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "product_day" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "product_day" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 47 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pok" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "pok" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 48 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "halva" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "halva" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 49 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instructions" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(12) "instructions" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 50 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_hits" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "is_hits" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 51 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "no_percent_force" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "no_percent_force" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 52 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "narod" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(5) "narod" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 53 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "two_year" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "two_year" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 54 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "hit" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(3) "hit" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 55 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "zakaz" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(5) "zakaz" "column_default" => NULL "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 56 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "zoomos_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 57 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_filters" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(14) "zoomos_filters" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 58 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_corrupt" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(10) "is_corrupt" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 59 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "prepared" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "prepared" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 60 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_fixed" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "is_fixed" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 61 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ym_disabled" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(11) "ym_disabled" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 62 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_update_time" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(20) "18446744073709551615" "column_name" => string(18) "zoomos_update_time" "column_default" => NULL "data_type" => string(15) "bigint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 63 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(7) "1316490" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "section" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "product" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(7) "product" protected _belongs_to => array(4) ( "section" => array(3) ( "foreign_key" => string(10) "section_id" "model" => string(7) "Section" "required" => bool TRUE ) "gift" => array(3) ( "foreign_key" => string(7) "gift_id" "model" => string(4) "Gift" "required" => bool TRUE ) "brand" => array(3) ( "foreign_key" => string(8) "brand_id" "model" => string(5) "Brand" "required" => bool TRUE ) "category" => array(3) ( "foreign_key" => string(11) "category_id" "model" => string(8) "Category" "required" => bool TRUE ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-product:edit?id=${id}" "external_url" => string(77) "site-product:index?product=${url}&category=${category.url}&article=${article}" ) "two_year" => string(4) "bool" "edit" => array(6) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(27) "admin-product:edit?id=${id}" "title" => string(26) "<i class="fa fa-edit"></i>" "color" => string(5) "green" "alternative" => string(26) "Редактировать" ) "delete" => array(7) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(29) "admin-product:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "alternative" => string(14) "Удалить" "color" => string(3) "red" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(2) "id" "order_direction" => string(4) "DESC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(63) ( "id" => string(7) "1331888" "name" => string(80) "Душевые кабины Ravak Pivot PPS 90 (сатин/прозрачное)" "url" => string(36) "pivot-pps-90-satin-prozrachnoe_ravak" "md5_url" => string(32) "58f44f9d5ad6b0a93a906c3c17cbb380" "top" => string(1) "0" "important" => string(1) "0" "main_image" => string(59) "/files/product/1331888/bfad21081f2da43b4a2062f088fb6d55.jpg" "more_images" => NULL "s_title" => string(136) "Купить Душевые кабины Ravak Pivot PPS 90 (сатин/прозрачное) в Минске по низкой цене" "s_description" => string(216) "Лучшие цены на Pivot PPS 90 (сатин/прозрачное) и все товары Ravak в магазине 1teh.by. Бесплатная доставка, отзывы на Душевые каб …" "s_keywords" => string(80) "Душевые кабины,Ravak,Pivot PPS 90 (сатин/прозрачное)" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(4936) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Основные</td></tr><tr class="qurow2"><td class= …" "short_content" => string(49) "душевая стенка, ширина 90 см" "active" => string(1) "1" "section_id" => string(1) "2" "price" => string(6) "547.00" "new_price" => string(6) "547.00" "discount" => NULL "created_at" => string(19) "2025-05-31 16:32:07" "article" => string(46) "Pivot PPS 90 (сатин/прозрачное)" "unique_code" => string(7) "1331888" "original" => string(51) "http://1teh.by/files/products/img_1114579_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(4) "1213" "updated_at" => NULL "category_id" => string(3) "325" "garanty" => string(5) "12.00" "importer" => string(76) "ООО «Новый Ковш» РБ г.Минск б-р Шевченко 4-3" "country_made" => string(0) "" "manufacturer" => string(42) "RAVAK a. s. Obecnick? 285 261 01 P??bram I" "service" => string(98) "ООО «Лефро» РБ г. Минск ул. Горовца д. 24 офис 16+375 (25) 6932139" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "1" "free_delivery" => string(1) "1" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(50) "["https:\/\/api.zoomos.by\/img\/item\/1712803\/0"]" "zoomos_filters" => NULL "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => string(13) "1748583808000" ) protected _changed => array(0) protected _original_values => array(63) ( "id" => string(7) "1331888" "name" => string(80) "Душевые кабины Ravak Pivot PPS 90 (сатин/прозрачное)" "url" => string(36) "pivot-pps-90-satin-prozrachnoe_ravak" "md5_url" => string(32) "58f44f9d5ad6b0a93a906c3c17cbb380" "top" => string(1) "0" "important" => string(1) "0" "main_image" => string(59) "/files/product/1331888/bfad21081f2da43b4a2062f088fb6d55.jpg" "more_images" => NULL "s_title" => string(136) "Купить Душевые кабины Ravak Pivot PPS 90 (сатин/прозрачное) в Минске по низкой цене" "s_description" => string(216) "Лучшие цены на Pivot PPS 90 (сатин/прозрачное) и все товары Ravak в магазине 1teh.by. Бесплатная доставка, отзывы на Душевые каб …" "s_keywords" => string(80) "Душевые кабины,Ravak,Pivot PPS 90 (сатин/прозрачное)" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(4936) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Основные</td></tr><tr class="qurow2"><td class= …" "short_content" => string(49) "душевая стенка, ширина 90 см" "active" => string(1) "1" "section_id" => string(1) "2" "price" => string(6) "547.00" "new_price" => string(6) "547.00" "discount" => NULL "created_at" => string(19) "2025-05-31 16:32:07" "article" => string(46) "Pivot PPS 90 (сатин/прозрачное)" "unique_code" => string(7) "1331888" "original" => string(51) "http://1teh.by/files/products/img_1114579_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(4) "1213" "updated_at" => NULL "category_id" => string(3) "325" "garanty" => string(5) "12.00" "importer" => string(76) "ООО «Новый Ковш» РБ г.Минск б-р Шевченко 4-3" "country_made" => string(0) "" "manufacturer" => string(42) "RAVAK a. s. Obecnick? 285 261 01 P??bram I" "service" => string(98) "ООО «Лефро» РБ г. Минск ул. Горовца д. 24 офис 16+375 (25) 6932139" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "1" "free_delivery" => string(1) "1" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(50) "["https:\/\/api.zoomos.by\/img\/item\/1712803\/0"]" "zoomos_filters" => NULL "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => string(13) "1748583808000" ) protected _related => array(1) ( "section" => object Model_Section(40)
8 => object Model_Product(40){ protected _table_name => string(8) "sections" protected _has_many => array(1) ( "product" => array(4) ( "foreign_key" => string(10) "section_id" "through" => NULL "model" => string(7) "Product" "far_key" => string(10) "product_id" ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-section:edit?id=${id}" "external_url" => string(35) "site-section:index?url=${url}&page=" ) "active" => string(4) "bool" "position" => string(8) "position" "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(29) "admin-section:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(8) "position" "order_direction" => string(3) "ASC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(1) "2" "name" => string(15) "Для дома" "url" => string(9) "dlya-doma" "md5_url" => string(32) "b9e816e27a160b6c3b9125d49a742c7a" "active" => string(1) "1" "s_title" => string(86) "Каталог бытовой техники для дома в Минске | 1teh.by" "s_description" => string(276) "Большой выбор товаров для дома в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бонусы и скидки. …" "s_keywords" => string(76) "бытовая техника для дома, каталог техники" "description" => string(0) "" "position" => NULL "h1" => string(0) "" "updated_at" => string(19) "2025-05-31 17:01:39" "mobile_image" => string(0) "" "main_section_image" => string(0) "" "on_main" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(1) "2" "name" => string(15) "Для дома" "url" => string(9) "dlya-doma" "md5_url" => string(32) "b9e816e27a160b6c3b9125d49a742c7a" "active" => string(1) "1" "s_title" => string(86) "Каталог бытовой техники для дома в Минске | 1teh.by" "s_description" => string(276) "Большой выбор товаров для дома в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бонусы и скидки. …" "s_keywords" => string(76) "бытовая техника для дома, каталог техники" "description" => string(0) "" "position" => NULL "h1" => string(0) "" "updated_at" => string(19) "2025-05-31 17:01:39" "mobile_image" => string(0) "" "main_section_image" => string(0) "" "on_main" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "section" protected _object_plural => string(8) "sections" protected _table_columns => array(15) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(2) "50" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "position" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "position" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "h1" => array(12) ( "type" => string(6) "string" "column_name" => string(2) "h1" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "comment" => string(0) "" "extra" => string(27) "on update CURRENT_TIMESTAMP" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "mobile_image" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "mobile_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_section_image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(18) "main_section_image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "on_main" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "on_main" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "2" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "product" protected _object_plural => string(8) "products" protected _table_columns => array(63) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "256" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "top" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "top" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "important" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "important" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_image" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "main_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "more_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "more_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "comments_enabled" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "comments_enabled" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "create_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "create_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "update_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "update_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(10) "4294967295" "column_name" => string(7) "content" "column_default" => NULL "data_type" => string(8) "longtext" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "short_content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "short_content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "section_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "section_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "new_price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "new_price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 20 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "discount" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "discount" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "created_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "created_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "article" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "article" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 23 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "unique_code" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "unique_code" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "original" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "original" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 25 "character_maximum_length" => string(3) "512" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "empty" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "empty" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 26 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "to_upload" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "to_upload" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 27 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "reviews" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "reviews" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 28 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "brand_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(8) "brand_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 29 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 30 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 31 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "garanty" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(7) "garanty" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 32 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "importer" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "importer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 33 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "country_made" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "country_made" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 34 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "manufacturer" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "manufacturer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 35 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "service" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "service" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 36 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 37 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gift_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "gift_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 38 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "delivery" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "delivery" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 39 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rating" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "rating" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 40 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "fixed_price" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "fixed_price" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 41 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "popular" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "popular" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 42 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "expedient_on" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(12) "expedient_on" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 43 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "yandex_market_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(16) "yandex_market_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 44 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "no_percent" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "no_percent" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 45 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "free_delivery" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(13) "free_delivery" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 46 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "product_day" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "product_day" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 47 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pok" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "pok" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 48 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "halva" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "halva" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 49 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instructions" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(12) "instructions" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 50 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_hits" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "is_hits" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 51 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "no_percent_force" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "no_percent_force" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 52 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "narod" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(5) "narod" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 53 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "two_year" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "two_year" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 54 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "hit" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(3) "hit" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 55 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "zakaz" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(5) "zakaz" "column_default" => NULL "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 56 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "zoomos_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 57 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_filters" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(14) "zoomos_filters" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 58 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_corrupt" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(10) "is_corrupt" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 59 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "prepared" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "prepared" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 60 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_fixed" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "is_fixed" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 61 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ym_disabled" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(11) "ym_disabled" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 62 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_update_time" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(20) "18446744073709551615" "column_name" => string(18) "zoomos_update_time" "column_default" => NULL "data_type" => string(15) "bigint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 63 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(7) "1331888" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "section" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "product" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(7) "product" protected _belongs_to => array(4) ( "section" => array(3) ( "foreign_key" => string(10) "section_id" "model" => string(7) "Section" "required" => bool TRUE ) "gift" => array(3) ( "foreign_key" => string(7) "gift_id" "model" => string(4) "Gift" "required" => bool TRUE ) "brand" => array(3) ( "foreign_key" => string(8) "brand_id" "model" => string(5) "Brand" "required" => bool TRUE ) "category" => array(3) ( "foreign_key" => string(11) "category_id" "model" => string(8) "Category" "required" => bool TRUE ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-product:edit?id=${id}" "external_url" => string(77) "site-product:index?product=${url}&category=${category.url}&article=${article}" ) "two_year" => string(4) "bool" "edit" => array(6) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(27) "admin-product:edit?id=${id}" "title" => string(26) "<i class="fa fa-edit"></i>" "color" => string(5) "green" "alternative" => string(26) "Редактировать" ) "delete" => array(7) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(29) "admin-product:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "alternative" => string(14) "Удалить" "color" => string(3) "red" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(2) "id" "order_direction" => string(4) "DESC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(63) ( "id" => string(7) "1336300" "name" => string(86) "Автомобильные видеорегистраторы Roadgid X9 Gibrid GT 2CH" "url" => string(24) "x9-gibrid-gt-2ch_roadgid" "md5_url" => string(32) "9cdc124570fc9b6871693559f362b4bd" "top" => string(1) "0" "important" => string(1) "0" "main_image" => string(59) "/files/product/1336300/c72ada837d0922e7082eeda346f032fa.jpg" "more_images" => string(331) "["\/files\/product\/1336300\/9360e9b5df9028b524343d068a3d5d2f.jpg","\/files\/product\/1336300\/24bcd283a93cd1bf7c1167ae25ae466e. …" "s_title" => string(142) "Купить Автомобильные видеорегистраторы Roadgid X9 Gibrid GT 2CH в Минске по низкой цене" "s_description" => string(222) "Лучшие цены на X9 Gibrid GT 2CH и все товары Roadgid в магазине 1teh.by. Бесплатная доставка, отзывы на Автомобильные видеорегис …" "s_keywords" => string(86) "Автомобильные видеорегистраторы,Roadgid,X9 Gibrid GT 2CH" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(9208) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Общая информация</td></tr><tr class="qugroup_em …" "short_content" => string(101) "основная камера: 2 Мп 170°, видео 1920x1080, GPS, G-сенсор, экран 3"" "active" => string(1) "1" "section_id" => string(1) "5" "price" => string(6) "838.93" "new_price" => string(6) "798.98" "discount" => NULL "created_at" => string(19) "2025-05-31 16:31:46" "article" => string(16) "X9 Gibrid GT 2CH" "unique_code" => string(7) "1336300" "original" => string(51) "http://1teh.by/files/products/img_3865541_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(4) "3747" "updated_at" => NULL "category_id" => string(2) "51" "garanty" => string(5) "12.00" "importer" => string(122) "ТПЧУП «Свет телеком трейд» 220095 г. Минск ул. Якубова, 82, I этаж, офис 11" "country_made" => string(0) "" "manufacturer" => string(0) "" "service" => string(0) "" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "0" "free_delivery" => string(1) "0" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(295) "["https:\/\/api.zoomos.by\/img\/item\/2253946\/0","https:\/\/api.zoomos.by\/img\/item\/2253946\/1","https:\/\/api.zoomos.by\/img …" "zoomos_filters" => NULL "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => string(13) "1748583427000" ) protected _changed => array(0) protected _original_values => array(63) ( "id" => string(7) "1336300" "name" => string(86) "Автомобильные видеорегистраторы Roadgid X9 Gibrid GT 2CH" "url" => string(24) "x9-gibrid-gt-2ch_roadgid" "md5_url" => string(32) "9cdc124570fc9b6871693559f362b4bd" "top" => string(1) "0" "important" => string(1) "0" "main_image" => string(59) "/files/product/1336300/c72ada837d0922e7082eeda346f032fa.jpg" "more_images" => string(331) "["\/files\/product\/1336300\/9360e9b5df9028b524343d068a3d5d2f.jpg","\/files\/product\/1336300\/24bcd283a93cd1bf7c1167ae25ae466e. …" "s_title" => string(142) "Купить Автомобильные видеорегистраторы Roadgid X9 Gibrid GT 2CH в Минске по низкой цене" "s_description" => string(222) "Лучшие цены на X9 Gibrid GT 2CH и все товары Roadgid в магазине 1teh.by. Бесплатная доставка, отзывы на Автомобильные видеорегис …" "s_keywords" => string(86) "Автомобильные видеорегистраторы,Roadgid,X9 Gibrid GT 2CH" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(9208) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Общая информация</td></tr><tr class="qugroup_em …" "short_content" => string(101) "основная камера: 2 Мп 170°, видео 1920x1080, GPS, G-сенсор, экран 3"" "active" => string(1) "1" "section_id" => string(1) "5" "price" => string(6) "838.93" "new_price" => string(6) "798.98" "discount" => NULL "created_at" => string(19) "2025-05-31 16:31:46" "article" => string(16) "X9 Gibrid GT 2CH" "unique_code" => string(7) "1336300" "original" => string(51) "http://1teh.by/files/products/img_3865541_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(4) "3747" "updated_at" => NULL "category_id" => string(2) "51" "garanty" => string(5) "12.00" "importer" => string(122) "ТПЧУП «Свет телеком трейд» 220095 г. Минск ул. Якубова, 82, I этаж, офис 11" "country_made" => string(0) "" "manufacturer" => string(0) "" "service" => string(0) "" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "0" "free_delivery" => string(1) "0" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(295) "["https:\/\/api.zoomos.by\/img\/item\/2253946\/0","https:\/\/api.zoomos.by\/img\/item\/2253946\/1","https:\/\/api.zoomos.by\/img …" "zoomos_filters" => NULL "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => string(13) "1748583427000" ) protected _related => array(1) ( "section" => object Model_Section(40)
9 => object Model_Product(40){ protected _table_name => string(8) "sections" protected _has_many => array(1) ( "product" => array(4) ( "foreign_key" => string(10) "section_id" "through" => NULL "model" => string(7) "Product" "far_key" => string(10) "product_id" ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-section:edit?id=${id}" "external_url" => string(35) "site-section:index?url=${url}&page=" ) "active" => string(4) "bool" "position" => string(8) "position" "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(29) "admin-section:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(8) "position" "order_direction" => string(3) "ASC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(1) "5" "name" => string(8) "Авто" "url" => string(4) "avto" "md5_url" => string(32) "d616a0b2d0d9ebed26e4e3436e19f42c" "active" => string(1) "1" "s_title" => string(112) "Автотовары и аксессуары. Большой каталог с лучшей ценой - 1teh.by" "s_description" => string(294) "Большой выбор автотоваров и аксессуаров в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бонусы …" "s_keywords" => string(0) "" "description" => string(0) "" "position" => NULL "h1" => string(0) "" "updated_at" => string(19) "2025-05-31 17:01:39" "mobile_image" => string(0) "" "main_section_image" => string(0) "" "on_main" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(1) "5" "name" => string(8) "Авто" "url" => string(4) "avto" "md5_url" => string(32) "d616a0b2d0d9ebed26e4e3436e19f42c" "active" => string(1) "1" "s_title" => string(112) "Автотовары и аксессуары. Большой каталог с лучшей ценой - 1teh.by" "s_description" => string(294) "Большой выбор автотоваров и аксессуаров в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бонусы …" "s_keywords" => string(0) "" "description" => string(0) "" "position" => NULL "h1" => string(0) "" "updated_at" => string(19) "2025-05-31 17:01:39" "mobile_image" => string(0) "" "main_section_image" => string(0) "" "on_main" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "section" protected _object_plural => string(8) "sections" protected _table_columns => array(15) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(2) "50" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "position" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "position" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "h1" => array(12) ( "type" => string(6) "string" "column_name" => string(2) "h1" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "comment" => string(0) "" "extra" => string(27) "on update CURRENT_TIMESTAMP" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "mobile_image" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "mobile_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_section_image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(18) "main_section_image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "on_main" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "on_main" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "5" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "product" protected _object_plural => string(8) "products" protected _table_columns => array(63) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "256" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "top" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "top" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "important" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "important" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_image" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "main_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "more_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "more_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "comments_enabled" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "comments_enabled" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "create_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "create_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "update_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "update_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(10) "4294967295" "column_name" => string(7) "content" "column_default" => NULL "data_type" => string(8) "longtext" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "short_content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "short_content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "section_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "section_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "new_price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "new_price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 20 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "discount" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "discount" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "created_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "created_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "article" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "article" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 23 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "unique_code" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "unique_code" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "original" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "original" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 25 "character_maximum_length" => string(3) "512" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "empty" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "empty" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 26 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "to_upload" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "to_upload" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 27 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "reviews" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "reviews" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 28 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "brand_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(8) "brand_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 29 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 30 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 31 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "garanty" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(7) "garanty" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 32 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "importer" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "importer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 33 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "country_made" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "country_made" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 34 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "manufacturer" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "manufacturer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 35 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "service" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "service" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 36 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 37 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gift_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "gift_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 38 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "delivery" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "delivery" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 39 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rating" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "rating" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 40 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "fixed_price" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "fixed_price" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 41 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "popular" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "popular" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 42 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "expedient_on" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(12) "expedient_on" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 43 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "yandex_market_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(16) "yandex_market_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 44 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "no_percent" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "no_percent" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 45 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "free_delivery" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(13) "free_delivery" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 46 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "product_day" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "product_day" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 47 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pok" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "pok" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 48 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "halva" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "halva" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 49 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instructions" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(12) "instructions" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 50 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_hits" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "is_hits" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 51 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "no_percent_force" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "no_percent_force" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 52 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "narod" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(5) "narod" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 53 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "two_year" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "two_year" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 54 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "hit" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(3) "hit" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 55 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "zakaz" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(5) "zakaz" "column_default" => NULL "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 56 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "zoomos_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 57 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_filters" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(14) "zoomos_filters" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 58 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_corrupt" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(10) "is_corrupt" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 59 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "prepared" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "prepared" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 60 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_fixed" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "is_fixed" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 61 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ym_disabled" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(11) "ym_disabled" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 62 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_update_time" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(20) "18446744073709551615" "column_name" => string(18) "zoomos_update_time" "column_default" => NULL "data_type" => string(15) "bigint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 63 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(7) "1336300" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "section" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "product" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(7) "product" protected _belongs_to => array(4) ( "section" => array(3) ( "foreign_key" => string(10) "section_id" "model" => string(7) "Section" "required" => bool TRUE ) "gift" => array(3) ( "foreign_key" => string(7) "gift_id" "model" => string(4) "Gift" "required" => bool TRUE ) "brand" => array(3) ( "foreign_key" => string(8) "brand_id" "model" => string(5) "Brand" "required" => bool TRUE ) "category" => array(3) ( "foreign_key" => string(11) "category_id" "model" => string(8) "Category" "required" => bool TRUE ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-product:edit?id=${id}" "external_url" => string(77) "site-product:index?product=${url}&category=${category.url}&article=${article}" ) "two_year" => string(4) "bool" "edit" => array(6) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(27) "admin-product:edit?id=${id}" "title" => string(26) "<i class="fa fa-edit"></i>" "color" => string(5) "green" "alternative" => string(26) "Редактировать" ) "delete" => array(7) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(29) "admin-product:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "alternative" => string(14) "Удалить" "color" => string(3) "red" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(2) "id" "order_direction" => string(4) "DESC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(63) ( "id" => string(7) "1357128" "name" => string(79) "Радиоуправляемые автомодели Udirc UD1001 (синий)" "url" => string(18) "ud1001-siniy_udirc" "md5_url" => string(32) "c0ae0faaa437e60fc624831294ae0446" "top" => string(1) "0" "important" => string(1) "0" "main_image" => string(59) "/files/product/1357128/a371ed842ba4991e7dfe835bfc3fa2d6.jpg" "more_images" => NULL "s_title" => string(135) "Купить Радиоуправляемые автомодели Udirc UD1001 (синий) в Минске по низкой цене" "s_description" => string(215) "Лучшие цены на UD1001 (синий) и все товары Udirc в магазине 1teh.by. Бесплатная доставка, отзывы на Радиоуправляемые автомодели" "s_keywords" => string(79) "Радиоуправляемые автомодели,Udirc,UD1001 (синий)" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(3588) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Общая информация</td></tr><tr class="qugroup_em …" "short_content" => string(157) "автомодель, монстр-трак, масштаб: 1:10, электрический двигатель, 2.4 ГГц, 4WD, дальность: 100 м" "active" => string(1) "1" "section_id" => string(2) "10" "price" => string(7) "1767.00" "new_price" => string(7) "1767.00" "discount" => NULL "created_at" => string(19) "2025-05-31 16:31:47" "article" => string(19) "UD1001 (синий)" "unique_code" => string(7) "1357128" "original" => string(51) "http://1teh.by/files/products/img_4274722_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(4) "4220" "updated_at" => NULL "category_id" => string(2) "73" "garanty" => string(5) "12.00" "importer" => string(0) "" "country_made" => string(0) "" "manufacturer" => string(0) "" "service" => string(0) "" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "1" "free_delivery" => string(1) "1" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(50) "["https:\/\/api.zoomos.by\/img\/item\/2399540\/0"]" "zoomos_filters" => NULL "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => string(13) "1748583459000" ) protected _changed => array(0) protected _original_values => array(63) ( "id" => string(7) "1357128" "name" => string(79) "Радиоуправляемые автомодели Udirc UD1001 (синий)" "url" => string(18) "ud1001-siniy_udirc" "md5_url" => string(32) "c0ae0faaa437e60fc624831294ae0446" "top" => string(1) "0" "important" => string(1) "0" "main_image" => string(59) "/files/product/1357128/a371ed842ba4991e7dfe835bfc3fa2d6.jpg" "more_images" => NULL "s_title" => string(135) "Купить Радиоуправляемые автомодели Udirc UD1001 (синий) в Минске по низкой цене" "s_description" => string(215) "Лучшие цены на UD1001 (синий) и все товары Udirc в магазине 1teh.by. Бесплатная доставка, отзывы на Радиоуправляемые автомодели" "s_keywords" => string(79) "Радиоуправляемые автомодели,Udirc,UD1001 (синий)" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(3588) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Общая информация</td></tr><tr class="qugroup_em …" "short_content" => string(157) "автомодель, монстр-трак, масштаб: 1:10, электрический двигатель, 2.4 ГГц, 4WD, дальность: 100 м" "active" => string(1) "1" "section_id" => string(2) "10" "price" => string(7) "1767.00" "new_price" => string(7) "1767.00" "discount" => NULL "created_at" => string(19) "2025-05-31 16:31:47" "article" => string(19) "UD1001 (синий)" "unique_code" => string(7) "1357128" "original" => string(51) "http://1teh.by/files/products/img_4274722_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(4) "4220" "updated_at" => NULL "category_id" => string(2) "73" "garanty" => string(5) "12.00" "importer" => string(0) "" "country_made" => string(0) "" "manufacturer" => string(0) "" "service" => string(0) "" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "1" "free_delivery" => string(1) "1" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(50) "["https:\/\/api.zoomos.by\/img\/item\/2399540\/0"]" "zoomos_filters" => NULL "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => string(13) "1748583459000" ) protected _related => array(1) ( "section" => object Model_Section(40)
10 => object Model_Product(40){ protected _table_name => string(8) "sections" protected _has_many => array(1) ( "product" => array(4) ( "foreign_key" => string(10) "section_id" "through" => NULL "model" => string(7) "Product" "far_key" => string(10) "product_id" ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-section:edit?id=${id}" "external_url" => string(35) "site-section:index?url=${url}&page=" ) "active" => string(4) "bool" "position" => string(8) "position" "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(29) "admin-section:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(8) "position" "order_direction" => string(3) "ASC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(2) "10" "name" => string(21) "Детский мир" "url" => string(11) "detskiy-mir" "md5_url" => string(32) "5432c4125a8674c6a4cfb8f975f87708" "active" => string(1) "1" "s_title" => string(115) "Каталог товаров для детей. Большой каталог с лучшей ценой - 1teh.by" "s_description" => string(275) "Большой выбор детских товаров в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бонусы и скидки. …" "s_keywords" => string(0) "" "description" => string(0) "" "position" => NULL "h1" => string(0) "" "updated_at" => string(19) "2025-05-31 17:01:39" "mobile_image" => string(0) "" "main_section_image" => string(0) "" "on_main" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(2) "10" "name" => string(21) "Детский мир" "url" => string(11) "detskiy-mir" "md5_url" => string(32) "5432c4125a8674c6a4cfb8f975f87708" "active" => string(1) "1" "s_title" => string(115) "Каталог товаров для детей. Большой каталог с лучшей ценой - 1teh.by" "s_description" => string(275) "Большой выбор детских товаров в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бонусы и скидки. …" "s_keywords" => string(0) "" "description" => string(0) "" "position" => NULL "h1" => string(0) "" "updated_at" => string(19) "2025-05-31 17:01:39" "mobile_image" => string(0) "" "main_section_image" => string(0) "" "on_main" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "section" protected _object_plural => string(8) "sections" protected _table_columns => array(15) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(2) "50" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "position" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "position" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "h1" => array(12) ( "type" => string(6) "string" "column_name" => string(2) "h1" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "comment" => string(0) "" "extra" => string(27) "on update CURRENT_TIMESTAMP" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "mobile_image" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "mobile_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_section_image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(18) "main_section_image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "on_main" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "on_main" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(2) "10" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "product" protected _object_plural => string(8) "products" protected _table_columns => array(63) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "256" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "top" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "top" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "important" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "important" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_image" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "main_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "more_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "more_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "comments_enabled" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "comments_enabled" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "create_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "create_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "update_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "update_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(10) "4294967295" "column_name" => string(7) "content" "column_default" => NULL "data_type" => string(8) "longtext" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "short_content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "short_content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "section_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "section_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "new_price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "new_price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 20 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "discount" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "discount" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "created_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "created_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "article" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "article" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 23 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "unique_code" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "unique_code" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "original" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "original" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 25 "character_maximum_length" => string(3) "512" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "empty" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "empty" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 26 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "to_upload" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "to_upload" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 27 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "reviews" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "reviews" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 28 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "brand_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(8) "brand_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 29 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 30 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 31 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "garanty" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(7) "garanty" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 32 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "importer" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "importer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 33 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "country_made" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "country_made" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 34 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "manufacturer" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "manufacturer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 35 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "service" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "service" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 36 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 37 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gift_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "gift_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 38 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "delivery" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "delivery" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 39 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rating" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "rating" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 40 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "fixed_price" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "fixed_price" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 41 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "popular" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "popular" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 42 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "expedient_on" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(12) "expedient_on" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 43 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "yandex_market_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(16) "yandex_market_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 44 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "no_percent" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "no_percent" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 45 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "free_delivery" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(13) "free_delivery" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 46 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "product_day" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "product_day" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 47 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pok" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "pok" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 48 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "halva" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "halva" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 49 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instructions" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(12) "instructions" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 50 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_hits" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "is_hits" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 51 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "no_percent_force" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "no_percent_force" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 52 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "narod" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(5) "narod" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 53 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "two_year" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "two_year" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 54 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "hit" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(3) "hit" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 55 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "zakaz" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(5) "zakaz" "column_default" => NULL "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 56 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "zoomos_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 57 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_filters" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(14) "zoomos_filters" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 58 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_corrupt" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(10) "is_corrupt" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 59 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "prepared" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "prepared" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 60 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_fixed" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "is_fixed" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 61 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ym_disabled" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(11) "ym_disabled" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 62 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_update_time" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(20) "18446744073709551615" "column_name" => string(18) "zoomos_update_time" "column_default" => NULL "data_type" => string(15) "bigint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 63 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(7) "1357128" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "section" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "product" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(7) "product" protected _belongs_to => array(4) ( "section" => array(3) ( "foreign_key" => string(10) "section_id" "model" => string(7) "Section" "required" => bool TRUE ) "gift" => array(3) ( "foreign_key" => string(7) "gift_id" "model" => string(4) "Gift" "required" => bool TRUE ) "brand" => array(3) ( "foreign_key" => string(8) "brand_id" "model" => string(5) "Brand" "required" => bool TRUE ) "category" => array(3) ( "foreign_key" => string(11) "category_id" "model" => string(8) "Category" "required" => bool TRUE ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-product:edit?id=${id}" "external_url" => string(77) "site-product:index?product=${url}&category=${category.url}&article=${article}" ) "two_year" => string(4) "bool" "edit" => array(6) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(27) "admin-product:edit?id=${id}" "title" => string(26) "<i class="fa fa-edit"></i>" "color" => string(5) "green" "alternative" => string(26) "Редактировать" ) "delete" => array(7) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(29) "admin-product:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "alternative" => string(14) "Удалить" "color" => string(3) "red" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(2) "id" "order_direction" => string(4) "DESC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(63) ( "id" => string(7) "1501836" "name" => string(77) "Мультимедиа акустика Edifier R1380T (коричневый)" "url" => string(27) "r1380t-korichnevyiy_edifier" "md5_url" => string(32) "eeb41828b883d93e6cc4403961402152" "top" => string(1) "0" "important" => string(1) "0" "main_image" => string(59) "/files/product/1501836/b80a032148bcb816c2fcaea923b2316c.jpg" "more_images" => string(991) "["\/files\/product\/1501836\/17a14488ba3a820e6249911d91302045.jpg","\/files\/product\/1501836\/868f8c71fd3ba23ae662be60da911a62. …" "s_title" => string(133) "Купить Мультимедиа акустика Edifier R1380T (коричневый) в Минске по низкой цене" "s_description" => string(213) "Лучшие цены на R1380T (коричневый) и все товары Edifier в магазине 1teh.by. Бесплатная доставка, отзывы на Мультимедиа акустика" "s_keywords" => string(77) "Мультимедиа акустика,Edifier,R1380T (коричневый)" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(6065) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Основные</td></tr><tr class="qurow2"><td class= …" "short_content" => string(118) "настольная/полочная, 2.0, мощность (RMS) 42 Вт, 55-20000 Гц, МДФ 5.0, пульт ДУ" "active" => string(1) "1" "section_id" => string(1) "3" "price" => string(6) "411.44" "new_price" => string(6) "391.85" "discount" => NULL "created_at" => string(19) "2025-05-31 16:31:40" "article" => string(29) "R1380T (коричневый)" "unique_code" => string(7) "1501836" "original" => string(51) "http://1teh.by/files/products/img_2752504_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(3) "178" "updated_at" => NULL "category_id" => string(1) "5" "garanty" => string(5) "12.00" "importer" => string(129) "ООО «ТрайдексБелПлюс» Минская обл. Минский р-н Новодворский с/с 33/1-8 к.64" "country_made" => string(0) "" "manufacturer" => string(114) "ООО «Эдифер Сервис» Россия 119180 Москва Полянка Б. ул. д. 28 корп. 1." "service" => string(85) "ООО «БТМ Трейдинг» ул. Даумана 23 оф. 63 8 (029) 993-73-35" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "0" "free_delivery" => string(1) "0" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(791) "["https:\/\/api.zoomos.by\/img\/item\/2128467\/0","https:\/\/api.zoomos.by\/img\/item\/2128467\/1","https:\/\/api.zoomos.by\/img …" "zoomos_filters" => string(8105) "[{"id":144,"name":"\u0422\u0438\u043f","type":"enum","unit":"","orderPriority":10,"values":[{"id":144,"name":"\u043d\u0430\u0441 …" "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => string(13) "1748583249000" ) protected _changed => array(0) protected _original_values => array(63) ( "id" => string(7) "1501836" "name" => string(77) "Мультимедиа акустика Edifier R1380T (коричневый)" "url" => string(27) "r1380t-korichnevyiy_edifier" "md5_url" => string(32) "eeb41828b883d93e6cc4403961402152" "top" => string(1) "0" "important" => string(1) "0" "main_image" => string(59) "/files/product/1501836/b80a032148bcb816c2fcaea923b2316c.jpg" "more_images" => string(991) "["\/files\/product\/1501836\/17a14488ba3a820e6249911d91302045.jpg","\/files\/product\/1501836\/868f8c71fd3ba23ae662be60da911a62. …" "s_title" => string(133) "Купить Мультимедиа акустика Edifier R1380T (коричневый) в Минске по низкой цене" "s_description" => string(213) "Лучшие цены на R1380T (коричневый) и все товары Edifier в магазине 1teh.by. Бесплатная доставка, отзывы на Мультимедиа акустика" "s_keywords" => string(77) "Мультимедиа акустика,Edifier,R1380T (коричневый)" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(6065) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Основные</td></tr><tr class="qurow2"><td class= …" "short_content" => string(118) "настольная/полочная, 2.0, мощность (RMS) 42 Вт, 55-20000 Гц, МДФ 5.0, пульт ДУ" "active" => string(1) "1" "section_id" => string(1) "3" "price" => string(6) "411.44" "new_price" => string(6) "391.85" "discount" => NULL "created_at" => string(19) "2025-05-31 16:31:40" "article" => string(29) "R1380T (коричневый)" "unique_code" => string(7) "1501836" "original" => string(51) "http://1teh.by/files/products/img_2752504_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(3) "178" "updated_at" => NULL "category_id" => string(1) "5" "garanty" => string(5) "12.00" "importer" => string(129) "ООО «ТрайдексБелПлюс» Минская обл. Минский р-н Новодворский с/с 33/1-8 к.64" "country_made" => string(0) "" "manufacturer" => string(114) "ООО «Эдифер Сервис» Россия 119180 Москва Полянка Б. ул. д. 28 корп. 1." "service" => string(85) "ООО «БТМ Трейдинг» ул. Даумана 23 оф. 63 8 (029) 993-73-35" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "0" "free_delivery" => string(1) "0" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(791) "["https:\/\/api.zoomos.by\/img\/item\/2128467\/0","https:\/\/api.zoomos.by\/img\/item\/2128467\/1","https:\/\/api.zoomos.by\/img …" "zoomos_filters" => string(8105) "[{"id":144,"name":"\u0422\u0438\u043f","type":"enum","unit":"","orderPriority":10,"values":[{"id":144,"name":"\u043d\u0430\u0441 …" "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => string(13) "1748583249000" ) protected _related => array(1) ( "section" => object Model_Section(40)
11 => object Model_Product(40){ protected _table_name => string(8) "sections" protected _has_many => array(1) ( "product" => array(4) ( "foreign_key" => string(10) "section_id" "through" => NULL "model" => string(7) "Product" "far_key" => string(10) "product_id" ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-section:edit?id=${id}" "external_url" => string(35) "site-section:index?url=${url}&page=" ) "active" => string(4) "bool" "position" => string(8) "position" "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(29) "admin-section:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(8) "position" "order_direction" => string(3) "ASC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(1) "3" "name" => string(22) "Электроника" "url" => string(11) "elektronika" "md5_url" => string(32) "76b94353c5e008664be91220b3bcffb8" "active" => string(1) "1" "s_title" => string(94) "Электроника. Большой каталог электроприборов - 1teh.by" "s_description" => string(276) "Большой выбор электроприборов в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бонусы и скидки. …" "s_keywords" => string(0) "" "description" => string(0) "" "position" => NULL "h1" => string(0) "" "updated_at" => string(19) "2025-05-31 17:01:39" "mobile_image" => string(0) "" "main_section_image" => string(0) "" "on_main" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(1) "3" "name" => string(22) "Электроника" "url" => string(11) "elektronika" "md5_url" => string(32) "76b94353c5e008664be91220b3bcffb8" "active" => string(1) "1" "s_title" => string(94) "Электроника. Большой каталог электроприборов - 1teh.by" "s_description" => string(276) "Большой выбор электроприборов в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бонусы и скидки. …" "s_keywords" => string(0) "" "description" => string(0) "" "position" => NULL "h1" => string(0) "" "updated_at" => string(19) "2025-05-31 17:01:39" "mobile_image" => string(0) "" "main_section_image" => string(0) "" "on_main" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "section" protected _object_plural => string(8) "sections" protected _table_columns => array(15) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(2) "50" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "position" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "position" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "h1" => array(12) ( "type" => string(6) "string" "column_name" => string(2) "h1" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "comment" => string(0) "" "extra" => string(27) "on update CURRENT_TIMESTAMP" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "mobile_image" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "mobile_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_section_image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(18) "main_section_image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "on_main" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "on_main" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "3" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "product" protected _object_plural => string(8) "products" protected _table_columns => array(63) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "256" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "top" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "top" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "important" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "important" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_image" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "main_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "more_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "more_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "comments_enabled" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "comments_enabled" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "create_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "create_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "update_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "update_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(10) "4294967295" "column_name" => string(7) "content" "column_default" => NULL "data_type" => string(8) "longtext" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "short_content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "short_content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "section_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "section_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "new_price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "new_price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 20 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "discount" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "discount" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "created_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "created_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "article" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "article" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 23 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "unique_code" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "unique_code" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "original" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "original" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 25 "character_maximum_length" => string(3) "512" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "empty" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "empty" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 26 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "to_upload" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "to_upload" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 27 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "reviews" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "reviews" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 28 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "brand_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(8) "brand_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 29 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 30 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 31 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "garanty" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(7) "garanty" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 32 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "importer" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "importer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 33 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "country_made" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "country_made" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 34 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "manufacturer" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "manufacturer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 35 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "service" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "service" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 36 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 37 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gift_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "gift_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 38 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "delivery" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "delivery" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 39 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rating" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "rating" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 40 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "fixed_price" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "fixed_price" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 41 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "popular" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "popular" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 42 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "expedient_on" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(12) "expedient_on" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 43 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "yandex_market_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(16) "yandex_market_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 44 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "no_percent" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "no_percent" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 45 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "free_delivery" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(13) "free_delivery" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 46 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "product_day" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "product_day" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 47 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pok" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "pok" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 48 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "halva" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "halva" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 49 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instructions" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(12) "instructions" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 50 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_hits" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "is_hits" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 51 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "no_percent_force" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "no_percent_force" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 52 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "narod" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(5) "narod" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 53 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "two_year" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "two_year" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 54 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "hit" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(3) "hit" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 55 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "zakaz" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(5) "zakaz" "column_default" => NULL "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 56 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "zoomos_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 57 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_filters" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(14) "zoomos_filters" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 58 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_corrupt" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(10) "is_corrupt" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 59 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "prepared" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "prepared" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 60 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_fixed" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "is_fixed" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 61 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ym_disabled" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(11) "ym_disabled" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 62 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_update_time" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(20) "18446744073709551615" "column_name" => string(18) "zoomos_update_time" "column_default" => NULL "data_type" => string(15) "bigint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 63 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(7) "1501836" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "section" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "product" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(7) "product" protected _belongs_to => array(4) ( "section" => array(3) ( "foreign_key" => string(10) "section_id" "model" => string(7) "Section" "required" => bool TRUE ) "gift" => array(3) ( "foreign_key" => string(7) "gift_id" "model" => string(4) "Gift" "required" => bool TRUE ) "brand" => array(3) ( "foreign_key" => string(8) "brand_id" "model" => string(5) "Brand" "required" => bool TRUE ) "category" => array(3) ( "foreign_key" => string(11) "category_id" "model" => string(8) "Category" "required" => bool TRUE ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-product:edit?id=${id}" "external_url" => string(77) "site-product:index?product=${url}&category=${category.url}&article=${article}" ) "two_year" => string(4) "bool" "edit" => array(6) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(27) "admin-product:edit?id=${id}" "title" => string(26) "<i class="fa fa-edit"></i>" "color" => string(5) "green" "alternative" => string(26) "Редактировать" ) "delete" => array(7) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(29) "admin-product:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "alternative" => string(14) "Удалить" "color" => string(3) "red" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(2) "id" "order_direction" => string(4) "DESC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(63) ( "id" => string(7) "1574808" "name" => string(107) "Системы автоматического полива, распылители Bradas White Line WL-Z17" "url" => string(24) "white-line-wl-z17_bradas" "md5_url" => string(32) "4efd7b2a84e03bf242f8d6af20062d9e" "top" => string(1) "0" "important" => string(1) "0" "main_image" => NULL "more_images" => NULL "s_title" => string(163) "Купить Системы автоматического полива, распылители Bradas White Line WL-Z17 в Минске по низкой цене" "s_description" => string(243) "Лучшие цены на White Line WL-Z17 и все товары Bradas в магазине 1teh.by. Бесплатная доставка, отзывы на Системы автоматического …" "s_keywords" => string(107) "Системы автоматического полива, распылители,Bradas,White Line WL-Z17" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(1761) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Общая информация</td></tr><tr class="qugroup_em …" "short_content" => string(102) "распылитель осциллирующий, пластик, площадь полива 366 м2" "active" => string(1) "1" "section_id" => string(1) "7" "price" => string(6) "146.60" "new_price" => string(6) "146.60" "discount" => NULL "created_at" => string(19) "2025-05-31 16:32:25" "article" => string(17) "White Line WL-Z17" "unique_code" => string(7) "1574808" "original" => string(51) "http://1teh.by/files/products/img_1561548_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(4) "3323" "updated_at" => NULL "category_id" => string(3) "512" "garanty" => string(4) "5.60" "importer" => string(100) "Акватехнологии ООО 220070, г. Минск , ул. Олега Кошевого д. 5" "country_made" => string(0) "" "manufacturer" => string(0) "" "service" => string(0) "" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "1" "free_delivery" => string(1) "1" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => NULL "zoomos_filters" => NULL "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => NULL ) protected _changed => array(0) protected _original_values => array(63) ( "id" => string(7) "1574808" "name" => string(107) "Системы автоматического полива, распылители Bradas White Line WL-Z17" "url" => string(24) "white-line-wl-z17_bradas" "md5_url" => string(32) "4efd7b2a84e03bf242f8d6af20062d9e" "top" => string(1) "0" "important" => string(1) "0" "main_image" => NULL "more_images" => NULL "s_title" => string(163) "Купить Системы автоматического полива, распылители Bradas White Line WL-Z17 в Минске по низкой цене" "s_description" => string(243) "Лучшие цены на White Line WL-Z17 и все товары Bradas в магазине 1teh.by. Бесплатная доставка, отзывы на Системы автоматического …" "s_keywords" => string(107) "Системы автоматического полива, распылители,Bradas,White Line WL-Z17" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(1761) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Общая информация</td></tr><tr class="qugroup_em …" "short_content" => string(102) "распылитель осциллирующий, пластик, площадь полива 366 м2" "active" => string(1) "1" "section_id" => string(1) "7" "price" => string(6) "146.60" "new_price" => string(6) "146.60" "discount" => NULL "created_at" => string(19) "2025-05-31 16:32:25" "article" => string(17) "White Line WL-Z17" "unique_code" => string(7) "1574808" "original" => string(51) "http://1teh.by/files/products/img_1561548_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(4) "3323" "updated_at" => NULL "category_id" => string(3) "512" "garanty" => string(4) "5.60" "importer" => string(100) "Акватехнологии ООО 220070, г. Минск , ул. Олега Кошевого д. 5" "country_made" => string(0) "" "manufacturer" => string(0) "" "service" => string(0) "" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "1" "free_delivery" => string(1) "1" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => NULL "zoomos_filters" => NULL "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => NULL ) protected _related => array(1) ( "section" => object Model_Section(40)
) "minMonth" => integer 4 "reviews_count" => integer 0 "brand" => object Model_Brand(40){ protected _table_name => string(8) "sections" protected _has_many => array(1) ( "product" => array(4) ( "foreign_key" => string(10) "section_id" "through" => NULL "model" => string(7) "Product" "far_key" => string(10) "product_id" ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-section:edit?id=${id}" "external_url" => string(35) "site-section:index?url=${url}&page=" ) "active" => string(4) "bool" "position" => string(8) "position" "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(29) "admin-section:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(8) "position" "order_direction" => string(3) "ASC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(1) "7" "name" => string(55) "Инструменты и Садовая техника" "url" => string(31) "instrumentyi-i-sadovaya-tehnika" "md5_url" => string(32) "3809a652761c6d794a3e58998d28f4fb" "active" => string(1) "1" "s_title" => string(123) "Инструменты и садовая техника. Большой каталог с лучшей ценой - 1teh.by" "s_description" => string(303) "Большой выбор инструментов и садовой техники в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бо …" "s_keywords" => string(0) "" "description" => string(0) "" "position" => NULL "h1" => string(0) "" "updated_at" => string(19) "2025-05-31 17:01:39" "mobile_image" => string(0) "" "main_section_image" => string(0) "" "on_main" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(1) "7" "name" => string(55) "Инструменты и Садовая техника" "url" => string(31) "instrumentyi-i-sadovaya-tehnika" "md5_url" => string(32) "3809a652761c6d794a3e58998d28f4fb" "active" => string(1) "1" "s_title" => string(123) "Инструменты и садовая техника. Большой каталог с лучшей ценой - 1teh.by" "s_description" => string(303) "Большой выбор инструментов и садовой техники в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бо …" "s_keywords" => string(0) "" "description" => string(0) "" "position" => NULL "h1" => string(0) "" "updated_at" => string(19) "2025-05-31 17:01:39" "mobile_image" => string(0) "" "main_section_image" => string(0) "" "on_main" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "section" protected _object_plural => string(8) "sections" protected _table_columns => array(15) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(2) "50" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "position" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "position" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "h1" => array(12) ( "type" => string(6) "string" "column_name" => string(2) "h1" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "comment" => string(0) "" "extra" => string(27) "on update CURRENT_TIMESTAMP" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "mobile_image" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "mobile_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_section_image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(18) "main_section_image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "on_main" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "on_main" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "7" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "product" protected _object_plural => string(8) "products" protected _table_columns => array(63) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "256" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "top" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "top" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "important" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "important" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_image" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "main_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "more_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "more_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "comments_enabled" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "comments_enabled" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "create_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "create_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "update_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "update_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(10) "4294967295" "column_name" => string(7) "content" "column_default" => NULL "data_type" => string(8) "longtext" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "short_content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "short_content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "section_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "section_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "new_price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "new_price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 20 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "discount" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "discount" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "created_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "created_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "article" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "article" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 23 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "unique_code" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "unique_code" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "original" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "original" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 25 "character_maximum_length" => string(3) "512" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "empty" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "empty" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 26 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "to_upload" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "to_upload" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 27 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "reviews" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "reviews" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 28 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "brand_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(8) "brand_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 29 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 30 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 31 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "garanty" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(7) "garanty" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 32 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "importer" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "importer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 33 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "country_made" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "country_made" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 34 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "manufacturer" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "manufacturer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 35 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "service" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "service" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 36 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 37 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gift_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "gift_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 38 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "delivery" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "delivery" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 39 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rating" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "rating" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 40 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "fixed_price" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "fixed_price" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 41 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "popular" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "popular" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 42 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "expedient_on" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(12) "expedient_on" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 43 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "yandex_market_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(16) "yandex_market_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 44 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "no_percent" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "no_percent" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 45 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "free_delivery" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(13) "free_delivery" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 46 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "product_day" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "product_day" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 47 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pok" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "pok" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 48 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "halva" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "halva" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 49 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instructions" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(12) "instructions" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 50 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_hits" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "is_hits" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 51 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "no_percent_force" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "no_percent_force" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 52 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "narod" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(5) "narod" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 53 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "two_year" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "two_year" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 54 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "hit" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(3) "hit" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 55 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "zakaz" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(5) "zakaz" "column_default" => NULL "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 56 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "zoomos_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 57 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_filters" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(14) "zoomos_filters" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 58 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_corrupt" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(10) "is_corrupt" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 59 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "prepared" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "prepared" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 60 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_fixed" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "is_fixed" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 61 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ym_disabled" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(11) "ym_disabled" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 62 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_update_time" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(20) "18446744073709551615" "column_name" => string(18) "zoomos_update_time" "column_default" => NULL "data_type" => string(15) "bigint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 63 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(7) "1574808" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "section" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "product" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(5) "brand" protected _has_many => array(2) ( "product" => array(4) ( "foreign_key" => string(8) "brand_id" "through" => string(13) "brand_product" "model" => string(7) "Product" "far_key" => string(10) "product_id" ) "category" => array(4) ( "foreign_key" => string(8) "brand_id" "through" => string(14) "brand_category" "model" => string(8) "Category" "far_key" => string(11) "category_id" ) ) protected _grid_columns => array(6) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(25) "admin-brand:edit?id=${id}" "external_url" => string(27) "site-brand:index?url=${url}" ) "active" => string(4) "bool" "on_main" => string(4) "bool" "position" => string(8) "position" "description" => array(3) ( "width" => string(3) "40%" "route_str" => string(25) "admin-brand:edit?id=${id}" "type" => string(4) "more" ) "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "color" => string(3) "red" "route_str" => string(27) "admin-brand:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _form_fields => array(0) protected _grid_options => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(14) ( "id" => string(4) "2209" "name" => string(8) "Hozelock" "russian" => NULL "s_title" => NULL "s_description" => NULL "s_keywords" => NULL "url" => string(8) "hozelock" "md5_url" => string(32) "4d2055281b5181de281b1bf6427130c7" "popular" => NULL "active" => string(1) "1" "position" => string(1) "0" "description" => NULL "main_image" => NULL "on_main" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(14) ( "id" => string(4) "2209" "name" => string(8) "Hozelock" "russian" => NULL "s_title" => NULL "s_description" => NULL "s_keywords" => NULL "url" => string(8) "hozelock" "md5_url" => string(32) "4d2055281b5181de281b1bf6427130c7" "popular" => NULL "active" => string(1) "1" "position" => string(1) "0" "description" => NULL "main_image" => NULL "on_main" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(5) "brand" protected _object_plural => string(6) "brands" protected _table_columns => array(14) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(2) "50" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "UNI" "privileges" => string(31) "select,insert,update,references" ) "russian" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "russian" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "popular" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "popular" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "position" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(8) "position" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_image" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "main_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "on_main" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(7) "on_main" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(4) "2209" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
"new_styles" => bool TRUE "months" => array(1) ( 0 => integer 4 ) "reviews_count_yandex" => integer 0 "category" => object Model_Category(40){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(5) "brand" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(10) "categories" protected _has_many => array(4) ( "children" => array(4) ( "foreign_key" => string(9) "parent_id" "through" => NULL "far_key" => string(8) "child_id" "model" => string(8) "Category" ) "services" => array(5) ( "foreign_key" => string(11) "category_id" "through" => string(19) "categories_services" "far_key" => string(10) "service_id" "model" => string(7) "Service" "required" => bool TRUE ) "brand" => array(4) ( "foreign_key" => string(11) "category_id" "through" => string(14) "brand_category" "far_key" => string(8) "brand_id" "model" => string(5) "Brand" ) "filters" => array(4) ( "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(9) "filter_id" "model" => string(6) "Filter" ) ) protected _belongs_to => array(2) ( "section" => array(2) ( "foreign_key" => string(10) "section_id" "model" => string(7) "Section" ) "parent" => array(2) ( "foreign_key" => string(9) "parent_id" "model" => string(8) "Category" ) ) protected _grid_columns => array(7) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(28) "admin-category:edit?id=${id}" "external_url" => string(71) "site-category:index?section=${section.url}&category=${url}&parent=${id}" ) "active" => string(4) "bool" "on_main" => string(4) "bool" "section_id" => array(4) ( "type" => string(5) "child" "field" => string(4) "name" "model" => string(7) "section" "external_url" => string(37) "site-section:index?url=${section.url}" ) "filters" => array(3) ( "type" => string(4) "link" "route_str" => string(31) "admin-filter:index?parent=${id}" "title" => string(18) "[${filters|count}]" ) "add_child" => array(6) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(30) "admin-category:create?id=${id}" "title" => string(32) "<i class="fa fa-arrow-down"></i>" "alternative" => string(39) "Добавить вложенность" "color" => string(4) "blue" ) "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(43) "admin-category:delete?id=${id}&parent=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(4) "name" "order_direction" => string(3) "ASC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(34) ( "id" => string(3) "512" "name" => string(82) "Системы автоматического полива, распылители" "rod_name" => string(0) "" "ed_chislo" => NULL "vin_name" => NULL "rod_name_many" => NULL "h1" => string(0) "" "s_title" => string(150) "Системы автоматического полива, распылители. Большой каталог с лучшей ценой - 1teh.by" "s_description" => string(302) "Большой выбор систем автоматического полива в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бон …" "s_keywords" => string(0) "" "url" => string(45) "sistemyi-avtomaticheskogo-poliva-raspyiliteli" "md5_url" => string(32) "adee60af978a06a08497762ecf262941" "popular" => NULL "active" => string(1) "1" "position" => string(1) "0" "description" => string(0) "" "section_id" => string(1) "7" "parent_id" => string(3) "263" "level" => string(1) "2" "image" => string(56) "/files/category/512/0933d668ae56c1bf231073f377b174d8.jpg" "created_at" => string(19) "2019-03-27 14:10:14" "updated_at" => string(19) "2022-07-12 17:10:09" "video" => string(0) "" "delivery" => string(2) "15" "new" => string(1) "0" "important" => string(1) "0" "sale" => string(1) "0" "icon" => string(0) "" "banner_url" => string(0) "" "banner" => string(0) "" "on_main" => string(1) "0" "mobile_image" => string(0) "" "main_category_image" => NULL "main_banner" => string(0) "" ) protected _changed => array(0) protected _original_values => array(34) ( "id" => string(3) "512" "name" => string(82) "Системы автоматического полива, распылители" "rod_name" => string(0) "" "ed_chislo" => NULL "vin_name" => NULL "rod_name_many" => NULL "h1" => string(0) "" "s_title" => string(150) "Системы автоматического полива, распылители. Большой каталог с лучшей ценой - 1teh.by" "s_description" => string(302) "Большой выбор систем автоматического полива в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бон …" "s_keywords" => string(0) "" "url" => string(45) "sistemyi-avtomaticheskogo-poliva-raspyiliteli" "md5_url" => string(32) "adee60af978a06a08497762ecf262941" "popular" => NULL "active" => string(1) "1" "position" => string(1) "0" "description" => string(0) "" "section_id" => string(1) "7" "parent_id" => string(3) "263" "level" => string(1) "2" "image" => string(56) "/files/category/512/0933d668ae56c1bf231073f377b174d8.jpg" "created_at" => string(19) "2019-03-27 14:10:14" "updated_at" => string(19) "2022-07-12 17:10:09" "video" => string(0) "" "delivery" => string(2) "15" "new" => string(1) "0" "important" => string(1) "0" "sale" => string(1) "0" "icon" => string(0) "" "banner_url" => string(0) "" "banner" => string(0) "" "on_main" => string(1) "0" "mobile_image" => string(0) "" "main_category_image" => NULL "main_banner" => string(0) "" ) protected _related => array(1) ( "parent" => object Model_Category(40)
"product" => object Model_Product(40){ protected _table_name => string(10) "categories" protected _has_many => array(4) ( "children" => array(4) ( "foreign_key" => string(9) "parent_id" "through" => NULL "far_key" => string(8) "child_id" "model" => string(8) "Category" ) "services" => array(5) ( "foreign_key" => string(11) "category_id" "through" => string(19) "categories_services" "far_key" => string(10) "service_id" "model" => string(7) "Service" "required" => bool TRUE ) "brand" => array(4) ( "foreign_key" => string(11) "category_id" "through" => string(14) "brand_category" "far_key" => string(8) "brand_id" "model" => string(5) "Brand" ) "filters" => array(4) ( "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(9) "filter_id" "model" => string(6) "Filter" ) ) protected _belongs_to => array(2) ( "section" => array(2) ( "foreign_key" => string(10) "section_id" "model" => string(7) "Section" ) "parent" => array(2) ( "foreign_key" => string(9) "parent_id" "model" => string(8) "Category" ) ) protected _grid_columns => array(7) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(28) "admin-category:edit?id=${id}" "external_url" => string(71) "site-category:index?section=${section.url}&category=${url}&parent=${id}" ) "active" => string(4) "bool" "on_main" => string(4) "bool" "section_id" => array(4) ( "type" => string(5) "child" "field" => string(4) "name" "model" => string(7) "section" "external_url" => string(37) "site-section:index?url=${section.url}" ) "filters" => array(3) ( "type" => string(4) "link" "route_str" => string(31) "admin-filter:index?parent=${id}" "title" => string(18) "[${filters|count}]" ) "add_child" => array(6) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(30) "admin-category:create?id=${id}" "title" => string(32) "<i class="fa fa-arrow-down"></i>" "alternative" => string(39) "Добавить вложенность" "color" => string(4) "blue" ) "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(43) "admin-category:delete?id=${id}&parent=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(4) "name" "order_direction" => string(3) "ASC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(34) ( "id" => string(3) "263" "name" => string(29) "Садовая техника" "rod_name" => string(29) "Садовую технику" "ed_chislo" => string(29) "Садовая техника" "vin_name" => string(29) "садовой техники" "rod_name_many" => string(29) "садовой техники" "h1" => string(0) "" "s_title" => string(29) "Садовая техника" "s_description" => string(0) "" "s_keywords" => string(0) "" "url" => string(16) "sadovaya-tehnika" "md5_url" => string(32) "8a26814903f77e87df0e8732f6f070f1" "popular" => string(1) "7" "active" => string(1) "1" "position" => string(1) "0" "description" => string(0) "" "section_id" => string(1) "7" "parent_id" => NULL "level" => string(1) "1" "image" => string(56) "/files/category/263/784bb205d734c3037093743b87aa29c7.png" "created_at" => string(19) "2015-07-16 16:34:48" "updated_at" => string(19) "2021-03-17 14:42:07" "video" => string(0) "" "delivery" => string(2) "11" "new" => string(1) "0" "important" => string(1) "0" "sale" => string(1) "0" "icon" => string(0) "" "banner_url" => string(0) "" "banner" => string(0) "" "on_main" => string(1) "1" "mobile_image" => string(0) "" "main_category_image" => string(31) "/files/category/main-svg/12.svg" "main_banner" => string(56) "/files/category/263/72728767255844bc659522ef8ccf6363.jpg" ) protected _changed => array(0) protected _original_values => array(34) ( "id" => string(3) "263" "name" => string(29) "Садовая техника" "rod_name" => string(29) "Садовую технику" "ed_chislo" => string(29) "Садовая техника" "vin_name" => string(29) "садовой техники" "rod_name_many" => string(29) "садовой техники" "h1" => string(0) "" "s_title" => string(29) "Садовая техника" "s_description" => string(0) "" "s_keywords" => string(0) "" "url" => string(16) "sadovaya-tehnika" "md5_url" => string(32) "8a26814903f77e87df0e8732f6f070f1" "popular" => string(1) "7" "active" => string(1) "1" "position" => string(1) "0" "description" => string(0) "" "section_id" => string(1) "7" "parent_id" => NULL "level" => string(1) "1" "image" => string(56) "/files/category/263/784bb205d734c3037093743b87aa29c7.png" "created_at" => string(19) "2015-07-16 16:34:48" "updated_at" => string(19) "2021-03-17 14:42:07" "video" => string(0) "" "delivery" => string(2) "11" "new" => string(1) "0" "important" => string(1) "0" "sale" => string(1) "0" "icon" => string(0) "" "banner_url" => string(0) "" "banner" => string(0) "" "on_main" => string(1) "1" "mobile_image" => string(0) "" "main_category_image" => string(31) "/files/category/main-svg/12.svg" "main_banner" => string(56) "/files/category/263/72728767255844bc659522ef8ccf6363.jpg" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "category" protected _object_plural => string(10) "categories" protected _table_columns => array(34) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "rod_name" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "rod_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ed_chislo" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "ed_chislo" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "vin_name" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "vin_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rod_name_many" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "rod_name_many" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "h1" => array(12) ( "type" => string(6) "string" "column_name" => string(2) "h1" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "popular" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "popular" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "position" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(8) "position" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 15 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "section_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "section_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 17 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "parent_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(9) "parent_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 18 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "level" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(5) "level" "column_default" => string(1) "1" "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 19 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 20 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "created_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "created_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 21 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 22 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 23 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "delivery" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "delivery" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 24 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "new" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(3) "new" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 25 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "important" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(9) "important" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 26 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sale" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(4) "sale" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 27 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "icon" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "icon" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 28 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "banner_url" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "banner_url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 29 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "banner" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "banner" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 30 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "on_main" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(7) "on_main" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 31 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "mobile_image" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "mobile_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 32 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_category_image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(19) "main_category_image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 33 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_banner" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "main_banner" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 34 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "263" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "category" protected _object_plural => string(10) "categories" protected _table_columns => array(34) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "rod_name" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "rod_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ed_chislo" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "ed_chislo" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "vin_name" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "vin_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rod_name_many" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "rod_name_many" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "h1" => array(12) ( "type" => string(6) "string" "column_name" => string(2) "h1" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "popular" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "popular" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "position" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(8) "position" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 15 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "section_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "section_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 17 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "parent_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(9) "parent_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 18 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "level" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(5) "level" "column_default" => string(1) "1" "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 19 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 20 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "created_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "created_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 21 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 22 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 23 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "delivery" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "delivery" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 24 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "new" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(3) "new" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 25 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "important" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(9) "important" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 26 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sale" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(4) "sale" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 27 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "icon" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "icon" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 28 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "banner_url" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "banner_url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 29 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "banner" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "banner" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 30 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "on_main" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(7) "on_main" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 31 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "mobile_image" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "mobile_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 32 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_category_image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(19) "main_category_image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 33 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_banner" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "main_banner" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 34 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "512" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "category" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "category" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(7) "product" protected _belongs_to => array(4) ( "section" => array(3) ( "foreign_key" => string(10) "section_id" "model" => string(7) "Section" "required" => bool TRUE ) "gift" => array(3) ( "foreign_key" => string(7) "gift_id" "model" => string(4) "Gift" "required" => bool TRUE ) "brand" => array(3) ( "foreign_key" => string(8) "brand_id" "model" => string(5) "Brand" "required" => bool TRUE ) "category" => array(3) ( "foreign_key" => string(11) "category_id" "model" => string(8) "Category" "required" => bool TRUE ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-product:edit?id=${id}" "external_url" => string(77) "site-product:index?product=${url}&category=${category.url}&article=${article}" ) "two_year" => string(4) "bool" "edit" => array(6) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(27) "admin-product:edit?id=${id}" "title" => string(26) "<i class="fa fa-edit"></i>" "color" => string(5) "green" "alternative" => string(26) "Редактировать" ) "delete" => array(7) ( "width" => string(2) "40" "type" => string(4) "link" "route_str" => string(29) "admin-product:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "alternative" => string(14) "Удалить" "color" => string(3) "red" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(2) "id" "order_direction" => string(4) "DESC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(63) ( "id" => string(7) "1279366" "name" => string(108) "Системы автоматического полива, распылители Hozelock Flexi Spray 2683" "url" => string(25) "flexi-spray-2683_hozelock" "md5_url" => string(32) "33cff390375fc0e8eeb3006d180d55e8" "top" => string(1) "0" "important" => string(1) "0" "main_image" => string(59) "/files/product/1279366/3e21e83c8a5b327679aec1ef20135d2d.jpg" "more_images" => string(265) "["\/files\/product\/1279366\/b1f16ffe14b3b1c7b9a32c1ad2cee943.jpg","\/files\/product\/1279366\/bf87be8d54ddae4a10f753299dc0eb03. …" "s_title" => string(164) "Купить Системы автоматического полива, распылители Hozelock Flexi Spray 2683 в Минске по низкой цене" "s_description" => string(244) "Лучшие цены на Flexi Spray 2683 и все товары Hozelock в магазине 1teh.by. Бесплатная доставка, отзывы на Системы автоматического …" "s_keywords" => string(108) "Системы автоматического полива, распылители,Hozelock,Flexi Spray 2683" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(2289) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Общая информация</td></tr><tr class="qugroup_em …" "short_content" => string(143) "распылитель дождеватель/пистолет/штанга, 3 режима, пластик, площадь полива 69 м2" "active" => string(1) "1" "section_id" => string(1) "7" "price" => string(6) "185.76" "new_price" => string(6) "185.76" "discount" => NULL "created_at" => string(19) "2025-05-31 16:32:25" "article" => string(16) "Flexi Spray 2683" "unique_code" => string(7) "1279366" "original" => string(51) "http://1teh.by/files/products/img_1619342_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(4) "2209" "updated_at" => NULL "category_id" => string(3) "512" "garanty" => string(4) "0.00" "importer" => string(90) "СП "Сканлинк" ОООг.Минск, 4-ый пер. Монтажников д.5-16" "country_made" => string(0) "" "manufacturer" => string(0) "" "service" => string(0) "" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "1" "free_delivery" => string(1) "1" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(246) "["https:\/\/api.zoomos.by\/img\/item\/1929674\/0","https:\/\/api.zoomos.by\/img\/item\/1929674\/1","https:\/\/api.zoomos.by\/img …" "zoomos_filters" => NULL "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => string(13) "1748584067000" ) protected _changed => array(0) protected _original_values => array(63) ( "id" => string(7) "1279366" "name" => string(108) "Системы автоматического полива, распылители Hozelock Flexi Spray 2683" "url" => string(25) "flexi-spray-2683_hozelock" "md5_url" => string(32) "33cff390375fc0e8eeb3006d180d55e8" "top" => string(1) "0" "important" => string(1) "0" "main_image" => string(59) "/files/product/1279366/3e21e83c8a5b327679aec1ef20135d2d.jpg" "more_images" => string(265) "["\/files\/product\/1279366\/b1f16ffe14b3b1c7b9a32c1ad2cee943.jpg","\/files\/product\/1279366\/bf87be8d54ddae4a10f753299dc0eb03. …" "s_title" => string(164) "Купить Системы автоматического полива, распылители Hozelock Flexi Spray 2683 в Минске по низкой цене" "s_description" => string(244) "Лучшие цены на Flexi Spray 2683 и все товары Hozelock в магазине 1teh.by. Бесплатная доставка, отзывы на Системы автоматического …" "s_keywords" => string(108) "Системы автоматического полива, распылители,Hozelock,Flexi Spray 2683" "comments_enabled" => string(1) "1" "create_date" => NULL "update_date" => NULL "content" => string(2289) "<table class="qutable"><tbody><tr class="qugroup"><td class="quhead" colspan="2">Общая информация</td></tr><tr class="qugroup_em …" "short_content" => string(143) "распылитель дождеватель/пистолет/штанга, 3 режима, пластик, площадь полива 69 м2" "active" => string(1) "1" "section_id" => string(1) "7" "price" => string(6) "185.76" "new_price" => string(6) "185.76" "discount" => NULL "created_at" => string(19) "2025-05-31 16:32:25" "article" => string(16) "Flexi Spray 2683" "unique_code" => string(7) "1279366" "original" => string(51) "http://1teh.by/files/products/img_1619342_big_1.jpg" "empty" => string(1) "0" "to_upload" => string(1) "0" "reviews" => NULL "brand_id" => string(4) "2209" "updated_at" => NULL "category_id" => string(3) "512" "garanty" => string(4) "0.00" "importer" => string(90) "СП "Сканлинк" ОООг.Минск, 4-ый пер. Монтажников д.5-16" "country_made" => string(0) "" "manufacturer" => string(0) "" "service" => string(0) "" "video" => NULL "gift_id" => NULL "delivery" => NULL "rating" => NULL "fixed_price" => string(1) "0" "popular" => NULL "expedient_on" => string(1) "0" "yandex_market_id" => NULL "no_percent" => string(1) "1" "free_delivery" => string(1) "1" "product_day" => string(1) "0" "pok" => string(1) "0" "halva" => string(1) "1" "instructions" => NULL "is_hits" => string(1) "0" "no_percent_force" => NULL "narod" => string(1) "0" "two_year" => string(1) "0" "hit" => string(1) "0" "zakaz" => string(1) "0" "zoomos_images" => string(246) "["https:\/\/api.zoomos.by\/img\/item\/1929674\/0","https:\/\/api.zoomos.by\/img\/item\/1929674\/1","https:\/\/api.zoomos.by\/img …" "zoomos_filters" => NULL "is_corrupt" => string(1) "0" "prepared" => string(1) "0" "is_fixed" => string(1) "0" "ym_disabled" => string(1) "0" "zoomos_update_time" => string(13) "1748584067000" ) protected _related => array(2) ( "category" => object Model_Category(40)
"giftUrl" => NULL "section" => object Model_Section(40){ protected _table_name => string(10) "categories" protected _has_many => array(4) ( "children" => array(4) ( "foreign_key" => string(9) "parent_id" "through" => NULL "far_key" => string(8) "child_id" "model" => string(8) "Category" ) "services" => array(5) ( "foreign_key" => string(11) "category_id" "through" => string(19) "categories_services" "far_key" => string(10) "service_id" "model" => string(7) "Service" "required" => bool TRUE ) "brand" => array(4) ( "foreign_key" => string(11) "category_id" "through" => string(14) "brand_category" "far_key" => string(8) "brand_id" "model" => string(5) "Brand" ) "filters" => array(4) ( "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(9) "filter_id" "model" => string(6) "Filter" ) ) protected _belongs_to => array(2) ( "section" => array(2) ( "foreign_key" => string(10) "section_id" "model" => string(7) "Section" ) "parent" => array(2) ( "foreign_key" => string(9) "parent_id" "model" => string(8) "Category" ) ) protected _grid_columns => array(7) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(28) "admin-category:edit?id=${id}" "external_url" => string(71) "site-category:index?section=${section.url}&category=${url}&parent=${id}" ) "active" => string(4) "bool" "on_main" => string(4) "bool" "section_id" => array(4) ( "type" => string(5) "child" "field" => string(4) "name" "model" => string(7) "section" "external_url" => string(37) "site-section:index?url=${section.url}" ) "filters" => array(3) ( "type" => string(4) "link" "route_str" => string(31) "admin-filter:index?parent=${id}" "title" => string(18) "[${filters|count}]" ) "add_child" => array(6) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(30) "admin-category:create?id=${id}" "title" => string(32) "<i class="fa fa-arrow-down"></i>" "alternative" => string(39) "Добавить вложенность" "color" => string(4) "blue" ) "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(43) "admin-category:delete?id=${id}&parent=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(4) "name" "order_direction" => string(3) "ASC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(34) ( "id" => string(3) "512" "name" => string(82) "Системы автоматического полива, распылители" "rod_name" => string(0) "" "ed_chislo" => NULL "vin_name" => NULL "rod_name_many" => NULL "h1" => string(0) "" "s_title" => string(150) "Системы автоматического полива, распылители. Большой каталог с лучшей ценой - 1teh.by" "s_description" => string(302) "Большой выбор систем автоматического полива в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бон …" "s_keywords" => string(0) "" "url" => string(45) "sistemyi-avtomaticheskogo-poliva-raspyiliteli" "md5_url" => string(32) "adee60af978a06a08497762ecf262941" "popular" => NULL "active" => string(1) "1" "position" => string(1) "0" "description" => string(0) "" "section_id" => string(1) "7" "parent_id" => string(3) "263" "level" => string(1) "2" "image" => string(56) "/files/category/512/0933d668ae56c1bf231073f377b174d8.jpg" "created_at" => string(19) "2019-03-27 14:10:14" "updated_at" => string(19) "2022-07-12 17:10:09" "video" => string(0) "" "delivery" => string(2) "15" "new" => string(1) "0" "important" => string(1) "0" "sale" => string(1) "0" "icon" => string(0) "" "banner_url" => string(0) "" "banner" => string(0) "" "on_main" => string(1) "0" "mobile_image" => string(0) "" "main_category_image" => NULL "main_banner" => string(0) "" ) protected _changed => array(0) protected _original_values => array(34) ( "id" => string(3) "512" "name" => string(82) "Системы автоматического полива, распылители" "rod_name" => string(0) "" "ed_chislo" => NULL "vin_name" => NULL "rod_name_many" => NULL "h1" => string(0) "" "s_title" => string(150) "Системы автоматического полива, распылители. Большой каталог с лучшей ценой - 1teh.by" "s_description" => string(302) "Большой выбор систем автоматического полива в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бон …" "s_keywords" => string(0) "" "url" => string(45) "sistemyi-avtomaticheskogo-poliva-raspyiliteli" "md5_url" => string(32) "adee60af978a06a08497762ecf262941" "popular" => NULL "active" => string(1) "1" "position" => string(1) "0" "description" => string(0) "" "section_id" => string(1) "7" "parent_id" => string(3) "263" "level" => string(1) "2" "image" => string(56) "/files/category/512/0933d668ae56c1bf231073f377b174d8.jpg" "created_at" => string(19) "2019-03-27 14:10:14" "updated_at" => string(19) "2022-07-12 17:10:09" "video" => string(0) "" "delivery" => string(2) "15" "new" => string(1) "0" "important" => string(1) "0" "sale" => string(1) "0" "icon" => string(0) "" "banner_url" => string(0) "" "banner" => string(0) "" "on_main" => string(1) "0" "mobile_image" => string(0) "" "main_category_image" => NULL "main_banner" => string(0) "" ) protected _related => array(1) ( "parent" => object Model_Category(40)
"brand" => object Model_Brand(40){ protected _table_name => string(10) "categories" protected _has_many => array(4) ( "children" => array(4) ( "foreign_key" => string(9) "parent_id" "through" => NULL "far_key" => string(8) "child_id" "model" => string(8) "Category" ) "services" => array(5) ( "foreign_key" => string(11) "category_id" "through" => string(19) "categories_services" "far_key" => string(10) "service_id" "model" => string(7) "Service" "required" => bool TRUE ) "brand" => array(4) ( "foreign_key" => string(11) "category_id" "through" => string(14) "brand_category" "far_key" => string(8) "brand_id" "model" => string(5) "Brand" ) "filters" => array(4) ( "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(9) "filter_id" "model" => string(6) "Filter" ) ) protected _belongs_to => array(2) ( "section" => array(2) ( "foreign_key" => string(10) "section_id" "model" => string(7) "Section" ) "parent" => array(2) ( "foreign_key" => string(9) "parent_id" "model" => string(8) "Category" ) ) protected _grid_columns => array(7) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(28) "admin-category:edit?id=${id}" "external_url" => string(71) "site-category:index?section=${section.url}&category=${url}&parent=${id}" ) "active" => string(4) "bool" "on_main" => string(4) "bool" "section_id" => array(4) ( "type" => string(5) "child" "field" => string(4) "name" "model" => string(7) "section" "external_url" => string(37) "site-section:index?url=${section.url}" ) "filters" => array(3) ( "type" => string(4) "link" "route_str" => string(31) "admin-filter:index?parent=${id}" "title" => string(18) "[${filters|count}]" ) "add_child" => array(6) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(30) "admin-category:create?id=${id}" "title" => string(32) "<i class="fa fa-arrow-down"></i>" "alternative" => string(39) "Добавить вложенность" "color" => string(4) "blue" ) "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(43) "admin-category:delete?id=${id}&parent=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(4) "name" "order_direction" => string(3) "ASC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(34) ( "id" => string(3) "263" "name" => string(29) "Садовая техника" "rod_name" => string(29) "Садовую технику" "ed_chislo" => string(29) "Садовая техника" "vin_name" => string(29) "садовой техники" "rod_name_many" => string(29) "садовой техники" "h1" => string(0) "" "s_title" => string(29) "Садовая техника" "s_description" => string(0) "" "s_keywords" => string(0) "" "url" => string(16) "sadovaya-tehnika" "md5_url" => string(32) "8a26814903f77e87df0e8732f6f070f1" "popular" => string(1) "7" "active" => string(1) "1" "position" => string(1) "0" "description" => string(0) "" "section_id" => string(1) "7" "parent_id" => NULL "level" => string(1) "1" "image" => string(56) "/files/category/263/784bb205d734c3037093743b87aa29c7.png" "created_at" => string(19) "2015-07-16 16:34:48" "updated_at" => string(19) "2021-03-17 14:42:07" "video" => string(0) "" "delivery" => string(2) "11" "new" => string(1) "0" "important" => string(1) "0" "sale" => string(1) "0" "icon" => string(0) "" "banner_url" => string(0) "" "banner" => string(0) "" "on_main" => string(1) "1" "mobile_image" => string(0) "" "main_category_image" => string(31) "/files/category/main-svg/12.svg" "main_banner" => string(56) "/files/category/263/72728767255844bc659522ef8ccf6363.jpg" ) protected _changed => array(0) protected _original_values => array(34) ( "id" => string(3) "263" "name" => string(29) "Садовая техника" "rod_name" => string(29) "Садовую технику" "ed_chislo" => string(29) "Садовая техника" "vin_name" => string(29) "садовой техники" "rod_name_many" => string(29) "садовой техники" "h1" => string(0) "" "s_title" => string(29) "Садовая техника" "s_description" => string(0) "" "s_keywords" => string(0) "" "url" => string(16) "sadovaya-tehnika" "md5_url" => string(32) "8a26814903f77e87df0e8732f6f070f1" "popular" => string(1) "7" "active" => string(1) "1" "position" => string(1) "0" "description" => string(0) "" "section_id" => string(1) "7" "parent_id" => NULL "level" => string(1) "1" "image" => string(56) "/files/category/263/784bb205d734c3037093743b87aa29c7.png" "created_at" => string(19) "2015-07-16 16:34:48" "updated_at" => string(19) "2021-03-17 14:42:07" "video" => string(0) "" "delivery" => string(2) "11" "new" => string(1) "0" "important" => string(1) "0" "sale" => string(1) "0" "icon" => string(0) "" "banner_url" => string(0) "" "banner" => string(0) "" "on_main" => string(1) "1" "mobile_image" => string(0) "" "main_category_image" => string(31) "/files/category/main-svg/12.svg" "main_banner" => string(56) "/files/category/263/72728767255844bc659522ef8ccf6363.jpg" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "category" protected _object_plural => string(10) "categories" protected _table_columns => array(34) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "rod_name" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "rod_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ed_chislo" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "ed_chislo" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "vin_name" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "vin_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rod_name_many" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "rod_name_many" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "h1" => array(12) ( "type" => string(6) "string" "column_name" => string(2) "h1" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "popular" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "popular" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "position" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(8) "position" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 15 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "section_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "section_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 17 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "parent_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(9) "parent_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 18 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "level" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(5) "level" "column_default" => string(1) "1" "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 19 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 20 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "created_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "created_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 21 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 22 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 23 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "delivery" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "delivery" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 24 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "new" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(3) "new" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 25 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "important" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(9) "important" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 26 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sale" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(4) "sale" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 27 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "icon" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "icon" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 28 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "banner_url" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "banner_url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 29 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "banner" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "banner" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 30 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "on_main" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(7) "on_main" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 31 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "mobile_image" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "mobile_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 32 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_category_image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(19) "main_category_image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 33 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_banner" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "main_banner" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 34 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "263" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "category" protected _object_plural => string(10) "categories" protected _table_columns => array(34) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "rod_name" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "rod_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ed_chislo" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "ed_chislo" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "vin_name" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "vin_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rod_name_many" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "rod_name_many" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "h1" => array(12) ( "type" => string(6) "string" "column_name" => string(2) "h1" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "popular" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "popular" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "position" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(8) "position" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 15 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "section_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "section_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 17 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "parent_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(9) "parent_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 18 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "level" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(5) "level" "column_default" => string(1) "1" "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 19 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 20 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "created_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "created_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 21 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 22 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 23 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "delivery" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "delivery" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 24 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "new" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(3) "new" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 25 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "important" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(9) "important" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 26 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sale" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(4) "sale" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 27 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "icon" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "icon" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 28 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "banner_url" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "banner_url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 29 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "banner" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "banner" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 30 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "on_main" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(7) "on_main" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 31 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "mobile_image" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "mobile_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 32 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_category_image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(19) "main_category_image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 33 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_banner" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "main_banner" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 34 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "512" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "category" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( ... ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "category" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(5) "brand" protected _has_many => array(2) ( "product" => array(4) ( "foreign_key" => string(8) "brand_id" "through" => string(13) "brand_product" "model" => string(7) "Product" "far_key" => string(10) "product_id" ) "category" => array(4) ( "foreign_key" => string(8) "brand_id" "through" => string(14) "brand_category" "model" => string(8) "Category" "far_key" => string(11) "category_id" ) ) protected _grid_columns => array(6) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(25) "admin-brand:edit?id=${id}" "external_url" => string(27) "site-brand:index?url=${url}" ) "active" => string(4) "bool" "on_main" => string(4) "bool" "position" => string(8) "position" "description" => array(3) ( "width" => string(3) "40%" "route_str" => string(25) "admin-brand:edit?id=${id}" "type" => string(4) "more" ) "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "color" => string(3) "red" "route_str" => string(27) "admin-brand:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _form_fields => array(0) protected _grid_options => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(14) ( "id" => string(4) "2209" "name" => string(8) "Hozelock" "russian" => NULL "s_title" => NULL "s_description" => NULL "s_keywords" => NULL "url" => string(8) "hozelock" "md5_url" => string(32) "4d2055281b5181de281b1bf6427130c7" "popular" => NULL "active" => string(1) "1" "position" => string(1) "0" "description" => NULL "main_image" => NULL "on_main" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(14) ( "id" => string(4) "2209" "name" => string(8) "Hozelock" "russian" => NULL "s_title" => NULL "s_description" => NULL "s_keywords" => NULL "url" => string(8) "hozelock" "md5_url" => string(32) "4d2055281b5181de281b1bf6427130c7" "popular" => NULL "active" => string(1) "1" "position" => string(1) "0" "description" => NULL "main_image" => NULL "on_main" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(5) "brand" protected _object_plural => string(6) "brands" protected _table_columns => array(14) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(2) "50" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "UNI" "privileges" => string(31) "select,insert,update,references" ) "russian" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "russian" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "popular" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "popular" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "position" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(8) "position" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_image" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "main_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "on_main" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(7) "on_main" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(4) "2209" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "product" protected _object_plural => string(8) "products" protected _table_columns => array(63) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "256" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "top" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "top" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "important" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "important" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_image" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "main_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "more_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "more_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "comments_enabled" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "comments_enabled" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "create_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "create_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "update_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "update_date" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(10) "4294967295" "column_name" => string(7) "content" "column_default" => NULL "data_type" => string(8) "longtext" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "short_content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "short_content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "section_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "section_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "new_price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "new_price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 20 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "discount" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "discount" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "created_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "created_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "article" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "article" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 23 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "unique_code" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "unique_code" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "original" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "original" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 25 "character_maximum_length" => string(3) "512" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "empty" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "empty" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 26 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "to_upload" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "to_upload" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 27 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "reviews" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "reviews" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 28 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "brand_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(8) "brand_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 29 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => NULL "data_type" => string(9) "timestamp" "is_nullable" => bool TRUE "ordinal_position" => integer 30 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 31 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "garanty" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(7) "garanty" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 32 "numeric_scale" => string(1) "2" "numeric_precision" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "importer" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "importer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 33 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "country_made" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "country_made" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 34 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "manufacturer" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "manufacturer" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 35 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "service" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "service" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 36 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 37 "character_maximum_length" => string(4) "1024" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gift_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "gift_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 38 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "delivery" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "delivery" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 39 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rating" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "rating" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 40 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "fixed_price" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "fixed_price" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 41 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "popular" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "popular" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 42 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "expedient_on" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(12) "expedient_on" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 43 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "yandex_market_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(16) "yandex_market_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 44 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "no_percent" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "no_percent" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 45 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "free_delivery" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(13) "free_delivery" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 46 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "product_day" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(11) "product_day" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 47 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pok" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(3) "pok" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 48 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "halva" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(5) "halva" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 49 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instructions" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(12) "instructions" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 50 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_hits" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "is_hits" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 51 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "no_percent_force" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(16) "no_percent_force" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 52 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "narod" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(5) "narod" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 53 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "two_year" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "two_year" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 54 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "hit" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(3) "hit" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 55 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "zakaz" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(5) "zakaz" "column_default" => NULL "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 56 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "zoomos_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 57 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_filters" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(14) "zoomos_filters" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 58 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_corrupt" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(10) "is_corrupt" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 59 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "prepared" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "prepared" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 60 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_fixed" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(8) "is_fixed" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 61 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ym_disabled" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(11) "ym_disabled" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 62 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoomos_update_time" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(20) "18446744073709551615" "column_name" => string(18) "zoomos_update_time" "column_default" => NULL "data_type" => string(15) "bigint unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 63 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(7) "1279366" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(5) "brand" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "product" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(8) "sections" protected _has_many => array(1) ( "product" => array(4) ( "foreign_key" => string(10) "section_id" "through" => NULL "model" => string(7) "Product" "far_key" => string(10) "product_id" ) ) protected _grid_columns => array(4) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(27) "admin-section:edit?id=${id}" "external_url" => string(35) "site-section:index?url=${url}&page=" ) "active" => string(4) "bool" "position" => string(8) "position" "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(29) "admin-section:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(2) ( "order_by" => string(8) "position" "order_direction" => string(3) "ASC" ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(1) "7" "name" => string(55) "Инструменты и Садовая техника" "url" => string(31) "instrumentyi-i-sadovaya-tehnika" "md5_url" => string(32) "3809a652761c6d794a3e58998d28f4fb" "active" => string(1) "1" "s_title" => string(123) "Инструменты и садовая техника. Большой каталог с лучшей ценой - 1teh.by" "s_description" => string(303) "Большой выбор инструментов и садовой техники в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бо …" "s_keywords" => string(0) "" "description" => string(0) "" "position" => NULL "h1" => string(0) "" "updated_at" => string(19) "2025-05-31 17:01:39" "mobile_image" => string(0) "" "main_section_image" => string(0) "" "on_main" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(1) "7" "name" => string(55) "Инструменты и Садовая техника" "url" => string(31) "instrumentyi-i-sadovaya-tehnika" "md5_url" => string(32) "3809a652761c6d794a3e58998d28f4fb" "active" => string(1) "1" "s_title" => string(123) "Инструменты и садовая техника. Большой каталог с лучшей ценой - 1teh.by" "s_description" => string(303) "Большой выбор инструментов и садовой техники в интернет-магазине 1teh.by. Лучшие цены на рынке. Гарантия качества. Постоянные бо …" "s_keywords" => string(0) "" "description" => string(0) "" "position" => NULL "h1" => string(0) "" "updated_at" => string(19) "2025-05-31 17:01:39" "mobile_image" => string(0) "" "main_section_image" => string(0) "" "on_main" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "section" protected _object_plural => string(8) "sections" protected _table_columns => array(15) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(2) "50" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "md5_url" => array(13) ( "type" => string(6) "string" "exact" => bool TRUE "column_name" => string(7) "md5_url" "column_default" => NULL "data_type" => string(4) "char" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "position" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "position" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "h1" => array(12) ( "type" => string(6) "string" "column_name" => string(2) "h1" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "comment" => string(0) "" "extra" => string(27) "on update CURRENT_TIMESTAMP" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "mobile_image" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "mobile_image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "main_section_image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(18) "main_section_image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "on_main" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(7) "on_main" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "7" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
"maxPercentCard" => string(1) "8" "installmentCard" => array(4) ( 0 => array(8) ( "id" => string(1) "1" "name" => string(40) "Карта рассрочки Халва" "active" => string(1) "1" "logo" => string(61) "/files/installmentcard/1/6b25a531a67792ad4d0f51a9147cb8ff.jpg" "month_standart" => string(1) "2" "month_akcia" => string(1) "0" "procent" => string(1) "6" "url" => string(5) "halva" ) 1 => array(8) ( "id" => string(1) "2" "name" => string(44) "Карта рассрочки "Магнит"" "active" => string(1) "1" "logo" => string(61) "/files/installmentcard/2/6bd782685a0627e53b975d70dcfe1603.png" "month_standart" => string(1) "3" "month_akcia" => string(1) "0" "procent" => string(1) "6" "url" => string(0) "" ) 2 => array(8) ( "id" => string(1) "3" "name" => string(27) ""Карта покупок"" "active" => string(1) "1" "logo" => string(61) "/files/installmentcard/3/b8465507aa42eedd63c31fd63563aa74.png" "month_standart" => string(1) "3" "month_akcia" => string(1) "0" "procent" => string(1) "8" "url" => string(0) "" ) 3 => array(8) ( "id" => string(1) "5" "name" => string(46) "Карта рассрочки "Карта FUN"" "active" => string(1) "1" "logo" => string(61) "/files/installmentcard/5/67dcd3069cf180c4ce7d6a7faf3996be.jpg" "month_standart" => string(1) "3" "month_akcia" => string(1) "0" "procent" => string(3) "7.5" "url" => string(0) "" ) ) "relatedProducts" => array(0) "maxCredit" => integer 0 "minCredit" => integer 0 "credits" => object Database_MySQLi_Result(7){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(7) "section" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _internal_row => integer 0 protected _query => string(531) "SELECT `credit`.`id` AS `id`, `credit`.`name` AS `name`, `credit`.`percent` AS `percent`, `credit`.`variants` AS `variants`, `cr …" protected _result => object mysqli_result(5)
"mincredit" => bool FALSE "mininstallment" => float 46.44 "monthinstallment" => integer 4 "og_title" => string(108) "Системы автоматического полива, распылители Hozelock Flexi Spray 2683" "og_image" => string(59) "/files/product/1279366/3e21e83c8a5b327679aec1ef20135d2d.jpg" "lastNews" => array(8) ( 0 => object Model_News(40){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 0 protected _current_row => integer 0 protected _as_object => string(12) "Model_Credit" protected _object_params => NULL }{ protected _table_name => string(4) "news" protected _belongs_to => array(1) ( "category_news" => array(2) ( "foreign_key" => string(16) "category_news_id" "model" => string(12) "CategoryNews" ) ) protected _grid_columns => array(8) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(24) "admin-news:edit?id=${id}" "external_url" => string(26) "site-news:index?url=${url}" ) "s_title" => string(5) "empty" "s_description" => string(5) "empty" "s_keywords" => string(5) "empty" "active" => string(4) "bool" "updated_at" => NULL "edit" => array(6) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(24) "admin-news:edit?id=${id}" "title" => string(28) "<i class="fa fa-pencil"></i>" "color" => string(5) "green" "alternative" => string(26) "Редактировать" ) "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(26) "admin-news:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(3) ( "order_by" => string(10) "updated_at" "order_direction" => string(3) "ASC" "per_page" => integer 500 ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(2) "85" "name" => string(76) "Индукционная варочная панель Electrolux EHH56240IK" "s_title" => string(76) "Индукционная варочная панель Electrolux EHH56240IK" "s_description" => string(499) "Варочные панели с сенсорным управлением в интернет-магазине бытовой техники 1teh.by. Большой каталог варочных панелей с отзывами …" "s_keywords" => string(0) "" "url" => string(53) "induktsionnaya-varochnaya-panel-electrolux-ehh56240ik" "active" => string(1) "1" "updated_at" => string(19) "2025-02-12 17:32:01" "static" => string(1) "0" "content" => string(3015) "<p>Реализуйте свои таланты и воспользуйтесь скоростью и точностью, обычно доступной лишь профессиональным шеф-поварам. Индукцион …" "short_text" => string(360) "<p>Реализуйте свои таланты и воспользуйтесь скоростью и точностью, обычно доступной лишь профессиональным шеф-поварам. Индукцион …" "image" => string(51) "/files/news/85/a125e53c5cbd89af57dc37b15d41f984.png" "more_images" => NULL "category_id" => string(3) "115" "category_news_id" => string(1) "5" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(2) "85" "name" => string(76) "Индукционная варочная панель Electrolux EHH56240IK" "s_title" => string(76) "Индукционная варочная панель Electrolux EHH56240IK" "s_description" => string(499) "Варочные панели с сенсорным управлением в интернет-магазине бытовой техники 1teh.by. Большой каталог варочных панелей с отзывами …" "s_keywords" => string(0) "" "url" => string(53) "induktsionnaya-varochnaya-panel-electrolux-ehh56240ik" "active" => string(1) "1" "updated_at" => string(19) "2025-02-12 17:32:01" "static" => string(1) "0" "content" => string(3015) "<p>Реализуйте свои таланты и воспользуйтесь скоростью и точностью, обычно доступной лишь профессиональным шеф-поварам. Индукцион …" "short_text" => string(360) "<p>Реализуйте свои таланты и воспользуйтесь скоростью и точностью, обычно доступной лишь профессиональным шеф-поварам. Индукцион …" "image" => string(51) "/files/news/85/a125e53c5cbd89af57dc37b15d41f984.png" "more_images" => NULL "category_id" => string(3) "115" "category_news_id" => string(1) "5" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "news" protected _object_plural => string(4) "news" protected _table_columns => array(15) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "comment" => string(0) "" "extra" => string(27) "on update CURRENT_TIMESTAMP" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "static" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "static" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(7) "content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "short_text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(10) "short_text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "more_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "more_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_news_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(16) "category_news_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(2) "85" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
1 => object Model_News(40){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "news" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(4) "news" protected _belongs_to => array(1) ( "category_news" => array(2) ( "foreign_key" => string(16) "category_news_id" "model" => string(12) "CategoryNews" ) ) protected _grid_columns => array(8) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(24) "admin-news:edit?id=${id}" "external_url" => string(26) "site-news:index?url=${url}" ) "s_title" => string(5) "empty" "s_description" => string(5) "empty" "s_keywords" => string(5) "empty" "active" => string(4) "bool" "updated_at" => NULL "edit" => array(6) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(24) "admin-news:edit?id=${id}" "title" => string(28) "<i class="fa fa-pencil"></i>" "color" => string(5) "green" "alternative" => string(26) "Редактировать" ) "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(26) "admin-news:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(3) ( "order_by" => string(10) "updated_at" "order_direction" => string(3) "ASC" "per_page" => integer 500 ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(2) "75" "name" => string(130) "Как выбрать электрическую плиту? На что обратить внимание при покупке? " "s_title" => string(130) "Как выбрать электрическую плиту? На что обратить внимание при покупке? " "s_description" => string(453) "Электрические кухонные плиты в интернет-магазине бытовой техники 1teh.by. Большой каталог кухонных плит с отзывами клиентов и ха …" "s_keywords" => string(68) "плита, электрическая, доставка, минск" "url" => string(70) "kak-vyibrat-elektricheskuyu-plitu-na-chto-obratit-vnimanie-pri-pokupke" "active" => string(1) "1" "updated_at" => string(19) "2025-02-12 17:31:39" "static" => string(1) "0" "content" => string(3384) "<p>Кухонная плита – незаменимый помошник в кухонном искусстве. Как выбрать электрическую плиту, чтобы она прослужила …" "short_text" => string(339) "<p>Кухонная плита – незаменимый помошник в кухонном искусстве. Как выбрать электрическую плиту, чтобы она прослужила …" "image" => string(51) "/files/news/75/c248c43190ce883044e04f481df98f2e.jpg" "more_images" => NULL "category_id" => NULL "category_news_id" => string(1) "4" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(2) "75" "name" => string(130) "Как выбрать электрическую плиту? На что обратить внимание при покупке? " "s_title" => string(130) "Как выбрать электрическую плиту? На что обратить внимание при покупке? " "s_description" => string(453) "Электрические кухонные плиты в интернет-магазине бытовой техники 1teh.by. Большой каталог кухонных плит с отзывами клиентов и ха …" "s_keywords" => string(68) "плита, электрическая, доставка, минск" "url" => string(70) "kak-vyibrat-elektricheskuyu-plitu-na-chto-obratit-vnimanie-pri-pokupke" "active" => string(1) "1" "updated_at" => string(19) "2025-02-12 17:31:39" "static" => string(1) "0" "content" => string(3384) "<p>Кухонная плита – незаменимый помошник в кухонном искусстве. Как выбрать электрическую плиту, чтобы она прослужила …" "short_text" => string(339) "<p>Кухонная плита – незаменимый помошник в кухонном искусстве. Как выбрать электрическую плиту, чтобы она прослужила …" "image" => string(51) "/files/news/75/c248c43190ce883044e04f481df98f2e.jpg" "more_images" => NULL "category_id" => NULL "category_news_id" => string(1) "4" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "news" protected _object_plural => string(4) "news" protected _table_columns => array(15) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "comment" => string(0) "" "extra" => string(27) "on update CURRENT_TIMESTAMP" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "static" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "static" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(7) "content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "short_text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(10) "short_text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "more_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "more_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_news_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(16) "category_news_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(2) "75" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
2 => object Model_News(40){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "news" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(4) "news" protected _belongs_to => array(1) ( "category_news" => array(2) ( "foreign_key" => string(16) "category_news_id" "model" => string(12) "CategoryNews" ) ) protected _grid_columns => array(8) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(24) "admin-news:edit?id=${id}" "external_url" => string(26) "site-news:index?url=${url}" ) "s_title" => string(5) "empty" "s_description" => string(5) "empty" "s_keywords" => string(5) "empty" "active" => string(4) "bool" "updated_at" => NULL "edit" => array(6) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(24) "admin-news:edit?id=${id}" "title" => string(28) "<i class="fa fa-pencil"></i>" "color" => string(5) "green" "alternative" => string(26) "Редактировать" ) "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(26) "admin-news:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(3) ( "order_by" => string(10) "updated_at" "order_direction" => string(3) "ASC" "per_page" => integer 500 ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(2) "77" "name" => string(104) "Место для сушильной машины. Как его правильно подобрать? " "s_title" => string(104) "Место для сушильной машины. Как его правильно подобрать? " "s_description" => string(0) "" "s_keywords" => string(0) "" "url" => string(55) "mesto-dlya-sushilnoy-mashinyi-kak-ego-pravilno-podobrat" "active" => string(1) "1" "updated_at" => string(19) "2025-02-12 17:31:31" "static" => string(1) "0" "content" => string(2384) "<h1>Как расположить сушильную машину, сэкономив необходимое пространство?</h1> <p><br /> Стиральные машины стали необходимостью …" "short_text" => string(737) "<p>Стиральные машины стали необходимостью в каждой современной семье. Автоматическая стиральная машина есть практически в каждой …" "image" => string(51) "/files/news/77/d5f28955c172e3640ae3cdf4eb7441dd.png" "more_images" => NULL "category_id" => NULL "category_news_id" => string(1) "4" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(2) "77" "name" => string(104) "Место для сушильной машины. Как его правильно подобрать? " "s_title" => string(104) "Место для сушильной машины. Как его правильно подобрать? " "s_description" => string(0) "" "s_keywords" => string(0) "" "url" => string(55) "mesto-dlya-sushilnoy-mashinyi-kak-ego-pravilno-podobrat" "active" => string(1) "1" "updated_at" => string(19) "2025-02-12 17:31:31" "static" => string(1) "0" "content" => string(2384) "<h1>Как расположить сушильную машину, сэкономив необходимое пространство?</h1> <p><br /> Стиральные машины стали необходимостью …" "short_text" => string(737) "<p>Стиральные машины стали необходимостью в каждой современной семье. Автоматическая стиральная машина есть практически в каждой …" "image" => string(51) "/files/news/77/d5f28955c172e3640ae3cdf4eb7441dd.png" "more_images" => NULL "category_id" => NULL "category_news_id" => string(1) "4" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "news" protected _object_plural => string(4) "news" protected _table_columns => array(15) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "comment" => string(0) "" "extra" => string(27) "on update CURRENT_TIMESTAMP" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "static" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "static" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(7) "content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "short_text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(10) "short_text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "more_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "more_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_news_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(16) "category_news_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(2) "77" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
3 => object Model_News(40){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "news" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(4) "news" protected _belongs_to => array(1) ( "category_news" => array(2) ( "foreign_key" => string(16) "category_news_id" "model" => string(12) "CategoryNews" ) ) protected _grid_columns => array(8) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(24) "admin-news:edit?id=${id}" "external_url" => string(26) "site-news:index?url=${url}" ) "s_title" => string(5) "empty" "s_description" => string(5) "empty" "s_keywords" => string(5) "empty" "active" => string(4) "bool" "updated_at" => NULL "edit" => array(6) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(24) "admin-news:edit?id=${id}" "title" => string(28) "<i class="fa fa-pencil"></i>" "color" => string(5) "green" "alternative" => string(26) "Редактировать" ) "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(26) "admin-news:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(3) ( "order_by" => string(10) "updated_at" "order_direction" => string(3) "ASC" "per_page" => integer 500 ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(2) "41" "name" => string(149) "Как правильно загружать посудомоечную машину: жизненные советы от экспертов 1тех" "s_title" => string(169) "Как правильно загружать посудомоечную машину - советы по эксплуатации посудомоечной машины" "s_description" => string(0) "" "s_keywords" => string(0) "" "url" => string(82) "kak-pravilno-zagrujat-posudomoechnuyu-mashinu-jiznennyie-sovetyi-ot-ekspertov-1teh" "active" => string(1) "1" "updated_at" => string(19) "2024-08-27 14:47:40" "static" => string(1) "0" "content" => string(4887) "<p>Хотите, чтобы свежевымытая посуда из посудомоечной машины всегда радовала вас идеальной чистотой и свежестью? Загружайте её г …" "short_text" => string(354) "<p>Хотите, чтобы свежевымытая посуда из посудомоечной машины всегда радовала вас идеальной чистотой и свежестью? Загружайте её г …" "image" => string(51) "/files/news/41/ab40daa67221839270151b3e114f2c77.jpg" "more_images" => NULL "category_id" => NULL "category_news_id" => string(1) "4" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(2) "41" "name" => string(149) "Как правильно загружать посудомоечную машину: жизненные советы от экспертов 1тех" "s_title" => string(169) "Как правильно загружать посудомоечную машину - советы по эксплуатации посудомоечной машины" "s_description" => string(0) "" "s_keywords" => string(0) "" "url" => string(82) "kak-pravilno-zagrujat-posudomoechnuyu-mashinu-jiznennyie-sovetyi-ot-ekspertov-1teh" "active" => string(1) "1" "updated_at" => string(19) "2024-08-27 14:47:40" "static" => string(1) "0" "content" => string(4887) "<p>Хотите, чтобы свежевымытая посуда из посудомоечной машины всегда радовала вас идеальной чистотой и свежестью? Загружайте её г …" "short_text" => string(354) "<p>Хотите, чтобы свежевымытая посуда из посудомоечной машины всегда радовала вас идеальной чистотой и свежестью? Загружайте её г …" "image" => string(51) "/files/news/41/ab40daa67221839270151b3e114f2c77.jpg" "more_images" => NULL "category_id" => NULL "category_news_id" => string(1) "4" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "news" protected _object_plural => string(4) "news" protected _table_columns => array(15) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "comment" => string(0) "" "extra" => string(27) "on update CURRENT_TIMESTAMP" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "static" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "static" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(7) "content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "short_text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(10) "short_text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "more_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "more_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_news_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(16) "category_news_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(2) "41" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
4 => object Model_News(40){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "news" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(4) "news" protected _belongs_to => array(1) ( "category_news" => array(2) ( "foreign_key" => string(16) "category_news_id" "model" => string(12) "CategoryNews" ) ) protected _grid_columns => array(8) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(24) "admin-news:edit?id=${id}" "external_url" => string(26) "site-news:index?url=${url}" ) "s_title" => string(5) "empty" "s_description" => string(5) "empty" "s_keywords" => string(5) "empty" "active" => string(4) "bool" "updated_at" => NULL "edit" => array(6) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(24) "admin-news:edit?id=${id}" "title" => string(28) "<i class="fa fa-pencil"></i>" "color" => string(5) "green" "alternative" => string(26) "Редактировать" ) "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(26) "admin-news:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(3) ( "order_by" => string(10) "updated_at" "order_direction" => string(3) "ASC" "per_page" => integer 500 ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(2) "50" "name" => string(118) "Встраиваемые холодильники: Полное руководство по выбору и уходу" "s_title" => string(133) "Как выбрать встраиваемый холодильник: что нужно знать до и после покупки" "s_description" => string(0) "" "s_keywords" => string(0) "" "url" => string(25) "vstraivaemyie-holodilniki" "active" => string(1) "1" "updated_at" => string(19) "2024-05-02 10:50:34" "static" => string(1) "0" "content" => string(30242) "<p>В современном мире дизайна интерьера кухни все больше уделяется внимание не только функциональности, но и гармонии элементов. …" "short_text" => string(589) "<p>Как правильно выбрать встраиваемый холодильник Вы не хотите, чтобы холодильник ярким пятном выделялся среди оформленного кухо …" "image" => string(51) "/files/news/50/90dbcc8af1acbf146b49b735173c5479.jpg" "more_images" => NULL "category_id" => string(3) "123" "category_news_id" => string(1) "4" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(2) "50" "name" => string(118) "Встраиваемые холодильники: Полное руководство по выбору и уходу" "s_title" => string(133) "Как выбрать встраиваемый холодильник: что нужно знать до и после покупки" "s_description" => string(0) "" "s_keywords" => string(0) "" "url" => string(25) "vstraivaemyie-holodilniki" "active" => string(1) "1" "updated_at" => string(19) "2024-05-02 10:50:34" "static" => string(1) "0" "content" => string(30242) "<p>В современном мире дизайна интерьера кухни все больше уделяется внимание не только функциональности, но и гармонии элементов. …" "short_text" => string(589) "<p>Как правильно выбрать встраиваемый холодильник Вы не хотите, чтобы холодильник ярким пятном выделялся среди оформленного кухо …" "image" => string(51) "/files/news/50/90dbcc8af1acbf146b49b735173c5479.jpg" "more_images" => NULL "category_id" => string(3) "123" "category_news_id" => string(1) "4" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "news" protected _object_plural => string(4) "news" protected _table_columns => array(15) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "comment" => string(0) "" "extra" => string(27) "on update CURRENT_TIMESTAMP" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "static" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "static" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(7) "content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "short_text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(10) "short_text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "more_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "more_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_news_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(16) "category_news_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(2) "50" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
5 => object Model_News(40){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "news" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(4) "news" protected _belongs_to => array(1) ( "category_news" => array(2) ( "foreign_key" => string(16) "category_news_id" "model" => string(12) "CategoryNews" ) ) protected _grid_columns => array(8) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(24) "admin-news:edit?id=${id}" "external_url" => string(26) "site-news:index?url=${url}" ) "s_title" => string(5) "empty" "s_description" => string(5) "empty" "s_keywords" => string(5) "empty" "active" => string(4) "bool" "updated_at" => NULL "edit" => array(6) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(24) "admin-news:edit?id=${id}" "title" => string(28) "<i class="fa fa-pencil"></i>" "color" => string(5) "green" "alternative" => string(26) "Редактировать" ) "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(26) "admin-news:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(3) ( "order_by" => string(10) "updated_at" "order_direction" => string(3) "ASC" "per_page" => integer 500 ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(2) "13" "name" => string(78) "Полезные советы по выбору водонагревателя" "s_title" => string(106) "Как выбрать водонагреватель когда отключили горячую воду" "s_description" => string(0) "" "s_keywords" => string(0) "" "url" => string(15) "vodonagrevateli" "active" => string(1) "1" "updated_at" => string(19) "2024-05-02 10:49:56" "static" => string(1) "0" "content" => string(8631) "<p>Вы не готовы мучительно греть воду в кастрюльках или довольствоваться бодрящим ледяным душем в течение долгих недель без горя …" "short_text" => string(564) "<p>Вы не готовы мучительно греть воду в кастрюльках или довольствоваться бодрящим ледяным душем в течение долгих недель без горя …" "image" => string(51) "/files/news/13/b1b79cc695add18456253584f5fe4de8.jpg" "more_images" => NULL "category_id" => string(3) "150" "category_news_id" => string(1) "4" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(2) "13" "name" => string(78) "Полезные советы по выбору водонагревателя" "s_title" => string(106) "Как выбрать водонагреватель когда отключили горячую воду" "s_description" => string(0) "" "s_keywords" => string(0) "" "url" => string(15) "vodonagrevateli" "active" => string(1) "1" "updated_at" => string(19) "2024-05-02 10:49:56" "static" => string(1) "0" "content" => string(8631) "<p>Вы не готовы мучительно греть воду в кастрюльках или довольствоваться бодрящим ледяным душем в течение долгих недель без горя …" "short_text" => string(564) "<p>Вы не готовы мучительно греть воду в кастрюльках или довольствоваться бодрящим ледяным душем в течение долгих недель без горя …" "image" => string(51) "/files/news/13/b1b79cc695add18456253584f5fe4de8.jpg" "more_images" => NULL "category_id" => string(3) "150" "category_news_id" => string(1) "4" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "news" protected _object_plural => string(4) "news" protected _table_columns => array(15) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "comment" => string(0) "" "extra" => string(27) "on update CURRENT_TIMESTAMP" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "static" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "static" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(7) "content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "short_text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(10) "short_text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "more_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "more_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_news_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(16) "category_news_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(2) "13" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
6 => object Model_News(40){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "news" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(4) "news" protected _belongs_to => array(1) ( "category_news" => array(2) ( "foreign_key" => string(16) "category_news_id" "model" => string(12) "CategoryNews" ) ) protected _grid_columns => array(8) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(24) "admin-news:edit?id=${id}" "external_url" => string(26) "site-news:index?url=${url}" ) "s_title" => string(5) "empty" "s_description" => string(5) "empty" "s_keywords" => string(5) "empty" "active" => string(4) "bool" "updated_at" => NULL "edit" => array(6) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(24) "admin-news:edit?id=${id}" "title" => string(28) "<i class="fa fa-pencil"></i>" "color" => string(5) "green" "alternative" => string(26) "Редактировать" ) "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(26) "admin-news:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(3) ( "order_by" => string(10) "updated_at" "order_direction" => string(3) "ASC" "per_page" => integer 500 ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(3) "126" "name" => string(123) "Советы и руководство по выбору идеальной электрической вафельницы" "s_title" => string(123) "Советы и руководство по выбору идеальной электрической вафельницы" "s_description" => string(0) "" "s_keywords" => string(0) "" "url" => string(68) "sovetyi-i-rukovodstvo-po-vyiboru-idealnoy-elektricheskoy-vafelnitsyi" "active" => string(1) "1" "updated_at" => string(19) "2024-04-07 13:00:55" "static" => string(1) "0" "content" => string(17903) "<p>Вафельница представляет собой устройство, снабженное двумя нагреваемыми поверхностями с узорами. Жарочные формы обычно изгота …" "short_text" => string(406) "<p>Вафельница представляет собой устройство, снабженное двумя нагреваемыми поверхностями с узорами. Жарочные формы обычно изгота …" "image" => string(53) "/files/news/126/4b97d0199b5b95dc2db97ec7a4d0e284.jpeg" "more_images" => NULL "category_id" => NULL "category_news_id" => string(1) "4" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(3) "126" "name" => string(123) "Советы и руководство по выбору идеальной электрической вафельницы" "s_title" => string(123) "Советы и руководство по выбору идеальной электрической вафельницы" "s_description" => string(0) "" "s_keywords" => string(0) "" "url" => string(68) "sovetyi-i-rukovodstvo-po-vyiboru-idealnoy-elektricheskoy-vafelnitsyi" "active" => string(1) "1" "updated_at" => string(19) "2024-04-07 13:00:55" "static" => string(1) "0" "content" => string(17903) "<p>Вафельница представляет собой устройство, снабженное двумя нагреваемыми поверхностями с узорами. Жарочные формы обычно изгота …" "short_text" => string(406) "<p>Вафельница представляет собой устройство, снабженное двумя нагреваемыми поверхностями с узорами. Жарочные формы обычно изгота …" "image" => string(53) "/files/news/126/4b97d0199b5b95dc2db97ec7a4d0e284.jpeg" "more_images" => NULL "category_id" => NULL "category_news_id" => string(1) "4" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "news" protected _object_plural => string(4) "news" protected _table_columns => array(15) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "comment" => string(0) "" "extra" => string(27) "on update CURRENT_TIMESTAMP" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "static" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "static" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(7) "content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "short_text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(10) "short_text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "more_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "more_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_news_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(16) "category_news_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "126" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
7 => object Model_News(40){ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "news" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(4) "news" protected _belongs_to => array(1) ( "category_news" => array(2) ( "foreign_key" => string(16) "category_news_id" "model" => string(12) "CategoryNews" ) ) protected _grid_columns => array(8) ( "name" => array(3) ( "type" => string(4) "name" "route_str" => string(24) "admin-news:edit?id=${id}" "external_url" => string(26) "site-news:index?url=${url}" ) "s_title" => string(5) "empty" "s_description" => string(5) "empty" "s_keywords" => string(5) "empty" "active" => string(4) "bool" "updated_at" => NULL "edit" => array(6) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(24) "admin-news:edit?id=${id}" "title" => string(28) "<i class="fa fa-pencil"></i>" "color" => string(5) "green" "alternative" => string(26) "Редактировать" ) "delete" => array(7) ( "width" => string(2) "50" "type" => string(4) "link" "route_str" => string(26) "admin-news:delete?id=${id}" "title" => string(29) "<i class="fa fa-trash-o"></i>" "color" => string(3) "red" "alternative" => string(14) "Удалить" "confirm" => string(20) "Вы уверены?" ) ) protected _grid_options => array(3) ( "order_by" => string(10) "updated_at" "order_direction" => string(3) "ASC" "per_page" => integer 500 ) protected _form_fields => array(0) private _has_many_to_save => array(0) protected _render_options => array(0) protected _pdo => NULL protected _has_one => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(3) "125" "name" => string(122) "Блендеры как часть нашей жизни. Отличительные черты и особенности " "s_title" => string(123) "Блендеры и их предназначение. Как выбрать блендер? - Советы и нюансы" "s_description" => string(278) "Блендеры и их предназначение. В этой статье мы разберем, для чего же нужен блендер и на что он способен. Какие виды блендеров бы …" "s_keywords" => string(0) "" "url" => string(69) "blenderyi-kak-chast-nashey-jizni-otlichitelnyie-chertyi-i-osobennosti" "active" => string(1) "1" "updated_at" => string(19) "2024-04-06 23:30:34" "static" => string(1) "0" "content" => string(13109) "<p>Многие хозяйки считают, что наличие блендера в кухне - это излишество, но это мнение обусловлено недостатком опыта и знаний о …" "short_text" => string(737) "<p>Многие хозяйки считают, что наличие блендера в кухне - это излишество, но это мнение обусловлено недостатком опыта и знаний о …" "image" => string(52) "/files/news/125/524ff754a613b6d14a5411bb4982d9fb.jpg" "more_images" => NULL "category_id" => NULL "category_news_id" => string(1) "4" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(3) "125" "name" => string(122) "Блендеры как часть нашей жизни. Отличительные черты и особенности " "s_title" => string(123) "Блендеры и их предназначение. Как выбрать блендер? - Советы и нюансы" "s_description" => string(278) "Блендеры и их предназначение. В этой статье мы разберем, для чего же нужен блендер и на что он способен. Какие виды блендеров бы …" "s_keywords" => string(0) "" "url" => string(69) "blenderyi-kak-chast-nashey-jizni-otlichitelnyie-chertyi-i-osobennosti" "active" => string(1) "1" "updated_at" => string(19) "2024-04-06 23:30:34" "static" => string(1) "0" "content" => string(13109) "<p>Многие хозяйки считают, что наличие блендера в кухне - это излишество, но это мнение обусловлено недостатком опыта и знаний о …" "short_text" => string(737) "<p>Многие хозяйки считают, что наличие блендера в кухне - это излишество, но это мнение обусловлено недостатком опыта и знаний о …" "image" => string(52) "/files/news/125/524ff754a613b6d14a5411bb4982d9fb.jpg" "more_images" => NULL "category_id" => NULL "category_news_id" => string(1) "4" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "news" protected _object_plural => string(4) "news" protected _table_columns => array(15) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_title" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "s_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_description" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "s_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "350" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "s_keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "s_keywords" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => string(17) "CURRENT_TIMESTAMP" "data_type" => string(9) "timestamp" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "comment" => string(0) "" "extra" => string(27) "on update CURRENT_TIMESTAMP" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "static" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "static" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(7) "content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "short_text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(10) "short_text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "more_images" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "more_images" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_news_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(16) "category_news_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "125" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) "ender_likes" => NULL "ender" => string(0) "" "result_quantity" => integer 0 "cartitems" => NULL "likeitems" => NULL "summlikes" => integer 0 "sravnenieCount" => integer 0 "lookedCount" => integer 13 "result_price" => string(1) "0" ) }{ protected _connection_id => string(40) "5369f2cfccf42481e0ba552107c6c9bd3e773fe4" protected _identifier => string(1) "`" public last_query => string(1320) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`rod_name` AS `rod_name`, `category`.`ed_chislo` AS `ed_ …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "news" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(4) "1teh" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(6)
public response => object Response(5){ private _name => string(12) "site-product" protected _filters => array(0) protected _uri => string(30) "<category>/<product>_<article>" protected _regex => array(1) ( "product" => string(5) "[^_]*" ) protected _defaults => array(3) ( "directory" => string(4) "site" "controller" => string(7) "product" "action" => string(5) "index" ) protected _route_regex => string(77) "#^(?P<category>[^/.,;?\n]++)/(?P<product>[^_]*)_(?P<article>[^/.,;?\n]++)$#uD" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(4) "Site" protected _controller => string(7) "Product" protected _action => string(5) "index" protected _uri => string(71) "sistemyi-avtomaticheskogo-poliva-raspyiliteli/flexi-spray-2683_hozelock" protected _external => bool FALSE protected _params => array(3) ( "category" => string(45) "sistemyi-avtomaticheskogo-poliva-raspyiliteli" "product" => string(16) "flexi-spray-2683" "article" => string(8) "hozelock" ) protected _get => array(0) protected _post => array(0) protected _cookies => array(2) ( "PHPSESSID" => NULL "products" => NULL ) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }
}{ protected _status => integer 200 protected _header => object HTTP_Header(0)
public _device => object Device(1){ }
protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }{ protected _detector => object Mobile_Detect(3)
}{ protected userAgent => string(103) "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" protected httpHeaders => array(8) ( "HTTP_ACCEPT_ENCODING" => string(23) "gzip, br, zstd, deflate" "HTTP_COOKIE" => string(866) "PHPSESSID=o3ghojevjj64rj9aml2skc5gn7; products[1574808]=1d5d4b49c6ea92d89a78703c81e158371ad9cd75%7E1; products[540145]=bbb6b9a3e …" "HTTP_USER_AGENT" => string(103) "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "HTTP_ACCEPT" => string(3) "*/*" "HTTP_CONNECTION" => string(5) "close" "HTTP_X_FORWARDED_PORT" => string(3) "443" "HTTP_X_FORWARDED_PROTO" => string(5) "https" "HTTP_HOST" => string(7) "1teh.by" ) protected detectionType => string(6) "mobile" }
}92 93 // Create a new instance of the controller 94 $controller = $class->newInstance($request, $response); 95 96 // Run the controller's execute() method 97 $response = $class->getMethod('execute')->invoke($controller); 98 99 if ( ! $response instanceof Response) 100 { 101 // Controller failed to return a Response. 102 throw new Kohana_Exception('Controller failed to return a Response');
-
SYSPATH/classes/Kohana/Request/Client.php [ 114 ] » Kohana_Request_Client_Internal->execute_request(arguments)
0
object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(6)
{ private _name => string(12) "site-product" protected _filters => array(0) protected _uri => string(30) "<category>/<product>_<article>" protected _regex => array(1) ( "product" => string(5) "[^_]*" ) protected _defaults => array(3) ( "directory" => string(4) "site" "controller" => string(7) "product" "action" => string(5) "index" ) protected _route_regex => string(77) "#^(?P<category>[^/.,;?\n]++)/(?P<product>[^_]*)_(?P<article>[^/.,;?\n]++)$#uD" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(4) "Site" protected _controller => string(7) "Product" protected _action => string(5) "index" protected _uri => string(71) "sistemyi-avtomaticheskogo-poliva-raspyiliteli/flexi-spray-2683_hozelock" protected _external => bool FALSE protected _params => array(3) ( "category" => string(45) "sistemyi-avtomaticheskogo-poliva-raspyiliteli" "product" => string(16) "flexi-spray-2683" "article" => string(8) "hozelock" ) protected _get => array(0) protected _post => array(0) protected _cookies => array(2) ( "PHPSESSID" => NULL "products" => NULL ) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }
}1
object Response(5)
{ protected _status => integer 200 protected _header => object HTTP_Header(0)
{ }
protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }109 $orig_response = $response = Response::factory(array('_protocol' => $request->protocol())); 110 111 if (($cache = $this->cache()) instanceof HTTP_Cache) 112 return $cache->execute($this, $request, $response); 113 114 $response = $this->execute_request($request, $response); 115 116 // Execute response callbacks 117 foreach ($this->header_callbacks() as $header => $callback) 118 { 119 if ($response->headers($header))
-
SYSPATH/classes/Kohana/Request.php [ 986 ] » Kohana_Request_Client->execute(arguments)
0
object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(6)
{ private _name => string(12) "site-product" protected _filters => array(0) protected _uri => string(30) "<category>/<product>_<article>" protected _regex => array(1) ( "product" => string(5) "[^_]*" ) protected _defaults => array(3) ( "directory" => string(4) "site" "controller" => string(7) "product" "action" => string(5) "index" ) protected _route_regex => string(77) "#^(?P<category>[^/.,;?\n]++)/(?P<product>[^_]*)_(?P<article>[^/.,;?\n]++)$#uD" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(4) "Site" protected _controller => string(7) "Product" protected _action => string(5) "index" protected _uri => string(71) "sistemyi-avtomaticheskogo-poliva-raspyiliteli/flexi-spray-2683_hozelock" protected _external => bool FALSE protected _params => array(3) ( "category" => string(45) "sistemyi-avtomaticheskogo-poliva-raspyiliteli" "product" => string(16) "flexi-spray-2683" "article" => string(8) "hozelock" ) protected _get => array(0) protected _post => array(0) protected _cookies => array(2) ( "PHPSESSID" => NULL "products" => NULL ) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }
}981 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array( 982 ':uri' => $this->_uri, 983 )); 984 } 985 986 return $this->_client->execute($this); 987 } 988 989 /** 990 * Returns whether this request is the initial request Kohana received. 991 * Can be used to test for sub requests.
-
DOCROOT/index.php [ 149 ] » Kohana_Request->execute()
144 /** 145 * Execute the main request. A source of the URI can be passed, eg: $_SERVER['PATH_INFO']. 146 * If no source is specified, the URI will be automatically detected. 147 */ 148 echo Request::factory(TRUE, array(), FALSE) 149 ->execute() 150 ->send_headers(TRUE) 151 ->body(); 152 }