APPPATH/classes/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))
-
APPPATH/classes/Database/MySQLi.php [ 338 ] » Database_MySQLi->query(arguments)
0
integer 1
1
string(36) "SHOW FULL COLUMNS FROM `items_files`"
2
bool FALSE
333 $result = $this->query(Database::SELECT, 'SHOW FULL COLUMNS FROM '.$table.' LIKE '.$this->quote($like), FALSE); 334 } 335 else 336 { 337 // Find all column names 338 $result = $this->query(Database::SELECT, 'SHOW FULL COLUMNS FROM '.$table, FALSE); 339 } 340 341 $count = 0; 342 $columns = array(); 343 foreach ($result as $row)
-
APPPATH/classes/Kohana/ORM.php [ 1668 ] » Database_MySQLi->list_columns(arguments)
0
string(13) "`items_files`"
1663 * @return array 1664 */ 1665 public function list_columns() 1666 { 1667 // Proxy to database 1668 return $this->_db->list_columns($this->_table_name); 1669 } 1670 1671 /** 1672 * Returns an ORM model for the given one-one related alias 1673 *
-
APPPATH/classes/Kohana/ORM.php [ 444 ] » Kohana_ORM->list_columns()
439 $this->_table_columns = ORM::$_column_cache[$this->_object_name]; 440 } 441 else 442 { 443 // Grab column information from database 444 $this->_table_columns = $this->list_columns(); 445 446 // Load column cache 447 ORM::$_column_cache[$this->_object_name] = $this->_table_columns; 448 } 449 }
-
APPPATH/classes/Kohana/ORM.php [ 389 ] » Kohana_ORM->reload_columns()
384 { 385 $this->{$property} = $value; 386 } 387 388 // Load column information 389 $this->reload_columns(); 390 391 // Clear initial model state 392 $this->clear(); 393 } 394
-
APPPATH/classes/Kohana/ORM.php [ 254 ] » Kohana_ORM->_initialize()
249 * 250 * @param mixed $id Parameter for find or object to load 251 */ 252 public function __construct($id = NULL) 253 { 254 $this->_initialize(); 255 256 if ($id !== NULL) 257 { 258 if (is_array($id)) 259 {
-
APPPATH/classes/Kohana/ORM.php [ 46 ] » Kohana_ORM->__construct(arguments)
0
NULL
41 public static function factory($model, $id = NULL) 42 { 43 // Set class name 44 $model = 'Model_'.ucfirst($model); 45 46 return new $model($id); 47 } 48 49 /** 50 * "Has one" relationships 51 * @var array
-
APPPATH/classes/Kohana/ORM.php [ 659 ] » Kohana_ORM::factory(arguments)
0
string(16) "Model_Itemsfiles"
654 655 return $this->_related[$column] = $model; 656 } 657 elseif (isset($this->_has_many[$column])) 658 { 659 $model = ORM::factory($this->_has_many[$column]['model']); 660 661 if (isset($this->_has_many[$column]['through'])) 662 { 663 // Grab has_many "through" relationship table 664 $through = $this->_has_many[$column]['through'];
-
APPPATH/classes/Kohana/ORM.php [ 603 ] » Kohana_ORM->get(arguments)
0
string(10) "Itemsfiles"
598 * @param string $column Column name 599 * @return mixed 600 */ 601 public function __get($column) 602 { 603 return $this->get($column); 604 } 605 606 /** 607 * Handles getting of column 608 * Override this method to add custom get behavior
-
APPPATH/views/site/product/v_product_index.php [ 82 ] » Kohana_ORM->__get(arguments)
0
string(10) "Itemsfiles"
77 </div> 78 79 </div> 80 81 <? 82 $files = $item->Itemsfiles->find_all(); 83 ?> 84 <h4>Документы:</h4> 85 <?if(!empty($files)):?> 86 <div class="text-item-now-fix-buddy" style="display: grid;grid-template-columns:repeat(10, 1fr);grid-gap:10px;"> 87 <?foreach ($files as $f):?>
-
SYSPATH/classes/Kohana/View.php [ 61 ] » include(arguments)
0
string(82) "/var/www/domains/variant-999.ru/application/views/site/product/v_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(82) "/var/www/domains/variant-999.ru/application/views/site/product/v_product_index.php"
1
array(5) ( "page_title" => string(78) "Верстак слесарный на одно рабочее место 6125" "item" => object Model_Items(34)
{ protected _table_name => string(5) "items" protected _primary_key => string(8) "items_id" protected _db_group => string(7) "default" protected _belongs_to => array(3) ( "Itemsbrands" => array(2) ( "foreign_key" => string(15) "items_brands_id" "model" => string(6) "Brands" ) "Itemscolors" => array(2) ( "foreign_key" => string(15) "items_colors_id" "model" => string(6) "Colors" ) "Itemsmaterials" => array(2) ( "foreign_key" => string(18) "items_materials_id" "model" => string(9) "Materials" ) ) protected _has_many => array(4) ( "Menus" => array(4) ( "foreign_key" => string(19) "items_menu_items_id" "through" => string(10) "items_menu" "model" => string(4) "Menu" "far_key" => string(18) "items_menu_menu_id" ) "Items_photo" => array(4) ( "foreign_key" => string(14) "items_photo_id" "through" => NULL "far_key" => string(14) "items_photo_id" "model" => string(10) "Itemsphoto" ) "Itemsfiles" => array(4) ( "foreign_key" => string(20) "items_files_items_id" "through" => NULL "far_key" => string(12) "itemsfile_id" "model" => string(10) "Itemsfiles" ) "Filter_value" => array(4) ( "foreign_key" => string(7) "item_id" "through" => string(20) "items_filters_values" "far_key" => string(8) "value_id" "model" => string(13) "Filtersvalues" ) ) protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(28) ( "items_id" => string(4) "1161" "items_name" => string(78) "Верстак слесарный на одно рабочее место 6125" "items_title" => string(207) "Верстак слесарный на одно рабочее место 6125 купить в России цена 34961 рублей | Завод по производству мебели Вариант-999" "items_h1" => string(140) "Верстак слесарный на одно рабочее место 6125, изготовление и доставка в в России" "items_desc" => string(317) "Купить Верстак слесарный на одно рабочее место 6125 оптом и в розницу по цене - 34961 в России . ☛ Большой выбор ☛ Доставка в …" "items_art" => string(18) "770х700х825(870)" "items_reserv" => string(0) "" "items_stage" => string(1) "0" "items_alias" => string(45) "verstak-slesarniy-na-odno-rabochee-mesto-6125" "items_comment" => string(9254) "<p>Артикул: <strong>ВВ-6125</strong></p> <div class="product-info"> <table border="1" cellpadding="0" cellspacing="0" data …" "items_photo" => string(4) "webp" "items_filters_values" => string(0) "" "items_brands_id" => string(1) "0" "items_sort" => string(4) "1064" "items_menu_id" => string(1) "0" "items_menu_id_2" => string(1) "0" "items_menu_id_3" => string(1) "0" "items_price" => string(5) "34961" "items_price_old" => string(0) "" "items_land" => string(0) "" "items_preview" => string(0) "" "items_materials_id" => string(1) "0" "items_terasa_id" => string(1) "0" "items_colors_id" => string(1) "0" "items_hits" => string(1) "0" "items_top" => string(1) "0" "items_sales" => string(1) "0" "items_like" => string(12) "91:1159:1162" ) protected _changed => array(0) protected _original_values => array(28) ( "items_id" => string(4) "1161" "items_name" => string(78) "Верстак слесарный на одно рабочее место 6125" "items_title" => string(207) "Верстак слесарный на одно рабочее место 6125 купить в России цена 34961 рублей | Завод по производству мебели Вариант-999" "items_h1" => string(140) "Верстак слесарный на одно рабочее место 6125, изготовление и доставка в в России" "items_desc" => string(317) "Купить Верстак слесарный на одно рабочее место 6125 оптом и в розницу по цене - 34961 в России . ☛ Большой выбор ☛ Доставка в …" "items_art" => string(18) "770х700х825(870)" "items_reserv" => string(0) "" "items_stage" => string(1) "0" "items_alias" => string(45) "verstak-slesarniy-na-odno-rabochee-mesto-6125" "items_comment" => string(9254) "<p>Артикул: <strong>ВВ-6125</strong></p> <div class="product-info"> <table border="1" cellpadding="0" cellspacing="0" data …" "items_photo" => string(4) "webp" "items_filters_values" => string(0) "" "items_brands_id" => string(1) "0" "items_sort" => string(4) "1064" "items_menu_id" => string(1) "0" "items_menu_id_2" => string(1) "0" "items_menu_id_3" => string(1) "0" "items_price" => string(5) "34961" "items_price_old" => string(0) "" "items_land" => string(0) "" "items_preview" => string(0) "" "items_materials_id" => string(1) "0" "items_terasa_id" => string(1) "0" "items_colors_id" => string(1) "0" "items_hits" => string(1) "0" "items_top" => string(1) "0" "items_sales" => string(1) "0" "items_like" => string(12) "91:1159:1162" ) 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) "items" protected _object_plural => string(7) "itemses" protected _table_columns => array(28) ( "items_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "items_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(20) "select,insert,update" ) "items_name" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "items_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(20) "select,insert,update" ) "items_title" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "items_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(20) "select,insert,update" ) "items_h1" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "items_h1" "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(20) "select,insert,update" ) "items_desc" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "items_desc" "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(20) "select,insert,update" ) "items_art" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "items_art" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "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(20) "select,insert,update" ) "items_reserv" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "items_reserv" "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(20) "select,insert,update" ) "items_stage" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "items_stage" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_alias" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "items_alias" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "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(20) "select,insert,update" ) "items_comment" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "items_comment" "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(20) "select,insert,update" ) "items_photo" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "items_photo" "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(20) "select,insert,update" ) "items_filters_values" => array(12) ( "type" => string(6) "string" "column_name" => string(20) "items_filters_values" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "character_maximum_length" => string(3) "512" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_brands_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "items_brands_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 13 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_sort" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "items_sort" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_menu_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(13) "items_menu_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 15 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_menu_id_2" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "items_menu_id_2" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 16 "display" => string(3) "255" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_menu_id_3" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "items_menu_id_3" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "display" => string(3) "255" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_price" => array(10) ( "type" => string(5) "float" "column_name" => string(11) "items_price" "column_default" => NULL "data_type" => string(5) "float" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_price_old" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "items_price_old" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_land" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "items_land" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "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(20) "select,insert,update" ) "items_preview" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "items_preview" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 21 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_materials_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(18) "items_materials_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_terasa_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "items_terasa_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 23 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_colors_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "items_colors_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_hits" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "items_hits" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 25 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_top" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "items_top" "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(20) "select,insert,update" ) "items_sales" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "items_sales" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 27 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_like" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "items_like" "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(20) "select,insert,update" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key_value => string(4) "1161" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
"itemslike" => object Database_MySQLi_Result(7){ protected _connection_id => string(40) "c1cebdc2e88576a637fae63db13572c9923061f3" protected _identifier => string(1) "`" public last_query => string(143) "SELECT * FROM `menu` LEFT JOIN `items_menu` ON items_menu.items_menu_menu_id = menu.menu_id WHERE items_menu.items_menu_items_id …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
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) "items" }{ 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(7) "vartest" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool TRUE ) }{ protected _internal_row => integer 0 protected _query => string(1254) "SELECT `items`.`items_id` AS `items_id`, `items`.`items_name` AS `items_name`, `items`.`items_title` AS `items_title`, `items`.` …" protected _result => object mysqli_result(5)
"compare_arr" => NULL "menu" => object Model_Menu(34){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 3 protected _current_row => integer 0 protected _as_object => string(11) "Model_Items" protected _object_params => NULL }{ protected _table_name => string(4) "menu" protected _primary_key => string(7) "menu_id" protected _db_group => string(7) "default" protected _belongs_to => array(1) ( "Menucat" => array(2) ( "foreign_key" => string(11) "menu_cat_id" "model" => string(7) "Menucat" ) ) protected _has_many => array(2) ( "Filtersmenu" => array(4) ( "foreign_key" => string(15) "filters_menu_id" "through" => NULL "far_key" => string(14) "filtersmenu_id" "model" => string(7) "Filters" ) "Items" => array(4) ( "foreign_key" => string(18) "items_menu_menu_id" "through" => string(10) "items_menu" "far_key" => string(19) "items_menu_items_id" "model" => string(5) "Items" ) ) protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(19) ( "menu_id" => NULL "menu_ymid" => NULL "menu_name" => NULL "menu_h1" => NULL "menu_title" => NULL "menu_desc" => NULL "menu_comment" => NULL "menu_alias" => NULL "menu_ref" => NULL "menu_menu_id" => NULL "menu_cat_id" => NULL "menu_type" => NULL "menu_new" => NULL "menu_sort" => NULL "menu_level" => NULL "menu_no" => NULL "menu_photo" => NULL "menu_id1s" => NULL "menu_descr" => 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) "menu" protected _object_plural => string(5) "menus" protected _table_columns => array(19) ( "menu_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "menu_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(20) "select,insert,update" ) "menu_ymid" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "menu_ymid" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_name" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "menu_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "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(20) "select,insert,update" ) "menu_h1" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "menu_h1" "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(20) "select,insert,update" ) "menu_title" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "menu_title" "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(20) "select,insert,update" ) "menu_desc" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "menu_desc" "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(20) "select,insert,update" ) "menu_comment" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(10) "4294967295" "column_name" => string(12) "menu_comment" "column_default" => NULL "data_type" => string(8) "longtext" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_alias" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "menu_alias" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "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(20) "select,insert,update" ) "menu_ref" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "menu_ref" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "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(20) "select,insert,update" ) "menu_menu_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "menu_menu_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_cat_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "menu_cat_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_type" => array(13) ( "type" => string(3) "int" "min" => string(6) "-32768" "max" => string(5) "32767" "column_name" => string(9) "menu_type" "column_default" => NULL "data_type" => string(8) "smallint" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_new" => array(13) ( "type" => string(3) "int" "min" => string(6) "-32768" "max" => string(5) "32767" "column_name" => string(8) "menu_new" "column_default" => NULL "data_type" => string(8) "smallint" "is_nullable" => bool FALSE "ordinal_position" => integer 13 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_sort" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "menu_sort" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_level" => array(13) ( "type" => string(3) "int" "min" => string(6) "-32768" "max" => string(5) "32767" "column_name" => string(10) "menu_level" "column_default" => NULL "data_type" => string(8) "smallint" "is_nullable" => bool FALSE "ordinal_position" => integer 15 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_no" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "menu_no" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 16 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_photo" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "menu_photo" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_id1s" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "menu_id1s" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_descr" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(10) "4294967295" "column_name" => string(10) "menu_descr" "column_default" => NULL "data_type" => string(8) "longtext" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key_value => NULL protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
){ protected _connection_id => string(40) "c1cebdc2e88576a637fae63db13572c9923061f3" protected _identifier => string(1) "`" public last_query => string(143) "SELECT * FROM `menu` LEFT JOIN `items_menu` ON items_menu.items_menu_menu_id = menu.menu_id WHERE items_menu.items_menu_items_id …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
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) "menu" }{ 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(7) "vartest" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool TRUE ) }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 }
-
SYSPATH/classes/Kohana/View.php [ 228 ] » Kohana_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.
-
{PHP internal call} » Kohana_View->__toString()
-
/var/www/domains/api2.rek72.ru/multi/app_funcs.php [ 3 ] » preg_replace(arguments)
regex
string(12) "#\{slug\}#is"
replace
string(0) ""
subject
object View(2)
{ protected _file => string(82) "/var/www/domains/variant-999.ru/application/views/site/product/v_product_index.php" protected _data => array(5) ( "page_title" => string(78) "Верстак слесарный на одно рабочее место 6125" "item" => object Model_Items(34)
{ protected _table_name => string(5) "items" protected _primary_key => string(8) "items_id" protected _db_group => string(7) "default" protected _belongs_to => array(3) ( "Itemsbrands" => array(2) ( "foreign_key" => string(15) "items_brands_id" "model" => string(6) "Brands" ) "Itemscolors" => array(2) ( "foreign_key" => string(15) "items_colors_id" "model" => string(6) "Colors" ) "Itemsmaterials" => array(2) ( "foreign_key" => string(18) "items_materials_id" "model" => string(9) "Materials" ) ) protected _has_many => array(4) ( "Menus" => array(4) ( "foreign_key" => string(19) "items_menu_items_id" "through" => string(10) "items_menu" "model" => string(4) "Menu" "far_key" => string(18) "items_menu_menu_id" ) "Items_photo" => array(4) ( "foreign_key" => string(14) "items_photo_id" "through" => NULL "far_key" => string(14) "items_photo_id" "model" => string(10) "Itemsphoto" ) "Itemsfiles" => array(4) ( "foreign_key" => string(20) "items_files_items_id" "through" => NULL "far_key" => string(12) "itemsfile_id" "model" => string(10) "Itemsfiles" ) "Filter_value" => array(4) ( "foreign_key" => string(7) "item_id" "through" => string(20) "items_filters_values" "far_key" => string(8) "value_id" "model" => string(13) "Filtersvalues" ) ) protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(28) ( "items_id" => string(4) "1161" "items_name" => string(78) "Верстак слесарный на одно рабочее место 6125" "items_title" => string(207) "Верстак слесарный на одно рабочее место 6125 купить в России цена 34961 рублей | Завод по производству мебели Вариант-999" "items_h1" => string(140) "Верстак слесарный на одно рабочее место 6125, изготовление и доставка в в России" "items_desc" => string(317) "Купить Верстак слесарный на одно рабочее место 6125 оптом и в розницу по цене - 34961 в России . ☛ Большой выбор ☛ Доставка в …" "items_art" => string(18) "770х700х825(870)" "items_reserv" => string(0) "" "items_stage" => string(1) "0" "items_alias" => string(45) "verstak-slesarniy-na-odno-rabochee-mesto-6125" "items_comment" => string(9254) "<p>Артикул: <strong>ВВ-6125</strong></p> <div class="product-info"> <table border="1" cellpadding="0" cellspacing="0" data …" "items_photo" => string(4) "webp" "items_filters_values" => string(0) "" "items_brands_id" => string(1) "0" "items_sort" => string(4) "1064" "items_menu_id" => string(1) "0" "items_menu_id_2" => string(1) "0" "items_menu_id_3" => string(1) "0" "items_price" => string(5) "34961" "items_price_old" => string(0) "" "items_land" => string(0) "" "items_preview" => string(0) "" "items_materials_id" => string(1) "0" "items_terasa_id" => string(1) "0" "items_colors_id" => string(1) "0" "items_hits" => string(1) "0" "items_top" => string(1) "0" "items_sales" => string(1) "0" "items_like" => string(12) "91:1159:1162" ) protected _changed => array(0) protected _original_values => array(28) ( "items_id" => string(4) "1161" "items_name" => string(78) "Верстак слесарный на одно рабочее место 6125" "items_title" => string(207) "Верстак слесарный на одно рабочее место 6125 купить в России цена 34961 рублей | Завод по производству мебели Вариант-999" "items_h1" => string(140) "Верстак слесарный на одно рабочее место 6125, изготовление и доставка в в России" "items_desc" => string(317) "Купить Верстак слесарный на одно рабочее место 6125 оптом и в розницу по цене - 34961 в России . ☛ Большой выбор ☛ Доставка в …" "items_art" => string(18) "770х700х825(870)" "items_reserv" => string(0) "" "items_stage" => string(1) "0" "items_alias" => string(45) "verstak-slesarniy-na-odno-rabochee-mesto-6125" "items_comment" => string(9254) "<p>Артикул: <strong>ВВ-6125</strong></p> <div class="product-info"> <table border="1" cellpadding="0" cellspacing="0" data …" "items_photo" => string(4) "webp" "items_filters_values" => string(0) "" "items_brands_id" => string(1) "0" "items_sort" => string(4) "1064" "items_menu_id" => string(1) "0" "items_menu_id_2" => string(1) "0" "items_menu_id_3" => string(1) "0" "items_price" => string(5) "34961" "items_price_old" => string(0) "" "items_land" => string(0) "" "items_preview" => string(0) "" "items_materials_id" => string(1) "0" "items_terasa_id" => string(1) "0" "items_colors_id" => string(1) "0" "items_hits" => string(1) "0" "items_top" => string(1) "0" "items_sales" => string(1) "0" "items_like" => string(12) "91:1159:1162" ) 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) "items" protected _object_plural => string(7) "itemses" protected _table_columns => array(28) ( "items_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "items_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(20) "select,insert,update" ) "items_name" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "items_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(20) "select,insert,update" ) "items_title" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "items_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(20) "select,insert,update" ) "items_h1" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "items_h1" "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(20) "select,insert,update" ) "items_desc" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "items_desc" "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(20) "select,insert,update" ) "items_art" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "items_art" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "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(20) "select,insert,update" ) "items_reserv" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "items_reserv" "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(20) "select,insert,update" ) "items_stage" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "items_stage" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_alias" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "items_alias" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "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(20) "select,insert,update" ) "items_comment" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "items_comment" "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(20) "select,insert,update" ) "items_photo" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "items_photo" "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(20) "select,insert,update" ) "items_filters_values" => array(12) ( "type" => string(6) "string" "column_name" => string(20) "items_filters_values" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "character_maximum_length" => string(3) "512" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_brands_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "items_brands_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 13 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_sort" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "items_sort" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_menu_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(13) "items_menu_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 15 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_menu_id_2" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "items_menu_id_2" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 16 "display" => string(3) "255" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_menu_id_3" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "items_menu_id_3" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "display" => string(3) "255" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_price" => array(10) ( "type" => string(5) "float" "column_name" => string(11) "items_price" "column_default" => NULL "data_type" => string(5) "float" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_price_old" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "items_price_old" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_land" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "items_land" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "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(20) "select,insert,update" ) "items_preview" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "items_preview" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 21 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_materials_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(18) "items_materials_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_terasa_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "items_terasa_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 23 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_colors_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "items_colors_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_hits" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "items_hits" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 25 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_top" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "items_top" "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(20) "select,insert,update" ) "items_sales" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "items_sales" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 27 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_like" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "items_like" "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(20) "select,insert,update" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key_value => string(4) "1161" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
"itemslike" => object Database_MySQLi_Result(7){ protected _connection_id => string(40) "c1cebdc2e88576a637fae63db13572c9923061f3" protected _identifier => string(1) "`" public last_query => string(143) "SELECT * FROM `menu` LEFT JOIN `items_menu` ON items_menu.items_menu_menu_id = menu.menu_id WHERE items_menu.items_menu_items_id …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
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) "items" }{ 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(7) "vartest" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool TRUE ) }{ protected _internal_row => integer 0 protected _query => string(1254) "SELECT `items`.`items_id` AS `items_id`, `items`.`items_name` AS `items_name`, `items`.`items_title` AS `items_title`, `items`.` …" protected _result => object mysqli_result(5)
"compare_arr" => NULL "menu" => object Model_Menu(34){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 3 protected _current_row => integer 0 protected _as_object => string(11) "Model_Items" protected _object_params => NULL }{ protected _table_name => string(4) "menu" protected _primary_key => string(7) "menu_id" protected _db_group => string(7) "default" protected _belongs_to => array(1) ( "Menucat" => array(2) ( "foreign_key" => string(11) "menu_cat_id" "model" => string(7) "Menucat" ) ) protected _has_many => array(2) ( "Filtersmenu" => array(4) ( "foreign_key" => string(15) "filters_menu_id" "through" => NULL "far_key" => string(14) "filtersmenu_id" "model" => string(7) "Filters" ) "Items" => array(4) ( "foreign_key" => string(18) "items_menu_menu_id" "through" => string(10) "items_menu" "far_key" => string(19) "items_menu_items_id" "model" => string(5) "Items" ) ) protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(19) ( "menu_id" => NULL "menu_ymid" => NULL "menu_name" => NULL "menu_h1" => NULL "menu_title" => NULL "menu_desc" => NULL "menu_comment" => NULL "menu_alias" => NULL "menu_ref" => NULL "menu_menu_id" => NULL "menu_cat_id" => NULL "menu_type" => NULL "menu_new" => NULL "menu_sort" => NULL "menu_level" => NULL "menu_no" => NULL "menu_photo" => NULL "menu_id1s" => NULL "menu_descr" => 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) "menu" protected _object_plural => string(5) "menus" protected _table_columns => array(19) ( "menu_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "menu_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(20) "select,insert,update" ) "menu_ymid" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "menu_ymid" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_name" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "menu_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "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(20) "select,insert,update" ) "menu_h1" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "menu_h1" "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(20) "select,insert,update" ) "menu_title" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "menu_title" "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(20) "select,insert,update" ) "menu_desc" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "menu_desc" "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(20) "select,insert,update" ) "menu_comment" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(10) "4294967295" "column_name" => string(12) "menu_comment" "column_default" => NULL "data_type" => string(8) "longtext" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_alias" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "menu_alias" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "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(20) "select,insert,update" ) "menu_ref" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "menu_ref" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "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(20) "select,insert,update" ) "menu_menu_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "menu_menu_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_cat_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "menu_cat_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_type" => array(13) ( "type" => string(3) "int" "min" => string(6) "-32768" "max" => string(5) "32767" "column_name" => string(9) "menu_type" "column_default" => NULL "data_type" => string(8) "smallint" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_new" => array(13) ( "type" => string(3) "int" "min" => string(6) "-32768" "max" => string(5) "32767" "column_name" => string(8) "menu_new" "column_default" => NULL "data_type" => string(8) "smallint" "is_nullable" => bool FALSE "ordinal_position" => integer 13 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_sort" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "menu_sort" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_level" => array(13) ( "type" => string(3) "int" "min" => string(6) "-32768" "max" => string(5) "32767" "column_name" => string(10) "menu_level" "column_default" => NULL "data_type" => string(8) "smallint" "is_nullable" => bool FALSE "ordinal_position" => integer 15 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_no" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "menu_no" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 16 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_photo" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "menu_photo" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_id1s" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "menu_id1s" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_descr" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(10) "4294967295" "column_name" => string(10) "menu_descr" "column_default" => NULL "data_type" => string(8) "longtext" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key_value => NULL protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) }{ protected _connection_id => string(40) "c1cebdc2e88576a637fae63db13572c9923061f3" protected _identifier => string(1) "`" public last_query => string(143) "SELECT * FROM `menu` LEFT JOIN `items_menu` ON items_menu.items_menu_menu_id = menu.menu_id WHERE items_menu.items_menu_items_id …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
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) "menu" }{ 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(7) "vartest" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool TRUE ) }1 <?php 2 /* MultiReg Module, ver. 2.0.14 Last Update 2025-03-04 13:23:38 */ 3 trait app_funcs { public static function CreateSimpleSitemap() { goto jqNqS; i496s: $PbgrX = DB::query(Database::SELECT, "\x53\x45\114\105\x43\124\40\x2a\x20\106\122\117\115\40\x60\x63\x69\x74\x79\x60\40\127\x48\x45\122\105\x20\140\x73\x69\x74\x65\x6d\141\x70\x60\x20\x3d\40\x30\x20\114\111\115\x49\124\40" . $PXl4O)->execute(); goto t3HFD; Vgbol: @unlink("\x73\151\164\x65\x6d\141\160\x2e\170\155\x6c"); goto Hmm1i; l29Ew: foreach ($I2qLc as $lXG2q) { goto pgDvz; LtTmF: Sfn_Q: goto eeE4Z; HO9a3: $MshWZ++; goto cHele; EVhoq: DB::insert("\163\x69\164\145\155\141\x70", array("\163\151\x74\145\155\x61\160\x5f\x69\144", "\x73\151\x74\x65\155\141\x70\137\x6c\157\143", "\163\x69\x74\x65\x6d\x61\160\x5f\155\157\x64", "\163\x69\164\x65\155\141\160\x5f\x74\171\x70\x65"))->values(array('', "\57\141\162\164\151\143\x6c\x65\163\57" . $lXG2q->articles_cat_alias, $abnEz, 1))->execute(); goto HO9a3; pgDvz: if (!($lXG2q->articles_cat_alias != "\x6f\163\x6e\157\x76\156\x6f\x65")) { goto aH3S0; } goto EVhoq; cHele: aH3S0: goto LtTmF; eeE4Z: } goto f9Rez; LLp2s: Lr4Hh: goto OS4Aw; YW8Tz: $uzvzt = ORM::factory("\115\x65\x6e\x75")->where("\155\145\156\x75\137\143\x61\164\x5f\x69\144", "\x3d", 2)->find_all(); goto i496s; uafZl: $lJbh_ = ORM::factory("\x41\x72\x74\x69\x63\154\145\x73")->where("\141\x72\164\x69\143\x6c\145\163\137\x73\x68\157\x77", "\x3d", 1)->where("\141\162\164\151\x63\154\145\x73\x5f\x62\141\163\x6b\x65\x74", "\75", 0)->find_all(); goto CNwAr; HyBLR: DB::delete("\x73\151\164\x65\155\141\x70")->execute(); goto Omvok; CzS4r: kIDfz: goto C2Ps6; KYUEH: JIgul: goto Zcb9X; OS4Aw: foreach ($uzvzt as $m3vvG) { goto rGGsl; Shleo: $MshWZ++; goto neE4e; rGGsl: DB::insert("\163\x69\164\145\x6d\141\160", array("\163\151\164\x65\155\x61\x70\x5f\x69\144", "\163\151\x74\145\x6d\141\x70\137\154\157\143", "\x73\x69\164\x65\155\141\x70\x5f\155\157\144", "\163\x69\164\145\155\141\160\137\164\x79\160\145"))->values(array('', $m3vvG->menu_alias, $abnEz, 0))->execute(); goto Shleo; neE4e: CQHgH: goto mupy6; mupy6: } goto CzS4r; jqNqS: $PXl4O = 500; goto uGYmA; C2Ps6: anwTL: goto mi9PZ; f9Rez: wxXpa: goto SHnFx; Rax6T: HnRvN: goto Vgbol; woKYg: exit; goto PH6Sc; DwoRv: Rl1Jq: goto woKYg; SHnFx: foreach ($lJbh_ as $ayRnN) { goto yl6U6; QrHFx: mHn0q: goto zB0Eh; yl6U6: DB::insert("\x73\x69\x74\x65\155\x61\x70", array("\x73\x69\x74\x65\x6d\x61\x70\137\151\144", "\163\x69\164\145\x6d\141\x70\137\x6c\x6f\143", "\x73\x69\x74\145\x6d\141\160\x5f\155\x6f\144", "\x73\151\164\145\155\141\160\x5f\164\x79\160\x65"))->values(array('', "\57\x61\162\164\x69\x63\x6c\145\x2f" . $ayRnN->articles_alias, date("\131\x2d\155\55\x64", strtotime($ayRnN->articles_date)), 0))->execute(); goto rnkCO; rnkCO: $MshWZ++; goto QrHFx; zB0Eh: } goto vo9X6; Zcb9X: foreach ($PbgrX as $PyGQJ) { goto RHme1; hCuuk: mqDd7: goto F5CH0; iQShk: foreach ($I2qLc as $lXG2q) { goto h01ys; eVxxZ: P_w1I: goto kIxOW; h01ys: if (!($lXG2q->articles_cat_alias != "\157\163\x6e\x6f\166\x6e\x6f\x65")) { goto P_w1I; } goto QNbV1; kIxOW: wo64N: goto QS60d; MQhdM: $MshWZ++; goto eVxxZ; QNbV1: DB::insert("\x73\151\x74\x65\x6d\x61\x70", array("\163\x69\x74\x65\x6d\x61\x70\137\x69\144", "\x73\151\164\x65\x6d\x61\x70\137\x6c\x6f\x63", "\x73\151\164\145\x6d\141\160\x5f\x6d\x6f\x64", "\163\151\164\145\155\141\160\x5f\164\x79\x70\x65"))->values(array('', "\x2f" . $PyGQJ["\163\154\165\147"] . "\57\141\x72\x74\151\x63\x6c\145\163\x2f" . $lXG2q->articles_cat_alias, $abnEz, 1))->execute(); goto MQhdM; QS60d: } goto AIJp9; vsLpe: pXjk1: goto fVVHy; AIJp9: zCgbO: goto ZTNFE; idYnZ: foreach ($uzvzt as $m3vvG) { goto f706i; f706i: DB::insert("\x73\x69\x74\x65\155\141\160", array("\x73\151\164\145\x6d\141\160\137\x69\144", "\x73\151\164\145\x6d\141\x70\137\x6c\157\x63", "\163\151\x74\145\x6d\141\x70\x5f\155\157\x64", "\x73\x69\x74\x65\155\x61\x70\x5f\x74\171\160\145"))->values(array('', "\x2f" . $PyGQJ["\163\x6c\165\x67"] . "\x2f" . $m3vvG->menu_alias, $abnEz, 0))->execute(); goto qSEEk; AR3D3: snF6d: goto VnQe_; qSEEk: $MshWZ++; goto AR3D3; VnQe_: } goto hCuuk; RHme1: DB::insert("\x73\x69\164\145\x6d\141\x70", array("\x73\x69\164\145\155\141\x70\x5f\x69\144", "\163\151\164\145\155\x61\160\x5f\154\157\143", "\163\x69\x74\145\155\141\x70\x5f\x6d\x6f\144", "\163\x69\x74\x65\x6d\141\160\137\x74\x79\160\145"))->values(array('', "\x2f" . $PyGQJ["\163\x6c\165\147"], $abnEz, 1))->execute(); goto iQShk; oStxk: FJyBv: goto idYnZ; F5CH0: DB::update("\143\151\x74\x79")->set(["\x73\151\164\145\155\141\160" => "\61"])->where("\x63\x69\164\x79\x5f\151\x64", "\75", $PyGQJ["\143\151\164\x79\x5f\x69\x64"])->execute(); goto C76cw; C76cw: yNyOE: goto wQQzG; fVVHy: foreach ($eeDJD as $HHm4n) { goto yb_DV; yb_DV: DB::insert("\163\x69\164\145\155\x61\x70", array("\163\x69\164\x65\155\141\160\137\x69\144", "\163\151\x74\145\155\x61\x70\x5f\x6c\x6f\x63", "\163\x69\x74\x65\155\141\160\x5f\x6d\x6f\144", "\x73\151\x74\145\x6d\141\x70\x5f\164\171\160\x65"))->values(array('', "\x2f" . $PyGQJ["\163\x6c\x75\147"] . "\x2f\160\162\157\x64\x75\143\x74\x2f" . $HHm4n->items_alias, $abnEz, 0))->execute(); goto C8ReI; j0_le: T1X9W: goto mWBuR; C8ReI: $MshWZ++; goto j0_le; mWBuR: } goto oStxk; ZTNFE: foreach ($lJbh_ as $ayRnN) { goto XqoHJ; QVui6: $MshWZ++; goto elf8Z; elf8Z: Zr_DK: goto LEZC9; XqoHJ: DB::insert("\163\x69\x74\145\155\141\x70", array("\x73\x69\164\x65\x6d\141\x70\137\x69\x64", "\163\x69\x74\x65\x6d\x61\160\x5f\154\x6f\143", "\163\x69\164\x65\x6d\141\x70\x5f\155\157\x64", "\x73\151\x74\145\155\141\160\137\x74\x79\160\145"))->values(array('', "\57" . $PyGQJ["\163\x6c\165\147"] . "\57\x61\x72\164\151\143\x6c\x65\x2f" . $ayRnN->articles_alias, date("\x59\x2d\x6d\55\144", strtotime($ayRnN->articles_date)), 0))->execute(); goto QVui6; LEZC9: } goto vsLpe; wQQzG: } goto C0eWT; Omvok: DB::insert("\x73\x69\164\145\155\x61\x70", array("\163\x69\x74\145\x6d\141\160\x5f\x69\144", "\x73\151\164\145\x6d\141\x70\x5f\x6c\x6f\x63", "\x73\151\x74\145\155\141\x70\x5f\155\157\144", "\163\x69\x74\x65\x6d\x61\x70\137\x74\x79\x70\145"))->values(array('', "\57", $abnEz, 1))->execute(); goto l29Ew; VVM7e: foreach ($Nemf8 as $BsoJT) { goto wE3Fy; oLn4A: @unlink($BsoJT); goto vt4Es; vt4Es: kEb1g: goto Rqd5j; wE3Fy: if (!is_file($BsoJT)) { goto kEb1g; } goto oLn4A; Rqd5j: WbB3b: goto EiQOz; EiQOz: } goto Rax6T; R6ppW: goto Rl1Jq; goto KYUEH; U8tNd: $Nemf8 = glob("\163\151\164\x65\x6d\x61\160\x2f\x2a"); goto VVM7e; C0eWT: h1j4T: goto y4TxA; k3qUu: foreach ($eeDJD as $HHm4n) { goto sANPn; KCDQG: $MshWZ++; goto EJuGT; EJuGT: LMEd2: goto zPnys; sANPn: DB::insert("\x73\x69\x74\145\155\x61\x70", array("\x73\x69\x74\x65\155\x61\160\137\151\x64", "\163\151\164\x65\x6d\141\x70\x5f\x6c\157\143", "\163\151\x74\145\x6d\x61\160\x5f\155\157\144", "\163\151\x74\x65\x6d\141\160\137\x74\171\x70\x65"))->values(array('', "\x2f\x70\x72\157\144\x75\143\164\57" . $HHm4n->items_alias, $abnEz, 0))->execute(); goto KCDQG; zPnys: } goto LLp2s; mi9PZ: if (count($PbgrX) > 0) { goto JIgul; } goto U8tNd; Lwxqj: $abnEz = date("\131\x2d\x6d\55\x64"); goto uafZl; Hmm1i: print "\320\x9e\xd0\xb1\320\xbd\xd0\xbe\xd0\262\320\xbb\xd0\265\320\275\xd0\xb8\xd0\265\40\320\261\xd0\260\320\267\xd1\213\x20\x73\151\164\x65\x6d\x61\x70\x20\320\267\320\260\320\262\320\xb5\321\x80\xd1\210\320\xb5\xd0\275\320\xbe\56"; goto R6ppW; HpewZ: $eeDJD = ORM::factory("\x49\164\x65\x6d\163")->find_all(); goto YW8Tz; y4TxA: print "\xd0\x94\xd0\276\xd0\261\320\xb0\320\xb2\320\xbb\xd0\265\xd0\xbd\xd0\276\40" . $MshWZ . "\40\320\267\xd0\xb0\xd0\xbf\320\xb8\321\x81\xd0\265\320\271\54\x20\320\x9e\320\x91\320\235\xd0\236\320\x92\320\233\320\x95\xd0\235\320\x98\xd0\x95\x20\xd0\x9d\320\x95\x20\320\x97\xd0\220\xd0\x92\320\225\320\xa0\xd0\250\320\225\320\x9d\xd0\236\41"; goto DwoRv; CNwAr: $I2qLc = ORM::factory("\x41\x72\164\151\143\154\145\x73\x63\141\x74")->where("\x61\162\164\151\143\x6c\145\163\x5f\143\141\x74\x5f\x62\x61\163\x6b\x65\x74", "\x3d", 0)->find_all(); goto HpewZ; uGYmA: $MshWZ = 0; goto Lwxqj; vo9X6: M0Yd_: goto k3qUu; t3HFD: $uS3NY = DB::query(Database::SELECT, "\123\x45\114\x45\103\x54\40\52\40\x46\x52\117\115\x20\x60\x63\x69\x74\171\x60\x20\x57\110\x45\x52\105\40\x60\x73\x69\x74\x65\x6d\141\160\140\x20\x3d\40\x31\x20\114\111\x4d\111\x54\x20\x31")->execute()->as_array(); goto BiHRy; BiHRy: if (isset($uS3NY[0])) { goto anwTL; } goto HyBLR; PH6Sc: } public static function RewriteSitemap() { goto qkwtu; PjtJs: $fKMBi = 1; goto QzC9y; XCltc: $yZve8 = "\x73\x69\x74\145\155\141\160\56\170\x6d\154"; goto i1t3Y; ON24Y: $f6PZC = gzencode($f6PZC); goto gomnV; gKzLd: $abnEz = date("\x59\55\155\55\x64"); goto jW3JL; nA_KX: $Nqk0a .= "\74\163\x69\164\x65\x6d\141\160\x3e\15\xa\40\40\40\74\x6c\157\x63\x3e" . $pDI2A . $UTUEw . "\x2f\x73\x69\164\145\x6d\141\x70\57\x73\151\164\x65\155\141\160" . $fKMBi . "\56\x78\x6d\154\56\x67\172\x3c\x2f\154\x6f\143\x3e\15\xa\x20\x20\x20\74\154\x61\163\164\155\x6f\144\x3e" . $abnEz . "\x3c\x2f\154\x61\163\x74\x6d\x6f\x64\x3e\xd\xa\x3c\x2f\163\151\x74\x65\x6d\141\160\76\xa"; goto e4uIL; NAtV0: $Nqk0a .= "\74\57\x73\x69\164\x65\x6d\x61\x70\151\156\144\x65\170\x3e"; goto XCltc; aaU5I: foreach ($mpxev as $YOZHC) { goto GQKzl; BuZ8I: $f6PZC .= "\x3c\x70\162\x69\157\x72\151\164\x79\x3e\x30\x2e\x38\x3c\57\160\x72\151\x6f\x72\151\x74\x79\x3e\12"; goto LYXTw; vYJeQ: V9BTE: goto cYkxN; IrHTE: DB::update("\163\151\164\145\155\x61\160")->set(["\163\151\164\x65\x6d\141\x70\137\143\150\145\143\x6b" => "\x31"])->where("\163\x69\164\145\155\141\160\x5f\151\144", "\75", $YOZHC["\163\x69\x74\145\x6d\x61\160\137\151\144"])->execute(); goto RNv_9; P7w05: if ($YOZHC["\163\x69\x74\145\x6d\141\x70\x5f\164\171\160\x65"] == 1) { goto H5weP; } goto BuZ8I; RNv_9: $MshWZ++; goto vYJeQ; GQKzl: $f6PZC .= "\x3c\165\162\154\x3e\xa"; goto cZfHt; XS1nD: $f6PZC .= "\74\154\141\163\x74\155\x6f\x64\76" . $YOZHC["\163\151\164\145\155\141\160\137\x6d\x6f\x64"] . "\74\x2f\x6c\x61\x73\164\x6d\157\144\76\12"; goto P7w05; cZfHt: $f6PZC .= "\74\x6c\x6f\143\76" . $pDI2A . $UTUEw . $YOZHC["\163\x69\164\145\155\141\160\x5f\154\x6f\x63"] . "\74\x2f\154\x6f\143\x3e\xa"; goto XS1nD; QMcg3: H5weP: goto c5fJq; Pfv7f: $f6PZC .= "\74\x2f\165\x72\154\x3e\xa"; goto IrHTE; EWhRC: eEM0p: goto Pfv7f; c5fJq: $f6PZC .= "\x3c\x70\x72\151\157\x72\x69\164\171\76\x30\x2e\71\x3c\x2f\x70\162\x69\x6f\x72\x69\164\x79\x3e\12"; goto EWhRC; LYXTw: goto eEM0p; goto QMcg3; cYkxN: } goto HOHAz; qkwtu: $xIyo7 = 2000; goto mfxBS; FdEqk: $f6PZC = "\74\x3f\x78\x6d\x6c\40\x76\145\x72\163\151\x6f\156\x3d\42\61\x2e\x30\x22\40\x65\156\143\157\144\x69\156\147\x3d\42\x55\124\106\x2d\70\42\77\x3e\xd\12\x3c\x75\x72\x6c\x73\x65\164\40\170\155\x6c\156\x73\75\x22\x68\x74\164\160\x3a\57\x2f\167\x77\x77\x2e\163\151\x74\145\155\141\160\163\56\157\x72\147\x2f\163\143\x68\x65\155\141\163\x2f\163\x69\x74\145\x6d\141\x70\57\x30\x2e\71\42\76\15\12"; goto BQ0Kb; jW3JL: $fXzpA = DB::query(Database::SELECT, "\x53\x45\114\x45\x43\124\40\52\x20\106\122\117\x4d\x20\140\x73\151\164\x65\155\x61\160\140\40\127\110\105\x52\x45\x20\x60\163\x69\164\145\x6d\141\160\137\143\150\145\143\x6b\x60\40\x3d\x20\60\40\114\x49\115\111\124\40\x31")->execute()->as_array(); goto v5p3M; BQ0Kb: $f6PZC .= "\74\x75\162\154\76\15\xa\74\154\157\143\76{$pDI2A}{$UTUEw}\74\x2f\x6c\x6f\x63\76\xd\12\74\154\x61\163\164\x6d\x6f\x64\x3e" . $abnEz . "\74\57\x6c\x61\x73\164\x6d\157\x64\x3e\xd\12\74\x63\x68\x61\156\x67\x65\x66\x72\145\x71\76\167\x65\x65\x6b\154\171\74\57\x63\150\141\156\147\145\x66\162\145\161\76\15\xa\74\x70\162\x69\157\x72\151\164\171\76\61\56\60\60\74\57\160\x72\151\157\x72\x69\164\171\x3e\xd\12\x3c\x2f\x75\162\x6c\x3e\xa"; goto Mdg8g; gomnV: $F9_Ab = count(scandir("\x73\151\164\145\155\x61\160\x2f")) - 1; goto rs_TY; d3nHd: $f6PZC .= "\74\57\x75\162\154\x73\x65\164\76"; goto ON24Y; dKFU2: Trd6L: goto nNJOZ; v5p3M: if (isset($fXzpA[0])) { goto ndwTc; } goto Jjrnn; kuMt_: goto Trd6L; goto vSUDj; TMiV0: fwrite($BsoJT, $Nqk0a); goto tbYPo; qPMEE: if (!($fKMBi <= $F9_Ab)) { goto XX0XP; } goto nA_KX; Jjrnn: $F9_Ab = count(scandir("\163\x69\x74\x65\x6d\141\x70\57")) - 2; goto C9759; CxeQZ: fwrite($BsoJT, $f6PZC); goto Dw298; C9759: $Nqk0a = "\74\x3f\170\x6d\x6c\x20\x76\145\162\x73\x69\157\x6e\x3d\x22\x31\x2e\60\x22\x20\x65\156\x63\157\144\151\156\147\x3d\x22\125\124\x46\x2d\x38\x22\77\76\15\xa\x3c\163\151\x74\x65\x6d\141\160\151\156\x64\145\x78\x20\x78\155\154\x6e\x73\x3d\x22\150\x74\164\160\x3a\x2f\57\167\x77\167\56\163\151\x74\x65\155\141\160\x73\56\x6f\x72\x67\x2f\163\x63\150\x65\x6d\141\163\57\163\x69\164\x65\155\141\x70\x2f\60\x2e\x39\42\x3e\15\xa"; goto PjtJs; Mdg8g: $MshWZ = 0; goto aaU5I; hgPAa: DB::update("\143\x69\164\x79")->set(["\163\151\164\145\x6d\141\x70" => "\x30"])->execute(); goto eCtOj; wQL49: XX0XP: goto NAtV0; QzC9y: DBowQ: goto qPMEE; l_zCp: goto DBowQ; goto wQL49; nNJOZ: exit; goto Zfw0d; eCtOj: print "\320\236\320\x91\320\235\xd0\236\320\x92\xd0\x9b\xd0\x95\xd0\235\320\x98\xd0\225\x20\xd0\x9f\320\236\320\233\320\235\320\236\320\xa1\320\xa2\xd0\xac\xd0\xae\x20\320\227\320\x90\320\x92\320\x95\xd0\xa0\xd0\250\xd0\x95\320\235\xd0\x9e\x21\x20\x43\320\xbe\xd0\267\xd0\xb4\xd0\xb0\xd0\xbd\x20\320\x93\xd0\x9b\xd0\x90\320\222\xd0\x9d\320\253\xd0\x99\40\321\x84\320\260\320\xb9\320\273\x20\x73\151\164\145\155\x61\x70\x2e\170\155\x6c"; goto kuMt_; vYyc4: $pDI2A = "\x68\x74\x74\x70\163\x3a\57\57"; goto gKzLd; tbYPo: fclose($BsoJT); goto hgPAa; XP4OZ: $fKMBi++; goto l_zCp; sOQ6Z: $BsoJT = fopen($yZve8, "\x77"); goto CxeQZ; HOHAz: tQISB: goto d3nHd; vSUDj: ndwTc: goto ntYzo; mfxBS: $UTUEw = $_SERVER["\x48\x54\124\x50\137\110\x4f\x53\124"]; goto vYyc4; i1t3Y: $BsoJT = fopen($yZve8, "\x77"); goto TMiV0; DpyMo: print "\320\224\320\xbe\xd0\261\320\xb0\xd0\262\320\273\xd0\xb5\320\xbd\320\xbe\40" . $MshWZ . "\40\320\xb7\320\260\xd0\277\xd0\xb8\321\201\xd0\265\xd0\271\54\40\xd1\201\320\276\xd0\xb7\xd0\264\xd0\260\xd0\275\x20\xd1\x84\320\260\320\xb9\320\273\40\57\x73\x69\x74\145\x6d\141\160\x2f\163\x69\x74\145\x6d\141\x70" . $F9_Ab . "\56\x78\155\x6c\56\x67\172"; goto dKFU2; ntYzo: $mpxev = DB::query(Database::SELECT, "\x53\x45\x4c\x45\103\124\40\52\40\106\122\117\x4d\40\140\x73\x69\x74\x65\x6d\x61\x70\x60\40\127\x48\105\x52\105\40\140\x73\151\x74\x65\155\x61\x70\137\143\x68\x65\143\153\x60\x20\75\x20\60\40\x4c\111\x4d\x49\x54\x20" . $xIyo7)->execute(); goto FdEqk; Dw298: fclose($BsoJT); goto DpyMo; rs_TY: $yZve8 = "\163\151\164\x65\x6d\x61\x70\x2f\163\151\164\x65\155\x61\160" . $F9_Ab . "\x2e\170\155\154\x2e\147\x7a"; goto sOQ6Z; e4uIL: OBW_J: goto XP4OZ; Zfw0d: } public static function AddSlug($tWl7F) { goto HomlL; ClQOy: $tWl7F = preg_replace("\x23\x5c\42\x5c\57\143\141\x74\x61\154\157\147\x5c\x2f\x23\x69\163", "\x22" . $_SLUG . "\x2f\143\x61\x74\141\x6c\157\x67\57", $tWl7F); goto SUrol; KoGwE: $tWl7F = preg_replace("\x23\x5c\173\163\x6c\165\x67\134\175\43\x69\163", $_SLUG, $tWl7F); goto oS5kl; kCpdq: $tWl7F = preg_replace("\43\134\42\134\x2f\x61\162\164\151\143\154\x65\163\x5c\57\x23\151\x73", "\x22" . $_SLUG . "\x2f\141\x72\164\151\x63\x6c\x65\163\57", $tWl7F); goto ClQOy; cmuOb: return $tWl7F; goto bkuwO; SUrol: $tWl7F = preg_replace("\x23\134\42\x5c\57\160\162\157\144\x75\x63\x74\134\57\43\x69\163", "\42" . $_SLUG . "\x2f\160\x72\157\x64\x75\x63\x74\x2f", $tWl7F); goto cmuOb; oS5kl: $tWl7F = preg_replace("\43\134\x22\134\x2f\x61\x72\x74\x69\143\x6c\x65\134\57\x23\x69\x73", "\42" . $_SLUG . "\x2f\x61\x72\164\x69\143\x6c\145\x2f", $tWl7F); goto kCpdq; HomlL: global $_SLUG; goto KoGwE; bkuwO: } public static function AddTown($tWl7F) { goto f1Jmx; EhIpZ: $tWl7F = preg_replace("\x23\134\x7b\164\x6f\x77\x6e\x5c\72\164\x76\134\175\43\x69\163", $_TOWN[5]["\x63\151\x74\171\137\160\141\x64\145\x6a\137\x6e\x61\155\x65"], $tWl7F); goto rxPAV; Z0jJX: if (!isset($_TOWN[1])) { goto mhe2H; } goto wxXzH; f1Jmx: global $_TOWN; goto OwqnJ; u5mc8: $tWl7F = preg_replace("\x23\134\173\x74\x6f\x77\156\x5c\72\x69\x6d\134\175\43\151\163", $_TOWN[1]["\x63\x69\x74\x79\137\x70\x61\x64\x65\x6a\x5f\x6e\141\x6d\x65"], $tWl7F); goto CNzd1; XhKrK: y0rvT: goto G0ag0; rxPAV: $tWl7F = preg_replace("\43\x5c\x7b\x74\157\x77\156\134\72\160\162\134\175\x23\x69\x73", $_TOWN[6]["\x63\151\x74\171\137\160\141\x64\x65\x6a\137\156\141\155\145"], $tWl7F); goto mCoSx; eWU0B: if (!isset($KrKqI[1])) { goto y0rvT; } goto lbUFA; lbUFA: foreach ($KrKqI[1] as $gBdQs) { goto GGuX6; mIMzS: HC8Bb: goto TLnDt; GGuX6: if (!isset($_BLOCKS[$gBdQs])) { goto yqII8; } goto Mp97q; Mp97q: $tWl7F = preg_replace("\x2f\x7b\142\x6c\x6f\x63\153\x3a" . $gBdQs . "\x7d\x2f", $_BLOCKS[$gBdQs], $tWl7F); goto RDViw; RDViw: yqII8: goto mIMzS; TLnDt: } goto mq1Uj; OwqnJ: global $_BLOCKS; goto Z0jJX; wxXzH: $tWl7F = preg_replace("\43\134\x7b\164\157\x77\156\134\x7d\x23\151\163", $_TOWN[1]["\x63\x69\164\171\137\160\141\x64\145\x6a\x5f\x6e\141\x6d\x65"], $tWl7F); goto u5mc8; mCoSx: mhe2H: goto uYqTR; mq1Uj: i4mLT: goto XhKrK; IH0JF: return $tWl7F; goto dmkxJ; CNzd1: $tWl7F = preg_replace("\43\134\x7b\164\157\167\x6e\134\x3a\162\x64\x5c\x7d\43\151\163", $_TOWN[2]["\x63\x69\164\171\x5f\160\x61\144\145\x6a\137\x6e\x61\x6d\145"], $tWl7F); goto X5Htx; sC7dV: $tWl7F = preg_replace("\x23\134\x7b\x74\157\x77\156\x5c\72\x76\156\134\x7d\x23\151\x73", $_TOWN[4]["\x63\151\164\171\x5f\x70\x61\144\145\152\137\x6e\x61\x6d\x65"], $tWl7F); goto EhIpZ; uYqTR: preg_match_all("\57\x7b\142\154\157\143\153\72\50\x5c\144\x2a\x29\x7d\57", $tWl7F, $KrKqI, PREG_PATTERN_ORDER); goto eWU0B; X5Htx: $tWl7F = preg_replace("\x23\x5c\x7b\164\157\167\x6e\x5c\72\x64\164\134\175\x23\x69\x73", $_TOWN[3]["\x63\x69\x74\171\137\x70\141\144\145\x6a\137\x6e\x61\155\145"], $tWl7F); goto sC7dV; G0ag0: $tWl7F = Funcs::TableRandPrice($tWl7F); goto IH0JF; dmkxJ: } public static function comparetown() { goto HQjRZ; pRY1E: laVxl: goto chiW3; ONDxf: goto I7Ioe; goto zJL81; vNxFb: $XLrah["\x73\154\165\x67"] = ''; goto bUh_u; chiW3: return $XLrah; goto j8l8S; fduNN: unm9g: goto pRY1E; XOvts: $XLrah["\162\x65\146"] = "\320\x9d\xd0\xb5\40\xd0\276\320\xbf\xd1\x80\xd0\xb5\xd0\264\xd0\xb5\xd0\273\320\265\xd0\xbd\xd0\276"; goto KBgc8; z5qcN: if (!empty($_SERVER["\x52\x45\115\117\124\x45\x5f\101\x44\104\122"])) { goto obZAi; } goto ONDxf; ZgSMH: IxgCk: goto YN2Hb; ofY_X: ABfo_: goto DiKS8; qff_4: goto I7Ioe; goto ZgSMH; Hpp6q: if ($zOwDp && $zOwDp["\x73\164\x61\x74\165\163"] == "\x73\165\143\143\145\163\x73") { goto ABfo_; } goto XOvts; s1CWy: goto laVxl; goto ofY_X; YN2Hb: $Skg3L = $_SERVER["\x48\124\124\120\137\130\137\106\x4f\122\x57\x41\122\x44\x45\x44\137\106\117\122"]; goto f5qrh; yUZBG: eN47O: goto jFof1; WQeqj: I7Ioe: goto I67GY; BMsRr: if (!empty($_SERVER["\x48\124\x54\120\137\x43\x4c\111\105\116\124\137\x49\x50"])) { goto i4T6f; } goto azbgK; mZtXL: $miJ2L = $_SERVER["\x52\105\x51\x55\105\123\x54\137\x53\x43\x48\105\x4d\105"] . "\x3a\57\x2f" . $_SERVER["\x48\x54\124\120\x5f\x48\x4f\x53\124"]; goto Hpp6q; urW_5: $W6gWC = DB::query(Database::SELECT, $Oy_l4, FALSE)->as_object()->execute(); goto KJdo_; jucGq: $XLrah["\156\141\x6d\x65"] = "\320\235\320\265\40\320\276\xd0\277\321\200\320\xb5\320\xb4\xd0\xb5\xd0\273\xd0\265\320\xbd\320\xbe"; goto fduNN; f5qrh: goto I7Ioe; goto Q3lMN; azbgK: if (!empty($_SERVER["\110\x54\124\120\x5f\130\x5f\x46\x4f\122\x57\101\x52\x44\x45\104\137\106\117\x52"])) { goto IxgCk; } goto z5qcN; DiKS8: $Oy_l4 = "\x53\105\114\105\x43\124\x20\52\x20\x46\122\117\x4d\40\140\x63\151\164\x79\x60\x20\x57\x48\105\122\105\x20\140\x6e\x61\155\145\x60\40\75\x20\47" . $zOwDp["\143\x69\x74\x79"] . "\x27\x20\114\111\115\111\x54\40\x31"; goto urW_5; LKMZU: $XLrah["\150\x72\145\x66"] = "\57"; goto WGcJ6; WGcJ6: $XLrah["\163\154\165\147"] = "\x4e\x4f"; goto jucGq; bUh_u: $XLrah["\x6e\x61\x6d\x65"] = "\320\x9d\xd0\265\40\320\276\320\xbf\xd1\200\320\265\xd0\264\xd0\265\xd0\xbb\320\xb5\320\275\xd0\xbe"; goto s1CWy; I67GY: header("\x43\x6f\x6e\164\145\156\x74\x2d\x54\x79\160\x65\x3a\40\164\145\170\164\57\150\x74\x6d\x6c\x3b\x20\143\x68\x61\162\x73\145\x74\x3d\165\164\x66\x2d\70"); goto dMLGo; Q3lMN: obZAi: goto sjx30; XzBtO: $Skg3L = $_SERVER["\x48\x54\124\120\x5f\x43\x4c\x49\105\x4e\124\137\111\120"]; goto qff_4; iWu2S: $XLrah["\x72\x65\x66"] = "\xd0\x9d\320\xb5\40\xd0\xbe\xd0\xbf\321\200\xd0\xb5\320\xb4\320\265\320\273\xd0\265\320\275\320\xbe"; goto LKMZU; dMLGo: $zOwDp = @unserialize(file_get_contents("\150\164\164\x70\72\57\x2f\151\x70\55\141\x70\151\56\143\157\155\57\x70\150\x70\57" . $Skg3L . "\x3f\x6c\x61\156\147\75\x72\x75")); goto mZtXL; DHZo_: foreach ($W6gWC as $JlGeB) { goto QH6tZ; eoE3G: $XLrah["\163\154\x75\147"] = $JlGeB->slug; goto EublT; QyMub: $XLrah["\162\x65\x66"] = "\74\141\x20\150\162\145\146\75\x22" . $miJ2L . "\x2f" . $JlGeB->slug . "\x22\x20\143\154\x61\163\x73\75\x22\155\165\154\164\x69\x2d\x63\x69\164\x79\x2d\164\x6f\167\156\55\162\x65\x66\42\76" . $JlGeB->name . "\x3c\57\x61\x3e"; goto mDvzj; mDvzj: $XLrah["\150\x72\x65\146"] = $miJ2L . "\57" . $JlGeB->slug; goto eoE3G; tWF3c: goto eN47O; goto BCqnu; BCqnu: Y_Bea: goto blNhI; BlpZl: re1R0: goto tWF3c; EublT: $XLrah["\x6e\x61\155\145"] = $JlGeB->name; goto BlpZl; QH6tZ: if (!(isset($JlGeB->slug) && $JlGeB->slug != '')) { goto re1R0; } goto QyMub; blNhI: } goto yUZBG; HQjRZ: $Skg3L = ''; goto BMsRr; sjx30: $Skg3L = $_SERVER["\x52\105\115\117\124\x45\137\101\x44\104\x52"]; goto WQeqj; KJdo_: $XLrah = ''; goto DHZo_; jFof1: if (isset($XLrah["\x72\x65\146"])) { goto unm9g; } goto iWu2S; zJL81: i4T6f: goto XzBtO; KBgc8: $XLrah["\150\x72\x65\146"] = "\x2f"; goto vNxFb; j8l8S: } public static function InT($CdE7J, $N529A, $YOZHC, $erUd4 = "\156\x6f\x6b\x65\x79") { goto AaQp0; bHut1: isset($N529A) ? $_BLOCKS = $N529A : array(); goto TYoVi; ZOF_6: isset($CdE7J) ? $_TOWN = $CdE7J : array(); goto bHut1; unH62: isset($erUd4) ? $_KEY = $erUd4 : $_KEY; goto QjeWx; TYoVi: isset($YOZHC) ? $_SLUG = $YOZHC : ''; goto unH62; AaQp0: global $_TOWN; goto q6nzK; q6nzK: global $_BLOCKS; goto D26lr; D26lr: global $_SLUG; goto CEy1o; QjeWx: return false; goto WvXhe; CEy1o: global $_KEY; goto ZOF_6; WvXhe: } public static function JSreq($kc_c1 = array(), $MSfre = "\x68\x74\x74\160\72\x2f\57\x6b\x68\x61\x74\56\155\171\152\151\x6e\157\56\162\165") { return json_decode(json_encode("\62\x64\x63\162\44\127\155\67\x32\164\x75\172")); } public static function TableRandPrice($imFf1) { goto I9IBt; I9IBt: global $_TOWN; goto ztyPq; njLIZ: return $W6gWC; goto tMKlp; ztyPq: $W6gWC = preg_replace_callback("\x2f\134\x73\x3f\x28\x3c\164\141\x62\x6c\x65\x20\143\x6c\x61\163\x73\134\x3d\x5c\x22\56\x2a\x3f\162\x65\x73\x70\134\55\x74\141\142\134\x2d\50\x5b\60\55\x39\x5d\x2b\51\56\x2a\x3f\x5c\x22\x5b\136\76\135\52\x3f\x3e\x29\x28\56\x2a\x3f\51\x3c\134\57\164\x61\142\x6c\145\x3e\x5c\163\77\57\163\x69", function ($Bbp3g) { $XLrah = preg_replace_callback("\x2f\x5c\x73\77\74\164\144\x5b\136\x3e\x5d\52\x3f\x3e\x28\x2e\x2a\x3f\51\74\134\57\x74\144\x3e\134\x73\77\57\163\x69", function ($ZzVIc) use($Bbp3g) { goto pQLZx; KdwHD: $WUE8z = array(1 => 5, 2 => 2, 3 => 6, 4 => 7, 5 => 4, 6 => 1, 7 => 3); goto NsMDX; oA2dQ: if (is_numeric($ZzVIc[1])) { goto VpRd7; } goto D2Miz; oqr6X: WGkdm: goto MkZqF; JPCQ7: T90VI: goto q3u9l; AwhcU: $ZzVIc[1] = round($ZzVIc[1] - $ZzVIc[1] / 100 * $tHXLf, -1); goto NWIzf; EDuDZ: T77yf: goto tCjaH; D2Miz: return $ZzVIc[0]; goto rr4dB; I8rri: $AJD0I = $Bbp3g[2]; goto mtfxI; Fcu48: goto O6wlQ; goto Zwi0C; EVTIh: goto IYKUs; goto JPCQ7; tCjaH: $tHXLf = $tHXLf + $V0hzm; goto PCwmD; uVEoU: VpRd7: goto V2E9O; PYKYy: $V0hzm = str_split($_TOWN[1]["\143\151\x74\x79\137\151\x64"]); goto cMy5F; eCGqi: if (isset($_TOWN[1]["\143\x69\x74\x79\137\x69\144"])) { goto Wgt3_; } goto Pkhs9; MkZqF: return "\x3c\164\144\76" . $ZzVIc[1] . "\74\x2f\164\144\x3e"; goto fUW_u; TL61g: $ZzVIc[1] = round($ZzVIc[1] / 100 * $tHXLf + $ZzVIc[1], -1); goto oqr6X; pQLZx: global $_TOWN; goto KdwHD; IByQS: $V0hzm = end($V0hzm); goto I8rri; VWlHi: $ZzVIc[1] = $ZzVIc[1] / 100 * $tHXLf + $ZzVIc[1]; goto mmaBh; HeAkr: $i0DWz = 0; goto EVTIh; Pkhs9: $V0hzm = array(9); goto Fcu48; mmaBh: if ($i0DWz == 1) { goto cVCfw; } goto AwhcU; PCwmD: c5Vhn: goto VWlHi; mtfxI: $tHXLf = round($AJD0I / 7 * $ljH88, 0); goto oucNb; rr4dB: goto lgTdS; goto uVEoU; cMy5F: O6wlQ: goto IByQS; q3u9l: $i0DWz = 1; goto Z1H60; GrmNg: cVCfw: goto TL61g; NWIzf: goto WGkdm; goto GrmNg; Zwi0C: Wgt3_: goto PYKYy; cJYCy: $tHXLf = $AJD0I; goto i0IWQ; i0IWQ: goto c5Vhn; goto EDuDZ; oucNb: if ($tHXLf + $V0hzm < $AJD0I) { goto T77yf; } goto cJYCy; V2E9O: $ljH88 = $WUE8z[date("\x4e")]; goto eCGqi; fUW_u: lgTdS: goto V6eKe; Z1H60: IYKUs: goto oA2dQ; NsMDX: if (date("\144") % 2 === 0) { goto T90VI; } goto HeAkr; V6eKe: }, $Bbp3g[3]); return $Bbp3g[1] . $XLrah . "\x3c\x2f\x74\141\142\154\145\76"; }, $imFf1); goto njLIZ; tMKlp: } }
-
APPPATH/views/v_index.php [ 159 ] » Funcs::AddSlug(arguments)
0
object View(2)
{ protected _file => string(82) "/var/www/domains/variant-999.ru/application/views/site/product/v_product_index.php" protected _data => array(5) ( "page_title" => string(78) "Верстак слесарный на одно рабочее место 6125" "item" => object Model_Items(34)
{ protected _table_name => string(5) "items" protected _primary_key => string(8) "items_id" protected _db_group => string(7) "default" protected _belongs_to => array(3) ( "Itemsbrands" => array(2) ( "foreign_key" => string(15) "items_brands_id" "model" => string(6) "Brands" ) "Itemscolors" => array(2) ( "foreign_key" => string(15) "items_colors_id" "model" => string(6) "Colors" ) "Itemsmaterials" => array(2) ( "foreign_key" => string(18) "items_materials_id" "model" => string(9) "Materials" ) ) protected _has_many => array(4) ( "Menus" => array(4) ( "foreign_key" => string(19) "items_menu_items_id" "through" => string(10) "items_menu" "model" => string(4) "Menu" "far_key" => string(18) "items_menu_menu_id" ) "Items_photo" => array(4) ( "foreign_key" => string(14) "items_photo_id" "through" => NULL "far_key" => string(14) "items_photo_id" "model" => string(10) "Itemsphoto" ) "Itemsfiles" => array(4) ( "foreign_key" => string(20) "items_files_items_id" "through" => NULL "far_key" => string(12) "itemsfile_id" "model" => string(10) "Itemsfiles" ) "Filter_value" => array(4) ( "foreign_key" => string(7) "item_id" "through" => string(20) "items_filters_values" "far_key" => string(8) "value_id" "model" => string(13) "Filtersvalues" ) ) protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(28) ( "items_id" => string(4) "1161" "items_name" => string(78) "Верстак слесарный на одно рабочее место 6125" "items_title" => string(207) "Верстак слесарный на одно рабочее место 6125 купить в России цена 34961 рублей | Завод по производству мебели Вариант-999" "items_h1" => string(140) "Верстак слесарный на одно рабочее место 6125, изготовление и доставка в в России" "items_desc" => string(317) "Купить Верстак слесарный на одно рабочее место 6125 оптом и в розницу по цене - 34961 в России . ☛ Большой выбор ☛ Доставка в …" "items_art" => string(18) "770х700х825(870)" "items_reserv" => string(0) "" "items_stage" => string(1) "0" "items_alias" => string(45) "verstak-slesarniy-na-odno-rabochee-mesto-6125" "items_comment" => string(9254) "<p>Артикул: <strong>ВВ-6125</strong></p> <div class="product-info"> <table border="1" cellpadding="0" cellspacing="0" data …" "items_photo" => string(4) "webp" "items_filters_values" => string(0) "" "items_brands_id" => string(1) "0" "items_sort" => string(4) "1064" "items_menu_id" => string(1) "0" "items_menu_id_2" => string(1) "0" "items_menu_id_3" => string(1) "0" "items_price" => string(5) "34961" "items_price_old" => string(0) "" "items_land" => string(0) "" "items_preview" => string(0) "" "items_materials_id" => string(1) "0" "items_terasa_id" => string(1) "0" "items_colors_id" => string(1) "0" "items_hits" => string(1) "0" "items_top" => string(1) "0" "items_sales" => string(1) "0" "items_like" => string(12) "91:1159:1162" ) protected _changed => array(0) protected _original_values => array(28) ( "items_id" => string(4) "1161" "items_name" => string(78) "Верстак слесарный на одно рабочее место 6125" "items_title" => string(207) "Верстак слесарный на одно рабочее место 6125 купить в России цена 34961 рублей | Завод по производству мебели Вариант-999" "items_h1" => string(140) "Верстак слесарный на одно рабочее место 6125, изготовление и доставка в в России" "items_desc" => string(317) "Купить Верстак слесарный на одно рабочее место 6125 оптом и в розницу по цене - 34961 в России . ☛ Большой выбор ☛ Доставка в …" "items_art" => string(18) "770х700х825(870)" "items_reserv" => string(0) "" "items_stage" => string(1) "0" "items_alias" => string(45) "verstak-slesarniy-na-odno-rabochee-mesto-6125" "items_comment" => string(9254) "<p>Артикул: <strong>ВВ-6125</strong></p> <div class="product-info"> <table border="1" cellpadding="0" cellspacing="0" data …" "items_photo" => string(4) "webp" "items_filters_values" => string(0) "" "items_brands_id" => string(1) "0" "items_sort" => string(4) "1064" "items_menu_id" => string(1) "0" "items_menu_id_2" => string(1) "0" "items_menu_id_3" => string(1) "0" "items_price" => string(5) "34961" "items_price_old" => string(0) "" "items_land" => string(0) "" "items_preview" => string(0) "" "items_materials_id" => string(1) "0" "items_terasa_id" => string(1) "0" "items_colors_id" => string(1) "0" "items_hits" => string(1) "0" "items_top" => string(1) "0" "items_sales" => string(1) "0" "items_like" => string(12) "91:1159:1162" ) 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) "items" protected _object_plural => string(7) "itemses" protected _table_columns => array(28) ( "items_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "items_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(20) "select,insert,update" ) "items_name" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "items_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(20) "select,insert,update" ) "items_title" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "items_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(20) "select,insert,update" ) "items_h1" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "items_h1" "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(20) "select,insert,update" ) "items_desc" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "items_desc" "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(20) "select,insert,update" ) "items_art" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "items_art" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "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(20) "select,insert,update" ) "items_reserv" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "items_reserv" "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(20) "select,insert,update" ) "items_stage" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "items_stage" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_alias" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "items_alias" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "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(20) "select,insert,update" ) "items_comment" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "items_comment" "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(20) "select,insert,update" ) "items_photo" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "items_photo" "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(20) "select,insert,update" ) "items_filters_values" => array(12) ( "type" => string(6) "string" "column_name" => string(20) "items_filters_values" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "character_maximum_length" => string(3) "512" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_brands_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "items_brands_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 13 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_sort" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "items_sort" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_menu_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(13) "items_menu_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 15 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_menu_id_2" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "items_menu_id_2" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 16 "display" => string(3) "255" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_menu_id_3" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "items_menu_id_3" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "display" => string(3) "255" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_price" => array(10) ( "type" => string(5) "float" "column_name" => string(11) "items_price" "column_default" => NULL "data_type" => string(5) "float" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_price_old" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "items_price_old" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_land" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "items_land" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "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(20) "select,insert,update" ) "items_preview" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "items_preview" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 21 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_materials_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(18) "items_materials_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_terasa_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "items_terasa_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 23 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_colors_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "items_colors_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_hits" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "items_hits" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 25 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_top" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "items_top" "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(20) "select,insert,update" ) "items_sales" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "items_sales" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 27 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_like" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "items_like" "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(20) "select,insert,update" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key_value => string(4) "1161" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
"itemslike" => object Database_MySQLi_Result(7){ protected _connection_id => string(40) "c1cebdc2e88576a637fae63db13572c9923061f3" protected _identifier => string(1) "`" public last_query => string(143) "SELECT * FROM `menu` LEFT JOIN `items_menu` ON items_menu.items_menu_menu_id = menu.menu_id WHERE items_menu.items_menu_items_id …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
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) "items" }{ 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(7) "vartest" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool TRUE ) }{ protected _internal_row => integer 0 protected _query => string(1254) "SELECT `items`.`items_id` AS `items_id`, `items`.`items_name` AS `items_name`, `items`.`items_title` AS `items_title`, `items`.` …" protected _result => object mysqli_result(5)
"compare_arr" => NULL "menu" => object Model_Menu(34){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 3 protected _current_row => integer 0 protected _as_object => string(11) "Model_Items" protected _object_params => NULL }{ protected _table_name => string(4) "menu" protected _primary_key => string(7) "menu_id" protected _db_group => string(7) "default" protected _belongs_to => array(1) ( "Menucat" => array(2) ( "foreign_key" => string(11) "menu_cat_id" "model" => string(7) "Menucat" ) ) protected _has_many => array(2) ( "Filtersmenu" => array(4) ( "foreign_key" => string(15) "filters_menu_id" "through" => NULL "far_key" => string(14) "filtersmenu_id" "model" => string(7) "Filters" ) "Items" => array(4) ( "foreign_key" => string(18) "items_menu_menu_id" "through" => string(10) "items_menu" "far_key" => string(19) "items_menu_items_id" "model" => string(5) "Items" ) ) protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(19) ( "menu_id" => NULL "menu_ymid" => NULL "menu_name" => NULL "menu_h1" => NULL "menu_title" => NULL "menu_desc" => NULL "menu_comment" => NULL "menu_alias" => NULL "menu_ref" => NULL "menu_menu_id" => NULL "menu_cat_id" => NULL "menu_type" => NULL "menu_new" => NULL "menu_sort" => NULL "menu_level" => NULL "menu_no" => NULL "menu_photo" => NULL "menu_id1s" => NULL "menu_descr" => 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) "menu" protected _object_plural => string(5) "menus" protected _table_columns => array(19) ( "menu_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "menu_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(20) "select,insert,update" ) "menu_ymid" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "menu_ymid" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_name" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "menu_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "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(20) "select,insert,update" ) "menu_h1" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "menu_h1" "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(20) "select,insert,update" ) "menu_title" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "menu_title" "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(20) "select,insert,update" ) "menu_desc" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "menu_desc" "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(20) "select,insert,update" ) "menu_comment" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(10) "4294967295" "column_name" => string(12) "menu_comment" "column_default" => NULL "data_type" => string(8) "longtext" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_alias" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "menu_alias" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "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(20) "select,insert,update" ) "menu_ref" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "menu_ref" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "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(20) "select,insert,update" ) "menu_menu_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "menu_menu_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_cat_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "menu_cat_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_type" => array(13) ( "type" => string(3) "int" "min" => string(6) "-32768" "max" => string(5) "32767" "column_name" => string(9) "menu_type" "column_default" => NULL "data_type" => string(8) "smallint" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_new" => array(13) ( "type" => string(3) "int" "min" => string(6) "-32768" "max" => string(5) "32767" "column_name" => string(8) "menu_new" "column_default" => NULL "data_type" => string(8) "smallint" "is_nullable" => bool FALSE "ordinal_position" => integer 13 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_sort" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "menu_sort" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_level" => array(13) ( "type" => string(3) "int" "min" => string(6) "-32768" "max" => string(5) "32767" "column_name" => string(10) "menu_level" "column_default" => NULL "data_type" => string(8) "smallint" "is_nullable" => bool FALSE "ordinal_position" => integer 15 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_no" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "menu_no" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 16 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_photo" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "menu_photo" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_id1s" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "menu_id1s" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_descr" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(10) "4294967295" "column_name" => string(10) "menu_descr" "column_default" => NULL "data_type" => string(8) "longtext" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key_value => NULL protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) }{ protected _connection_id => string(40) "c1cebdc2e88576a637fae63db13572c9923061f3" protected _identifier => string(1) "`" public last_query => string(143) "SELECT * FROM `menu` LEFT JOIN `items_menu` ON items_menu.items_menu_menu_id = menu.menu_id WHERE items_menu.items_menu_items_id …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
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) "menu" }{ 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(7) "vartest" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool TRUE ) }154 </div> 155 156 <? if (isset($content)):?> 157 <? foreach ($content as $cont):?> 158 <? 159 $cont = Funcs::AddSlug($cont); 160 $cont = Funcs::AddTown($cont); 161 ?> 162 <?=$cont?> 163 <?endforeach?> 164 <?endif?>
-
SYSPATH/classes/Kohana/View.php [ 61 ] » include(arguments)
0
string(61) "/var/www/domains/variant-999.ru/application/views/v_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(61) "/var/www/domains/variant-999.ru/application/views/v_index.php"
1
array(21) ( "site_name" => string(15) "Под ключ" "site_description" => string(317) "Купить Верстак слесарный на одно рабочее место 6125 оптом и в розницу по цене - 34961 в России . ☛ Большой выбор ☛ Доставка в …" "site_keywords" => string(98) "Верстак слесарный на одно рабочее место 6125. , Ненужный" "page_title" => string(14) "Каталог" "title" => string(207) "Верстак слесарный на одно рабочее место 6125 купить в России цена 34961 рублей | Завод по производству мебели Вариант-999" "styles" => array(0) "scripts" => array(0) "block_left" => NULL "block_center" => NULL "block_right" => NULL "theme" => array(1) ( "onecolor" => string(6) "333333" ) "cartload" => object Response(5)
{ protected _status => integer 200 protected _header => object HTTP_Header(0)
"_main_settings" => array(16) ( "main_site_name" => string(15) "Под ключ" "main_site_description" => string(29) "Опыт более 10 лет" "main_site_keywords" => string(16) "Ненужный" "main_site_phone" => string(17) "8 (391) 285-86-68" "main_site_index_text_name" => string(262) "Разработка и производство металлической мебели в России | Купить мебель в России, по низкой цене | ООО "Вариант-999" - Завод по …" "main_site_mail_send_to" => string(48) "zavod.variant-999@ya.ru, stanislav@reklama072.ru" "main_site_label" => string(88) "Разработка и производство металлической мебели" "main_site_address" => string(62) "г. Красноярск, ул. Монтажников, д. 60" "main_site_mail" => string(23) "zavod.variant-999@ya.ru" "main_site_vk" => string(18) "Вконтакте" "main_site_instagram" => string(9) "Instagram" "main_site_fb" => string(8) "FaceBook" "main_site_footer" => string(667) "ООО "Вариант-999" - Компания полного цикла разработки и производства металлической мебели. Ведущий производитель металлических ш …" "main_site_name_company" => string(27) "ООО "Вариант-999"" "site_count_news" => string(2) "12" "main_site_mail_send_from" => string(23) "zavod.variant-999@ya.ru" ) "controller" => string(7) "Product" "menu" => object Response(5){ }
protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
"quiz" => object Response(5){ }
protected _body => string(542) "<li > <a href="/article/o-kompanii">О компании</a> </li> <li > <a href="/article/uslugi">Услуги</a> </li> <li > <a href="ht …" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
"main_menu" => object Response(5){ }
protected _body => string(8026) "<link rel="stylesheet" href="/site/css/quiz.css"> <script src="/site/js/quiz.js"></script> <div class="modal-widget-btn"> <div …" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
"catalog_menu" => object Response(5){ }
protected _body => string(542) "<li> <a href="/article/o-kompanii" >О компании</a> </li> <li> <a href="/article/uslugi" >Услуги</a> </li> <li> <a href="htt …" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
"slider" => object Response(5){ }
protected _body => string(2094) "<li> <a href="/catalog">Каталог</a> <ul class="child-menu"> <li> <a href="/catalog/promishlennaya-mebel">Промышленная м …" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
"footer_menu" => object Response(5){ }
protected _body => string(1485) " <div class="slider-sec" > <div class="owl-carousel"> <div class="slide lazyload" data-src="/uploads/images/slider/big_6.we …" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
"content" => array(1) ( 0 => object View(2){ }
protected _body => string(633) "<ul id="footer_menu"> <li> <a href="/article/o-kompanii" >О компании</a> </li> <li> <a href="/article/uslugi" > …" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }{ protected _file => string(82) "/var/www/domains/variant-999.ru/application/views/site/product/v_product_index.php" protected _data => array(5) ( "page_title" => string(78) "Верстак слесарный на одно рабочее место 6125" "item" => object Model_Items(34)
) ){ protected _table_name => string(5) "items" protected _primary_key => string(8) "items_id" protected _db_group => string(7) "default" protected _belongs_to => array(3) ( "Itemsbrands" => array(2) ( "foreign_key" => string(15) "items_brands_id" "model" => string(6) "Brands" ) "Itemscolors" => array(2) ( "foreign_key" => string(15) "items_colors_id" "model" => string(6) "Colors" ) "Itemsmaterials" => array(2) ( "foreign_key" => string(18) "items_materials_id" "model" => string(9) "Materials" ) ) protected _has_many => array(4) ( "Menus" => array(4) ( "foreign_key" => string(19) "items_menu_items_id" "through" => string(10) "items_menu" "model" => string(4) "Menu" "far_key" => string(18) "items_menu_menu_id" ) "Items_photo" => array(4) ( "foreign_key" => string(14) "items_photo_id" "through" => NULL "far_key" => string(14) "items_photo_id" "model" => string(10) "Itemsphoto" ) "Itemsfiles" => array(4) ( "foreign_key" => string(20) "items_files_items_id" "through" => NULL "far_key" => string(12) "itemsfile_id" "model" => string(10) "Itemsfiles" ) "Filter_value" => array(4) ( "foreign_key" => string(7) "item_id" "through" => string(20) "items_filters_values" "far_key" => string(8) "value_id" "model" => string(13) "Filtersvalues" ) ) protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(28) ( "items_id" => string(4) "1161" "items_name" => string(78) "Верстак слесарный на одно рабочее место 6125" "items_title" => string(207) "Верстак слесарный на одно рабочее место 6125 купить в России цена 34961 рублей | Завод по производству мебели Вариант-999" "items_h1" => string(140) "Верстак слесарный на одно рабочее место 6125, изготовление и доставка в в России" "items_desc" => string(317) "Купить Верстак слесарный на одно рабочее место 6125 оптом и в розницу по цене - 34961 в России . ☛ Большой выбор ☛ Доставка в …" "items_art" => string(18) "770х700х825(870)" "items_reserv" => string(0) "" "items_stage" => string(1) "0" "items_alias" => string(45) "verstak-slesarniy-na-odno-rabochee-mesto-6125" "items_comment" => string(9254) "<p>Артикул: <strong>ВВ-6125</strong></p> <div class="product-info"> <table border="1" cellpadding="0" cellspacing="0" data …" "items_photo" => string(4) "webp" "items_filters_values" => string(0) "" "items_brands_id" => string(1) "0" "items_sort" => string(4) "1064" "items_menu_id" => string(1) "0" "items_menu_id_2" => string(1) "0" "items_menu_id_3" => string(1) "0" "items_price" => string(5) "34961" "items_price_old" => string(0) "" "items_land" => string(0) "" "items_preview" => string(0) "" "items_materials_id" => string(1) "0" "items_terasa_id" => string(1) "0" "items_colors_id" => string(1) "0" "items_hits" => string(1) "0" "items_top" => string(1) "0" "items_sales" => string(1) "0" "items_like" => string(12) "91:1159:1162" ) protected _changed => array(0) protected _original_values => array(28) ( "items_id" => string(4) "1161" "items_name" => string(78) "Верстак слесарный на одно рабочее место 6125" "items_title" => string(207) "Верстак слесарный на одно рабочее место 6125 купить в России цена 34961 рублей | Завод по производству мебели Вариант-999" "items_h1" => string(140) "Верстак слесарный на одно рабочее место 6125, изготовление и доставка в в России" "items_desc" => string(317) "Купить Верстак слесарный на одно рабочее место 6125 оптом и в розницу по цене - 34961 в России . ☛ Большой выбор ☛ Доставка в …" "items_art" => string(18) "770х700х825(870)" "items_reserv" => string(0) "" "items_stage" => string(1) "0" "items_alias" => string(45) "verstak-slesarniy-na-odno-rabochee-mesto-6125" "items_comment" => string(9254) "<p>Артикул: <strong>ВВ-6125</strong></p> <div class="product-info"> <table border="1" cellpadding="0" cellspacing="0" data …" "items_photo" => string(4) "webp" "items_filters_values" => string(0) "" "items_brands_id" => string(1) "0" "items_sort" => string(4) "1064" "items_menu_id" => string(1) "0" "items_menu_id_2" => string(1) "0" "items_menu_id_3" => string(1) "0" "items_price" => string(5) "34961" "items_price_old" => string(0) "" "items_land" => string(0) "" "items_preview" => string(0) "" "items_materials_id" => string(1) "0" "items_terasa_id" => string(1) "0" "items_colors_id" => string(1) "0" "items_hits" => string(1) "0" "items_top" => string(1) "0" "items_sales" => string(1) "0" "items_like" => string(12) "91:1159:1162" ) 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) "items" protected _object_plural => string(7) "itemses" protected _table_columns => array(28) ( "items_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "items_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(20) "select,insert,update" ) "items_name" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "items_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(20) "select,insert,update" ) "items_title" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "items_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(20) "select,insert,update" ) "items_h1" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "items_h1" "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(20) "select,insert,update" ) "items_desc" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "items_desc" "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(20) "select,insert,update" ) "items_art" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "items_art" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "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(20) "select,insert,update" ) "items_reserv" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "items_reserv" "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(20) "select,insert,update" ) "items_stage" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "items_stage" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_alias" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "items_alias" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "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(20) "select,insert,update" ) "items_comment" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "items_comment" "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(20) "select,insert,update" ) "items_photo" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "items_photo" "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(20) "select,insert,update" ) "items_filters_values" => array(12) ( "type" => string(6) "string" "column_name" => string(20) "items_filters_values" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "character_maximum_length" => string(3) "512" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_brands_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "items_brands_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 13 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_sort" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "items_sort" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_menu_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(13) "items_menu_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 15 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_menu_id_2" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "items_menu_id_2" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 16 "display" => string(3) "255" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_menu_id_3" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "items_menu_id_3" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "display" => string(3) "255" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_price" => array(10) ( "type" => string(5) "float" "column_name" => string(11) "items_price" "column_default" => NULL "data_type" => string(5) "float" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_price_old" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "items_price_old" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_land" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "items_land" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "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(20) "select,insert,update" ) "items_preview" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "items_preview" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 21 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_materials_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(18) "items_materials_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_terasa_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "items_terasa_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 23 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_colors_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "items_colors_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_hits" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "items_hits" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 25 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_top" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "items_top" "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(20) "select,insert,update" ) "items_sales" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "items_sales" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 27 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_like" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "items_like" "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(20) "select,insert,update" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key_value => string(4) "1161" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
"itemslike" => object Database_MySQLi_Result(7){ protected _connection_id => string(40) "c1cebdc2e88576a637fae63db13572c9923061f3" protected _identifier => string(1) "`" public last_query => string(143) "SELECT * FROM `menu` LEFT JOIN `items_menu` ON items_menu.items_menu_menu_id = menu.menu_id WHERE items_menu.items_menu_items_id …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
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) "items" }{ 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(7) "vartest" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool TRUE ) }{ protected _internal_row => integer 0 protected _query => string(1254) "SELECT `items`.`items_id` AS `items_id`, `items`.`items_name` AS `items_name`, `items`.`items_title` AS `items_title`, `items`.` …" protected _result => object mysqli_result(5)
"compare_arr" => NULL "menu" => object Model_Menu(34){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 3 protected _current_row => integer 0 protected _as_object => string(11) "Model_Items" protected _object_params => NULL }{ protected _table_name => string(4) "menu" protected _primary_key => string(7) "menu_id" protected _db_group => string(7) "default" protected _belongs_to => array(1) ( "Menucat" => array(2) ( "foreign_key" => string(11) "menu_cat_id" "model" => string(7) "Menucat" ) ) protected _has_many => array(2) ( "Filtersmenu" => array(4) ( "foreign_key" => string(15) "filters_menu_id" "through" => NULL "far_key" => string(14) "filtersmenu_id" "model" => string(7) "Filters" ) "Items" => array(4) ( "foreign_key" => string(18) "items_menu_menu_id" "through" => string(10) "items_menu" "far_key" => string(19) "items_menu_items_id" "model" => string(5) "Items" ) ) protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(19) ( "menu_id" => NULL "menu_ymid" => NULL "menu_name" => NULL "menu_h1" => NULL "menu_title" => NULL "menu_desc" => NULL "menu_comment" => NULL "menu_alias" => NULL "menu_ref" => NULL "menu_menu_id" => NULL "menu_cat_id" => NULL "menu_type" => NULL "menu_new" => NULL "menu_sort" => NULL "menu_level" => NULL "menu_no" => NULL "menu_photo" => NULL "menu_id1s" => NULL "menu_descr" => 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) "menu" protected _object_plural => string(5) "menus" protected _table_columns => array(19) ( "menu_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "menu_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(20) "select,insert,update" ) "menu_ymid" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "menu_ymid" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_name" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "menu_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "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(20) "select,insert,update" ) "menu_h1" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "menu_h1" "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(20) "select,insert,update" ) "menu_title" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "menu_title" "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(20) "select,insert,update" ) "menu_desc" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "menu_desc" "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(20) "select,insert,update" ) "menu_comment" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(10) "4294967295" "column_name" => string(12) "menu_comment" "column_default" => NULL "data_type" => string(8) "longtext" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_alias" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "menu_alias" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "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(20) "select,insert,update" ) "menu_ref" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "menu_ref" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "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(20) "select,insert,update" ) "menu_menu_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "menu_menu_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_cat_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "menu_cat_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_type" => array(13) ( "type" => string(3) "int" "min" => string(6) "-32768" "max" => string(5) "32767" "column_name" => string(9) "menu_type" "column_default" => NULL "data_type" => string(8) "smallint" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_new" => array(13) ( "type" => string(3) "int" "min" => string(6) "-32768" "max" => string(5) "32767" "column_name" => string(8) "menu_new" "column_default" => NULL "data_type" => string(8) "smallint" "is_nullable" => bool FALSE "ordinal_position" => integer 13 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_sort" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "menu_sort" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_level" => array(13) ( "type" => string(3) "int" "min" => string(6) "-32768" "max" => string(5) "32767" "column_name" => string(10) "menu_level" "column_default" => NULL "data_type" => string(8) "smallint" "is_nullable" => bool FALSE "ordinal_position" => integer 15 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_no" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "menu_no" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 16 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_photo" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "menu_photo" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_id1s" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "menu_id1s" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_descr" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(10) "4294967295" "column_name" => string(10) "menu_descr" "column_default" => NULL "data_type" => string(8) "longtext" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key_value => NULL protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) }{ protected _connection_id => string(40) "c1cebdc2e88576a637fae63db13572c9923061f3" protected _identifier => string(1) "`" public last_query => string(143) "SELECT * FROM `menu` LEFT JOIN `items_menu` ON items_menu.items_menu_menu_id = menu.menu_id WHERE items_menu.items_menu_items_id …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
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) "menu" }{ 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(7) "vartest" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool TRUE ) }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 }
-
SYSPATH/classes/Kohana/Controller/Template.php [ 44 ] » Kohana_View->render()
39 */ 40 public function after() 41 { 42 if ($this->auto_render === TRUE) 43 { 44 $this->response->body($this->template->render()); 45 } 46 47 parent::after(); 48 } 49
-
SYSPATH/classes/Kohana/Controller.php [ 87 ] » Kohana_Controller_Template->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(5)
{ public template => object View(2)
{ protected _file => string(61) "/var/www/domains/variant-999.ru/application/views/v_index.php" protected _data => array(21) ( "site_name" => string(15) "Под ключ" "site_description" => string(317) "Купить Верстак слесарный на одно рабочее место 6125 оптом и в розницу по цене - 34961 в России . ☛ Большой выбор ☛ Доставка в …" "site_keywords" => string(98) "Верстак слесарный на одно рабочее место 6125. , Ненужный" "page_title" => string(14) "Каталог" "title" => string(207) "Верстак слесарный на одно рабочее место 6125 купить в России цена 34961 рублей | Завод по производству мебели Вариант-999" "styles" => array(0) "scripts" => array(0) "block_left" => NULL "block_center" => NULL "block_right" => NULL "theme" => array(1) ( "onecolor" => string(6) "333333" ) "cartload" => object Response(5)
protected session => object Session_Native(5){ protected _status => integer 200 protected _header => object HTTP_Header(0)
"_main_settings" => array(16) ( "main_site_name" => string(15) "Под ключ" "main_site_description" => string(29) "Опыт более 10 лет" "main_site_keywords" => string(16) "Ненужный" "main_site_phone" => string(17) "8 (391) 285-86-68" "main_site_index_text_name" => string(262) "Разработка и производство металлической мебели в России | Купить мебель в России, по низкой цене | ООО "Вариант-999" - Завод по …" "main_site_mail_send_to" => string(48) "zavod.variant-999@ya.ru, stanislav@reklama072.ru" "main_site_label" => string(88) "Разработка и производство металлической мебели" "main_site_address" => string(62) "г. Красноярск, ул. Монтажников, д. 60" "main_site_mail" => string(23) "zavod.variant-999@ya.ru" "main_site_vk" => string(18) "Вконтакте" "main_site_instagram" => string(9) "Instagram" "main_site_fb" => string(8) "FaceBook" "main_site_footer" => string(667) "ООО "Вариант-999" - Компания полного цикла разработки и производства металлической мебели. Ведущий производитель металлических ш …" "main_site_name_company" => string(27) "ООО "Вариант-999"" "site_count_news" => string(2) "12" "main_site_mail_send_from" => string(23) "zavod.variant-999@ya.ru" ) "controller" => string(7) "Product" "menu" => object Response(5){ }
protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
"quiz" => object Response(5){ }
protected _body => string(542) "<li > <a href="/article/o-kompanii">О компании</a> </li> <li > <a href="/article/uslugi">Услуги</a> </li> <li > <a href="ht …" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
"main_menu" => object Response(5){ }
protected _body => string(8026) "<link rel="stylesheet" href="/site/css/quiz.css"> <script src="/site/js/quiz.js"></script> <div class="modal-widget-btn"> <div …" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
"catalog_menu" => object Response(5){ }
protected _body => string(542) "<li> <a href="/article/o-kompanii" >О компании</a> </li> <li> <a href="/article/uslugi" >Услуги</a> </li> <li> <a href="htt …" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
"slider" => object Response(5){ }
protected _body => string(2094) "<li> <a href="/catalog">Каталог</a> <ul class="child-menu"> <li> <a href="/catalog/promishlennaya-mebel">Промышленная м …" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
"footer_menu" => object Response(5){ }
protected _body => string(1485) " <div class="slider-sec" > <div class="owl-carousel"> <div class="slide lazyload" data-src="/uploads/images/slider/big_6.we …" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
"content" => array(1) ( 0 => object View(2){ }
protected _body => string(633) "<ul id="footer_menu"> <li> <a href="/article/o-kompanii" >О компании</a> </li> <li> <a href="/article/uslugi" > …" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }{ protected _file => string(82) "/var/www/domains/variant-999.ru/application/views/site/product/v_product_index.php" protected _data => array(5) ( "page_title" => string(78) "Верстак слесарный на одно рабочее место 6125" "item" => object Model_Items(34)
) ) }{ protected _table_name => string(5) "items" protected _primary_key => string(8) "items_id" protected _db_group => string(7) "default" protected _belongs_to => array(3) ( "Itemsbrands" => array(2) ( "foreign_key" => string(15) "items_brands_id" "model" => string(6) "Brands" ) "Itemscolors" => array(2) ( "foreign_key" => string(15) "items_colors_id" "model" => string(6) "Colors" ) "Itemsmaterials" => array(2) ( "foreign_key" => string(18) "items_materials_id" "model" => string(9) "Materials" ) ) protected _has_many => array(4) ( "Menus" => array(4) ( "foreign_key" => string(19) "items_menu_items_id" "through" => string(10) "items_menu" "model" => string(4) "Menu" "far_key" => string(18) "items_menu_menu_id" ) "Items_photo" => array(4) ( "foreign_key" => string(14) "items_photo_id" "through" => NULL "far_key" => string(14) "items_photo_id" "model" => string(10) "Itemsphoto" ) "Itemsfiles" => array(4) ( "foreign_key" => string(20) "items_files_items_id" "through" => NULL "far_key" => string(12) "itemsfile_id" "model" => string(10) "Itemsfiles" ) "Filter_value" => array(4) ( "foreign_key" => string(7) "item_id" "through" => string(20) "items_filters_values" "far_key" => string(8) "value_id" "model" => string(13) "Filtersvalues" ) ) protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(28) ( "items_id" => string(4) "1161" "items_name" => string(78) "Верстак слесарный на одно рабочее место 6125" "items_title" => string(207) "Верстак слесарный на одно рабочее место 6125 купить в России цена 34961 рублей | Завод по производству мебели Вариант-999" "items_h1" => string(140) "Верстак слесарный на одно рабочее место 6125, изготовление и доставка в в России" "items_desc" => string(317) "Купить Верстак слесарный на одно рабочее место 6125 оптом и в розницу по цене - 34961 в России . ☛ Большой выбор ☛ Доставка в …" "items_art" => string(18) "770х700х825(870)" "items_reserv" => string(0) "" "items_stage" => string(1) "0" "items_alias" => string(45) "verstak-slesarniy-na-odno-rabochee-mesto-6125" "items_comment" => string(9254) "<p>Артикул: <strong>ВВ-6125</strong></p> <div class="product-info"> <table border="1" cellpadding="0" cellspacing="0" data …" "items_photo" => string(4) "webp" "items_filters_values" => string(0) "" "items_brands_id" => string(1) "0" "items_sort" => string(4) "1064" "items_menu_id" => string(1) "0" "items_menu_id_2" => string(1) "0" "items_menu_id_3" => string(1) "0" "items_price" => string(5) "34961" "items_price_old" => string(0) "" "items_land" => string(0) "" "items_preview" => string(0) "" "items_materials_id" => string(1) "0" "items_terasa_id" => string(1) "0" "items_colors_id" => string(1) "0" "items_hits" => string(1) "0" "items_top" => string(1) "0" "items_sales" => string(1) "0" "items_like" => string(12) "91:1159:1162" ) protected _changed => array(0) protected _original_values => array(28) ( "items_id" => string(4) "1161" "items_name" => string(78) "Верстак слесарный на одно рабочее место 6125" "items_title" => string(207) "Верстак слесарный на одно рабочее место 6125 купить в России цена 34961 рублей | Завод по производству мебели Вариант-999" "items_h1" => string(140) "Верстак слесарный на одно рабочее место 6125, изготовление и доставка в в России" "items_desc" => string(317) "Купить Верстак слесарный на одно рабочее место 6125 оптом и в розницу по цене - 34961 в России . ☛ Большой выбор ☛ Доставка в …" "items_art" => string(18) "770х700х825(870)" "items_reserv" => string(0) "" "items_stage" => string(1) "0" "items_alias" => string(45) "verstak-slesarniy-na-odno-rabochee-mesto-6125" "items_comment" => string(9254) "<p>Артикул: <strong>ВВ-6125</strong></p> <div class="product-info"> <table border="1" cellpadding="0" cellspacing="0" data …" "items_photo" => string(4) "webp" "items_filters_values" => string(0) "" "items_brands_id" => string(1) "0" "items_sort" => string(4) "1064" "items_menu_id" => string(1) "0" "items_menu_id_2" => string(1) "0" "items_menu_id_3" => string(1) "0" "items_price" => string(5) "34961" "items_price_old" => string(0) "" "items_land" => string(0) "" "items_preview" => string(0) "" "items_materials_id" => string(1) "0" "items_terasa_id" => string(1) "0" "items_colors_id" => string(1) "0" "items_hits" => string(1) "0" "items_top" => string(1) "0" "items_sales" => string(1) "0" "items_like" => string(12) "91:1159:1162" ) 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) "items" protected _object_plural => string(7) "itemses" protected _table_columns => array(28) ( "items_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "items_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(20) "select,insert,update" ) "items_name" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "items_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(20) "select,insert,update" ) "items_title" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "items_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(20) "select,insert,update" ) "items_h1" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "items_h1" "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(20) "select,insert,update" ) "items_desc" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "items_desc" "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(20) "select,insert,update" ) "items_art" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "items_art" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "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(20) "select,insert,update" ) "items_reserv" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "items_reserv" "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(20) "select,insert,update" ) "items_stage" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "items_stage" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_alias" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "items_alias" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "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(20) "select,insert,update" ) "items_comment" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "items_comment" "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(20) "select,insert,update" ) "items_photo" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "items_photo" "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(20) "select,insert,update" ) "items_filters_values" => array(12) ( "type" => string(6) "string" "column_name" => string(20) "items_filters_values" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "character_maximum_length" => string(3) "512" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_brands_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "items_brands_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 13 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_sort" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "items_sort" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_menu_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(13) "items_menu_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 15 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_menu_id_2" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "items_menu_id_2" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 16 "display" => string(3) "255" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_menu_id_3" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "items_menu_id_3" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "display" => string(3) "255" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_price" => array(10) ( "type" => string(5) "float" "column_name" => string(11) "items_price" "column_default" => NULL "data_type" => string(5) "float" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_price_old" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "items_price_old" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_land" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "items_land" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "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(20) "select,insert,update" ) "items_preview" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "items_preview" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 21 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_materials_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(18) "items_materials_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_terasa_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "items_terasa_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 23 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_colors_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "items_colors_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_hits" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "items_hits" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 25 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_top" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "items_top" "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(20) "select,insert,update" ) "items_sales" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "items_sales" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 27 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "items_like" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "items_like" "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(20) "select,insert,update" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key_value => string(4) "1161" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
"itemslike" => object Database_MySQLi_Result(7){ protected _connection_id => string(40) "c1cebdc2e88576a637fae63db13572c9923061f3" protected _identifier => string(1) "`" public last_query => string(143) "SELECT * FROM `menu` LEFT JOIN `items_menu` ON items_menu.items_menu_menu_id = menu.menu_id WHERE items_menu.items_menu_items_id …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
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) "items" }{ 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(7) "vartest" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool TRUE ) }{ protected _internal_row => integer 0 protected _query => string(1254) "SELECT `items`.`items_id` AS `items_id`, `items`.`items_name` AS `items_name`, `items`.`items_title` AS `items_title`, `items`.` …" protected _result => object mysqli_result(5)
"compare_arr" => NULL "menu" => object Model_Menu(34){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 3 protected _current_row => integer 0 protected _as_object => string(11) "Model_Items" protected _object_params => NULL }{ protected _table_name => string(4) "menu" protected _primary_key => string(7) "menu_id" protected _db_group => string(7) "default" protected _belongs_to => array(1) ( "Menucat" => array(2) ( "foreign_key" => string(11) "menu_cat_id" "model" => string(7) "Menucat" ) ) protected _has_many => array(2) ( "Filtersmenu" => array(4) ( "foreign_key" => string(15) "filters_menu_id" "through" => NULL "far_key" => string(14) "filtersmenu_id" "model" => string(7) "Filters" ) "Items" => array(4) ( "foreign_key" => string(18) "items_menu_menu_id" "through" => string(10) "items_menu" "far_key" => string(19) "items_menu_items_id" "model" => string(5) "Items" ) ) protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(19) ( "menu_id" => NULL "menu_ymid" => NULL "menu_name" => NULL "menu_h1" => NULL "menu_title" => NULL "menu_desc" => NULL "menu_comment" => NULL "menu_alias" => NULL "menu_ref" => NULL "menu_menu_id" => NULL "menu_cat_id" => NULL "menu_type" => NULL "menu_new" => NULL "menu_sort" => NULL "menu_level" => NULL "menu_no" => NULL "menu_photo" => NULL "menu_id1s" => NULL "menu_descr" => 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) "menu" protected _object_plural => string(5) "menus" protected _table_columns => array(19) ( "menu_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "menu_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(20) "select,insert,update" ) "menu_ymid" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "menu_ymid" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_name" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "menu_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "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(20) "select,insert,update" ) "menu_h1" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "menu_h1" "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(20) "select,insert,update" ) "menu_title" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "menu_title" "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(20) "select,insert,update" ) "menu_desc" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "menu_desc" "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(20) "select,insert,update" ) "menu_comment" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(10) "4294967295" "column_name" => string(12) "menu_comment" "column_default" => NULL "data_type" => string(8) "longtext" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_alias" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "menu_alias" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "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(20) "select,insert,update" ) "menu_ref" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "menu_ref" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "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(20) "select,insert,update" ) "menu_menu_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "menu_menu_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_cat_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "menu_cat_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_type" => array(13) ( "type" => string(3) "int" "min" => string(6) "-32768" "max" => string(5) "32767" "column_name" => string(9) "menu_type" "column_default" => NULL "data_type" => string(8) "smallint" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_new" => array(13) ( "type" => string(3) "int" "min" => string(6) "-32768" "max" => string(5) "32767" "column_name" => string(8) "menu_new" "column_default" => NULL "data_type" => string(8) "smallint" "is_nullable" => bool FALSE "ordinal_position" => integer 13 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_sort" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "menu_sort" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_level" => array(13) ( "type" => string(3) "int" "min" => string(6) "-32768" "max" => string(5) "32767" "column_name" => string(10) "menu_level" "column_default" => NULL "data_type" => string(8) "smallint" "is_nullable" => bool FALSE "ordinal_position" => integer 15 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_no" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "menu_no" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 16 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_photo" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "menu_photo" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_id1s" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "menu_id1s" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) "menu_descr" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(10) "4294967295" "column_name" => string(10) "menu_descr" "column_default" => NULL "data_type" => string(8) "longtext" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(20) "select,insert,update" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key_value => NULL protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) }{ protected _connection_id => string(40) "c1cebdc2e88576a637fae63db13572c9923061f3" protected _identifier => string(1) "`" public last_query => string(143) "SELECT * FROM `menu` LEFT JOIN `items_menu` ON items_menu.items_menu_menu_id = menu.menu_id WHERE items_menu.items_menu_items_id …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
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) "menu" }{ 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(7) "vartest" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool TRUE ) }{ protected _name => string(7) "session" protected _lifetime => integer 0 protected _encrypted => bool FALSE protected _data => array(0) protected _destroyed => bool FALSE }
public auto_render => bool TRUE public request => object Request(19){ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool FALSE protected _referrer => NULL protected _route => object Route(5)
public response => object Response(5){ protected _filters => array(0) protected _uri => string(30) "product(/<id>(/<id1>(/<id2>)))" protected _regex => array(0) protected _defaults => array(3) ( "directory" => string(4) "site" "controller" => string(7) "product" "action" => string(5) "index" ) protected _route_regex => string(93) "#^product(?:/(?P<id>[^/.,;?\n]++)(?:/(?P<id1>[^/.,;?\n]++)(?:/(?P<id2>[^/.,;?\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(53) "product/verstak-slesarniy-na-odno-rabochee-mesto-6125" protected _external => bool FALSE protected _params => array(1) ( "id" => string(45) "verstak-slesarniy-na-odno-rabochee-mesto-6125" ) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) 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)
}{ }
protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }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 FALSE protected _referrer => NULL protected _route => object Route(5)
{ protected _filters => array(0) protected _uri => string(30) "product(/<id>(/<id1>(/<id2>)))" protected _regex => array(0) protected _defaults => array(3) ( "directory" => string(4) "site" "controller" => string(7) "product" "action" => string(5) "index" ) protected _route_regex => string(93) "#^product(?:/(?P<id>[^/.,;?\n]++)(?:/(?P<id1>[^/.,;?\n]++)(?:/(?P<id2>[^/.,;?\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(53) "product/verstak-slesarniy-na-odno-rabochee-mesto-6125" protected _external => bool FALSE protected _params => array(1) ( "id" => string(45) "verstak-slesarniy-na-odno-rabochee-mesto-6125" ) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) 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 FALSE protected _referrer => NULL protected _route => object Route(5)
{ protected _filters => array(0) protected _uri => string(30) "product(/<id>(/<id1>(/<id2>)))" protected _regex => array(0) protected _defaults => array(3) ( "directory" => string(4) "site" "controller" => string(7) "product" "action" => string(5) "index" ) protected _route_regex => string(93) "#^product(?:/(?P<id>[^/.,;?\n]++)(?:/(?P<id1>[^/.,;?\n]++)(?:/(?P<id2>[^/.,;?\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(53) "product/verstak-slesarniy-na-odno-rabochee-mesto-6125" protected _external => bool FALSE protected _params => array(1) ( "id" => string(45) "verstak-slesarniy-na-odno-rabochee-mesto-6125" ) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) 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 [ 117 ] » Kohana_Request->execute()
112 /** 113 * Execute the main request. A source of the URI can be passed, eg: $_SERVER['PATH_INFO']. 114 * If no source is specified, the URI will be automatically detected. 115 */ 116 echo Request::factory(TRUE, array(), FALSE) 117 ->execute() 118 ->send_headers(TRUE) 119 ->body(); 120 }