MODPATH/database/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))
-
MODPATH/database/classes/Kohana/Database/Query.php [ 251 ] » Database_MySQLi->query(arguments)
0
integer 1
1
string(151) "SELECT `image`.`id` AS `id`, `image`.`name` AS `name`, `image`.`product_id` AS `product_id` FROM `images` AS `image` WHERE `imag …"
2
bool FALSE
3
array(0)
246 return new Database_Result_Cached($result, $sql, $as_object, $object_params); 247 } 248 } 249 250 // Execute the query 251 $result = $db->query($this->_type, $sql, $as_object, $object_params); 252 253 if (isset($cache_key) AND $this->_lifetime > 0) 254 { 255 // Cache the result array 256 Kohana::cache($cache_key, $result->as_array(), $this->_lifetime);
-
MODPATH/orm/classes/Kohana/ORM.php [ 1072 ] » Kohana_Database_Query->execute(arguments)
0
object Database_MySQLi(6)
{ protected _connection_id => string(40) "38eb4f700d8e178f1f5ca0c014d3457042a2241a" protected _identifier => string(1) "`" public last_query => string(151) "SELECT `image`.`id` AS `id`, `image`.`name` AS `name`, `image`.`product_id` AS `product_id` FROM `images` AS `image` WHERE `imag …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(5) ( "hostname" => string(9) "localhost" "database" => string(5) "mebrf" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE ) }1067 return $result; 1068 } 1069 else 1070 { 1071 // Load the result as an associative array 1072 $result = $this->_db_builder->as_assoc()->execute($this->_db); 1073 1074 $this->reset(); 1075 1076 if ($result->count() === 1) 1077 {
-
MODPATH/orm/classes/Kohana/ORM.php [ 979 ] » Kohana_ORM->_load_result(arguments)
0
bool FALSE
974 } 975 } 976 977 $this->_build(Database::SELECT); 978 979 return $this->_load_result(FALSE); 980 } 981 982 /** 983 * Finds multiple database rows and returns an iterator of the rows found. 984 *
-
MODPATH/orm/classes/Kohana/ORM.php [ 640 ] » Kohana_ORM->find()
635 // Make sure we don't run WHERE "AUTO_INCREMENT column" = NULL queries. This would 636 // return the last inserted record instead of an empty result. 637 // See: http://mysql.localhost.net.ar/doc/refman/5.1/en/server-session-variables.html#sysvar_sql_auto_is_null 638 if ($val !== NULL) 639 { 640 $model->where($col, '=', $val)->find(); 641 } 642 643 return $this->_related[$column] = $model; 644 } 645 elseif (isset($this->_has_one[$column]))
-
MODPATH/orm/classes/Kohana/ORM.php [ 603 ] » Kohana_ORM->get(arguments)
0
string(8) "main_img"
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/index/catalog/v_catalog_view.php [ 261 ] » Kohana_ORM->__get(arguments)
0
string(8) "main_img"
256 <?endif?> 257 </h5> 258 </div> 259 <?if(!empty($product->images)):?> 260 <?=html::anchor('catalog/' . $categories_id[$i]->alias . '/' . $product->alias, 261 html::image('media/uploads/product/' . $product->main_img->name, array('alt' => $product->title)))?><br/> 262 <?else:?> 263 <?=html::anchor("catalog/$category->alias/$product->alias", 264 html::image('media/img/default.jpg', array('alt' => $product->title)))?> 265 <?endif?> 266 </div>
-
SYSPATH/classes/Kohana/View.php [ 62 ] » include(arguments)
0
string(84) "/var/www/asgera/data/www/mebrf.ru/application/views/index/catalog/v_catalog_view.php"
57 ob_start(); 58 59 try 60 { 61 // Load the view within the current scope 62 include $kohana_view_filename; 63 } 64 catch (Exception $e) 65 { 66 // Delete the output buffer 67 ob_end_clean();
-
SYSPATH/classes/Kohana/View.php [ 359 ] » Kohana_View::capture(arguments)
0
string(84) "/var/www/asgera/data/www/mebrf.ru/application/views/index/catalog/v_catalog_view.php"
1
array(15) ( "check_favorite" => NULL "product" => object Model_Product(34)
{ protected _table_columns => array(20) ( "id" => NULL "meta_title" => NULL "meta_keywords" => NULL "meta_description" => NULL "title" => NULL "description" => NULL "description_small" => NULL "cost" => NULL "cost_spec" => NULL "status" => NULL "status_have" => NULL "spec" => NULL "image_id" => NULL "alias" => NULL "cost_opt" => NULL "vol" => NULL "wt" => NULL "color_id" => NULL "imgbg_id" => NULL "fabric_id" => NULL ) protected _table_name => string(8) "products" protected _primary_key => string(2) "id" protected _db_group => string(7) "default" protected _has_many => array(5) ( "comments" => array(4) ( "foreign_key" => string(10) "product_id" "through" => NULL "far_key" => string(10) "comment_id" "model" => string(7) "Comment" ) "images" => array(4) ( "foreign_key" => string(10) "product_id" "through" => NULL "far_key" => string(8) "image_id" "model" => string(5) "Image" ) "categories" => array(4) ( "foreign_key" => string(10) "product_id" "through" => string(19) "products_categories" "far_key" => string(11) "category_id" "model" => string(8) "Category" ) "dopcategories" => array(4) ( "foreign_key" => string(13) "dopproduct_id" "through" => string(25) "dopproducts_dopcategories" "far_key" => string(11) "category_id" "model" => string(8) "Category" ) "galleries" => array(4) ( "foreign_key" => string(10) "product_id" "through" => string(18) "products_galleries" "far_key" => string(11) "gallerie_id" "model" => string(8) "Gallerie" ) ) protected _belongs_to => array(1) ( "main_img" => array(2) ( "foreign_key" => string(8) "image_id" "model" => string(5) "Image" ) ) protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(20) ( "id" => string(4) "1726" "meta_title" => string(0) "" "meta_keywords" => string(0) "" "meta_description" => string(0) "" "title" => string(14) "Стол V-122" "description" => string(955) "Стол в комплекте с опорами эллипсовидными 50019. <p>Столешница - ЛДСП 38 мм. Облицован противоударной кромкой ПВХ 2 м …" "description_small" => string(205) "Стол в комплекте с опорами эллипсовидными 50019. Столешница - ЛДСП 38 мм. Облицован противоударной кромкой ПВХ 2 мм." "cost" => string(4) "9696" "cost_spec" => string(1) "0" "status" => string(1) "1" "status_have" => string(1) "0" "spec" => string(1) "0" "image_id" => string(3) "219" "alias" => string(10) "Stol_V_122" "cost_opt" => string(4) "8754" "vol" => string(1) "0" "wt" => string(2) "25" "color_id" => string(1) "0" "imgbg_id" => string(1) "0" "fabric_id" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(20) ( "id" => string(4) "1726" "meta_title" => string(0) "" "meta_keywords" => string(0) "" "meta_description" => string(0) "" "title" => string(14) "Стол V-122" "description" => string(955) "Стол в комплекте с опорами эллипсовидными 50019. <p>Столешница - ЛДСП 38 мм. Облицован противоударной кромкой ПВХ 2 м …" "description_small" => string(205) "Стол в комплекте с опорами эллипсовидными 50019. Столешница - ЛДСП 38 мм. Облицован противоударной кромкой ПВХ 2 мм." "cost" => string(4) "9696" "cost_spec" => string(1) "0" "status" => string(1) "1" "status_have" => string(1) "0" "spec" => string(1) "0" "image_id" => string(3) "219" "alias" => string(10) "Stol_V_122" "cost_opt" => string(4) "8754" "vol" => string(1) "0" "wt" => string(2) "25" "color_id" => string(1) "0" "imgbg_id" => string(1) "0" "fabric_id" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "product" protected _object_plural => string(8) "products" protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key_value => string(4) "1726" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
"products" => object Database_MySQLi_Result(7){ protected _connection_id => string(40) "38eb4f700d8e178f1f5ca0c014d3457042a2241a" protected _identifier => string(1) "`" public last_query => string(151) "SELECT `image`.`id` AS `id`, `image`.`name` AS `name`, `image`.`product_id` AS `product_id` FROM `images` AS `image` WHERE `imag …" 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(7) "product" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(5) ( "hostname" => string(9) "localhost" "database" => string(5) "mebrf" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE ) }{ protected _internal_row => integer 0 protected _query => string(904) "SELECT `product`.`id` AS `id`, `product`.`meta_title` AS `meta_title`, `product`.`meta_keywords` AS `meta_keywords`, `product`.` …" protected _result => object mysqli_result(5)
"dop_products" => array(6) ( 0 => object Database_MySQLi_Result(7){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 4 protected _current_row => integer 0 protected _as_object => string(13) "Model_Product" protected _object_params => NULL }{ protected _internal_row => integer 6 protected _query => string(904) "SELECT `product`.`id` AS `id`, `product`.`meta_title` AS `meta_title`, `product`.`meta_keywords` AS `meta_keywords`, `product`.` …" protected _result => object mysqli_result(5)
1 => object Database_MySQLi_Result(7){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 6 protected _current_row => integer 6 protected _as_object => string(13) "Model_Product" protected _object_params => NULL }{ protected _internal_row => integer 5 protected _query => string(904) "SELECT `product`.`id` AS `id`, `product`.`meta_title` AS `meta_title`, `product`.`meta_keywords` AS `meta_keywords`, `product`.` …" protected _result => object mysqli_result(5)
2 => object Database_MySQLi_Result(7){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 5 protected _current_row => integer 5 protected _as_object => string(13) "Model_Product" protected _object_params => NULL }{ protected _internal_row => integer 4 protected _query => string(904) "SELECT `product`.`id` AS `id`, `product`.`meta_title` AS `meta_title`, `product`.`meta_keywords` AS `meta_keywords`, `product`.` …" protected _result => object mysqli_result(5)
3 => object Database_MySQLi_Result(7){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 4 protected _current_row => integer 4 protected _as_object => string(13) "Model_Product" protected _object_params => NULL }{ protected _internal_row => integer 6 protected _query => string(904) "SELECT `product`.`id` AS `id`, `product`.`meta_title` AS `meta_title`, `product`.`meta_keywords` AS `meta_keywords`, `product`.` …" protected _result => object mysqli_result(5)
4 => object Database_MySQLi_Result(7){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 9 protected _current_row => integer 5 protected _as_object => string(13) "Model_Product" protected _object_params => NULL }{ protected _internal_row => integer 0 protected _query => string(904) "SELECT `product`.`id` AS `id`, `product`.`meta_title` AS `meta_title`, `product`.`meta_keywords` AS `meta_keywords`, `product`.` …" protected _result => object mysqli_result(5)
5 => object Database_MySQLi_Result(7){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 10 protected _current_row => integer 0 protected _as_object => string(13) "Model_Product" protected _object_params => NULL }{ protected _internal_row => integer 0 protected _query => string(904) "SELECT `product`.`id` AS `id`, `product`.`meta_title` AS `meta_title`, `product`.`meta_keywords` AS `meta_keywords`, `product`.` …" protected _result => object mysqli_result(5)
) "images" => object Database_MySQLi_Result(7){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 6 protected _current_row => integer 0 protected _as_object => string(13) "Model_Product" protected _object_params => NULL }{ protected _internal_row => integer 4 protected _query => string(152) "SELECT `image`.`id` AS `id`, `image`.`name` AS `name`, `image`.`product_id` AS `product_id` FROM `images` AS `image` WHERE `imag …" protected _result => object mysqli_result(5)
"img_color" => object Database_MySQLi_Result(7){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 4 protected _current_row => integer 4 protected _as_object => string(11) "Model_Image" protected _object_params => NULL }{ protected _internal_row => integer 4 protected _query => string(201) "SELECT `imagegallerie`.`id` AS `id`, `imagegallerie`.`gallerie_id` AS `gallerie_id`, `imagegallerie`.`name` AS `name` FROM `imag …" protected _result => object mysqli_result(5)
"img_ton_derevo" => object Database_MySQLi_Result(7){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 4 protected _current_row => integer 4 protected _as_object => string(19) "Model_Imagegallerie" protected _object_params => NULL }{ protected _internal_row => integer 0 protected _query => string(202) "SELECT `imagegallerie`.`id` AS `id`, `imagegallerie`.`gallerie_id` AS `gallerie_id`, `imagegallerie`.`name` AS `name` FROM `imag …" protected _result => object mysqli_result(5)
"img_tkani" => object Database_MySQLi_Result(7){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 0 protected _current_row => integer 0 protected _as_object => string(19) "Model_Imagegallerie" protected _object_params => NULL }{ protected _internal_row => integer 0 protected _query => string(202) "SELECT `imagegallerie`.`id` AS `id`, `imagegallerie`.`gallerie_id` AS `gallerie_id`, `imagegallerie`.`name` AS `name` FROM `imag …" protected _result => object mysqli_result(5)
"img_vid_derevo" => object Database_MySQLi_Result(7){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 0 protected _current_row => integer 0 protected _as_object => string(19) "Model_Imagegallerie" protected _object_params => NULL }{ protected _internal_row => integer 0 protected _query => string(202) "SELECT `imagegallerie`.`id` AS `id`, `imagegallerie`.`gallerie_id` AS `gallerie_id`, `imagegallerie`.`name` AS `name` FROM `imag …" protected _result => object mysqli_result(5)
"img_komplect" => object Database_MySQLi_Result(7){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 0 protected _current_row => integer 0 protected _as_object => string(19) "Model_Imagegallerie" protected _object_params => NULL }{ protected _internal_row => integer 5 protected _query => string(201) "SELECT `imagegallerie`.`id` AS `id`, `imagegallerie`.`gallerie_id` AS `gallerie_id`, `imagegallerie`.`name` AS `name` FROM `imag …" protected _result => object mysqli_result(5)
"img_rezba" => object Database_MySQLi_Result(7){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 5 protected _current_row => integer 5 protected _as_object => string(19) "Model_Imagegallerie" protected _object_params => NULL }{ protected _internal_row => integer 0 protected _query => string(202) "SELECT `imagegallerie`.`id` AS `id`, `imagegallerie`.`gallerie_id` AS `gallerie_id`, `imagegallerie`.`name` AS `name` FROM `imag …" protected _result => object mysqli_result(5)
"category" => object Model_Category(39){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 0 protected _current_row => integer 0 protected _as_object => string(19) "Model_Imagegallerie" protected _object_params => NULL }{ protected _table_columns => array(15) ( "id" => NULL "meta_title" => NULL "meta_keywords" => NULL "meta_description" => NULL "h1" => NULL "cost" => NULL "text" => NULL "img" => NULL "title" => NULL "parent_id" => NULL "lft" => NULL "rgt" => NULL "lvl" => NULL "scope" => NULL "alias" => NULL ) protected _has_many => array(2) ( "products" => array(4) ( "foreign_key" => string(11) "category_id" "through" => string(19) "products_categories" "far_key" => string(10) "product_id" "model" => string(7) "Product" ) "dopproducts" => array(4) ( "foreign_key" => string(11) "category_id" "through" => string(25) "dopproducts_dopcategories" "far_key" => string(13) "dopproduct_id" "model" => string(7) "Product" ) ) public left_column => string(3) "lft" public right_column => string(3) "rgt" public level_column => string(3) "lvl" public scope_column => string(5) "scope" public parent_column => string(9) "parent_id" protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(3) "558" "meta_title" => string(59) "Столешницы приставные серии Public" "meta_keywords" => string(59) "Столешницы приставные серии Public" "meta_description" => string(59) "Столешницы приставные серии Public" "h1" => string(0) "" "cost" => string(0) "" "text" => string(0) "" "img" => string(20) "n7uqolpvr0y8swik.jpg" "title" => string(59) "Столешницы приставные серии Public" "parent_id" => string(3) "552" "lft" => string(1) "4" "rgt" => string(1) "5" "lvl" => string(1) "2" "scope" => string(2) "13" "alias" => string(35) "Stoleshnici_pristavnie_serii_Public" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(3) "558" "meta_title" => string(59) "Столешницы приставные серии Public" "meta_keywords" => string(59) "Столешницы приставные серии Public" "meta_description" => string(59) "Столешницы приставные серии Public" "h1" => string(0) "" "cost" => string(0) "" "text" => string(0) "" "img" => string(20) "n7uqolpvr0y8swik.jpg" "title" => string(59) "Столешницы приставные серии Public" "parent_id" => string(3) "552" "lft" => string(1) "4" "rgt" => string(1) "5" "lvl" => string(1) "2" "scope" => string(2) "13" "alias" => string(35) "Stoleshnici_pristavnie_serii_Public" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => array(1) ( "lft" => string(3) "ASC" ) protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "category" protected _object_plural => string(10) "categories" protected _table_name => string(10) "categories" protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "558" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
"categories_id" => object Database_MySQLi_Result(7){ protected _connection_id => string(40) "38eb4f700d8e178f1f5ca0c014d3457042a2241a" protected _identifier => string(1) "`" public last_query => string(151) "SELECT `image`.`id` AS `id`, `image`.`name` AS `name`, `image`.`product_id` AS `product_id` FROM `images` AS `image` WHERE `imag …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "category" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(5) ( "hostname" => string(9) "localhost" "database" => string(5) "mebrf" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE ) }{ protected _internal_row => integer 4 protected _query => string(713) "SELECT `category`.`id` AS `id`, `category`.`meta_title` AS `meta_title`, `category`.`meta_keywords` AS `meta_keywords`, `categor …" protected _result => object mysqli_result(5)
"h1" => string(14) "Стол V-122" "page_title" => string(285) "<a href="/">Главная</a> → <a href="/catalog">Каталог</a> → <a href="/catalog/Seriya_Public">Серия Public</a> → <a …" ){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 6 protected _current_row => integer 3 protected _as_object => string(14) "Model_Category" protected _object_params => NULL }354 { 355 throw new View_Exception('You must set the file to use within your view before rendering'); 356 } 357 358 // Combine local and global data and capture the output 359 return View::capture($this->_file, $this->_data); 360 } 361 362 }
-
SYSPATH/classes/Kohana/View.php [ 236 ] » Kohana_View->render()
231 */ 232 public function __toString() 233 { 234 try 235 { 236 return $this->render(); 237 } 238 catch (Exception $e) 239 { 240 /** 241 * Display the exception message.
-
APPPATH/views/index/v_base_main.php [ 20 ] » Kohana_View->__toString()
15 <body> 16 <div id="spanimg"></div> 17 <?=$topmenu?> 18 <?if(isset($block_center)):?> 19 <?foreach($block_center as $cblock):?> 20 <?=$cblock?> 21 <?endforeach?> 22 <?endif?> 23 <?foreach ($scripts as $file_script):?> 24 <?=html::script($file_script)?> 25 <?endforeach?>
-
SYSPATH/classes/Kohana/View.php [ 62 ] » include(arguments)
0
string(73) "/var/www/asgera/data/www/mebrf.ru/application/views/index/v_base_main.php"
57 ob_start(); 58 59 try 60 { 61 // Load the view within the current scope 62 include $kohana_view_filename; 63 } 64 catch (Exception $e) 65 { 66 // Delete the output buffer 67 ob_end_clean();
-
SYSPATH/classes/Kohana/View.php [ 359 ] » Kohana_View::capture(arguments)
0
string(73) "/var/www/asgera/data/www/mebrf.ru/application/views/index/v_base_main.php"
1
array(13) ( "site_name" => NULL "page_title" => NULL "h1" => NULL "title" => string(59) "Столешницы приставные серии Public" "keywords" => string(59) "Столешницы приставные серии Public" "description" => string(59) "Столешницы приставные серии Public" "styles" => array(17) ( 0 => string(58) "/media/assets/web/assets/mobirise-icons/mobirise-icons.css" 1 => string(47) "/media/assets/font-awesome/css/font-awesome.css" 2 => string(35) "/media/assets/tether/tether.min.css" 3 => string(41) "/media/assets/soundcloud-plugin/style.css" 4 => string(45) "/media/assets/bootstrap/css/bootstrap.min.css" 5 => string(50) "/media/assets/bootstrap/css/bootstrap-grid.min.css" 6 => string(52) "/media/assets/bootstrap/css/bootstrap-reboot.min.css" 7 => string(36) "/media/assets/dropdown/css/style.css" 8 => string(36) "/media/assets/socicon/css/styles.css" 9 => string(46) "/media/assets/formstyler/jquery.formstyler.css" 10 => string(52) "/media/assets/formstyler/jquery.formstyler.theme.css" 11 => string(33) "/media/assets/theme/css/style.css" 12 => string(45) "/media/assets/mobirise/css/mbr-additional.css" 13 => string(22) "/media/css/mystyle.css" 14 => string(24) "media/css/cloud-zoom.css" 15 => string(27) "media/css/style_miniBox.css" 16 => string(42) "media/swipermaster/dist/css/swiper.min.css" ) "scripts" => array(23) ( 0 => string(43) "https://code.jquery.com/jquery-1.8.2.min.js" 1 => string(33) "media/assets/popper/popper.min.js" 2 => string(33) "media/assets/tether/tether.min.js" 3 => string(42) "media/assets/bootstrap/js/bootstrap.min.js" 4 => string(55) "media/assets/cookies-alert-plugin/cookies-alert-core.js" 5 => string(57) "media/assets/cookies-alert-plugin/cookies-alert-script.js" 6 => string(38) "media/assets/dropdown/js/script.min.js" 7 => string(54) "media/assets/viewportchecker/jquery.viewportchecker.js" 8 => string(37) "media/assets/parallax/jarallax.min.js" 9 => string(44) "media/assets/formstyler/jquery.formstyler.js" 10 => string(48) "media/assets/formstyler/jquery.formstyler.min.js" 11 => string(42) "media/assets/smoothscroll/smooth-scroll.js" 12 => string(49) "media/assets/touchswipe/jquery.touch-swipe.min.js" 13 => string(31) "media/assets/theme/js/script.js" 14 => string(16) "media/js/send.js" 15 => string(23) "media/js/jquery.form.js" 16 => string(20) "media/js/ajaxForm.js" 17 => string(20) "media/js/cartForm.js" 18 => string(19) "media/js/miniBox.js" 19 => string(28) "media/js/cloud-zoom.1.0.2.js" 20 => string(23) "media/js/view_images.js" 21 => string(40) "media/swipermaster/dist/js/swiper.min.js" 22 => string(24) "media/js/swipermaster.js" ) "block_left" => NULL "block_center" => array(8) ( 0 => object View(2)
{ protected _file => string(84) "/var/www/asgera/data/www/mebrf.ru/application/views/index/catalog/v_catalog_view.php" protected _data => array(15) ( "check_favorite" => NULL "product" => object Model_Product(34)
1 => object Response(5){ protected _table_columns => array(20) ( "id" => NULL "meta_title" => NULL "meta_keywords" => NULL "meta_description" => NULL "title" => NULL "description" => NULL "description_small" => NULL "cost" => NULL "cost_spec" => NULL "status" => NULL "status_have" => NULL "spec" => NULL "image_id" => NULL "alias" => NULL "cost_opt" => NULL "vol" => NULL "wt" => NULL "color_id" => NULL "imgbg_id" => NULL "fabric_id" => NULL ) protected _table_name => string(8) "products" protected _primary_key => string(2) "id" protected _db_group => string(7) "default" protected _has_many => array(5) ( "comments" => array(4) ( "foreign_key" => string(10) "product_id" "through" => NULL "far_key" => string(10) "comment_id" "model" => string(7) "Comment" ) "images" => array(4) ( "foreign_key" => string(10) "product_id" "through" => NULL "far_key" => string(8) "image_id" "model" => string(5) "Image" ) "categories" => array(4) ( "foreign_key" => string(10) "product_id" "through" => string(19) "products_categories" "far_key" => string(11) "category_id" "model" => string(8) "Category" ) "dopcategories" => array(4) ( "foreign_key" => string(13) "dopproduct_id" "through" => string(25) "dopproducts_dopcategories" "far_key" => string(11) "category_id" "model" => string(8) "Category" ) "galleries" => array(4) ( "foreign_key" => string(10) "product_id" "through" => string(18) "products_galleries" "far_key" => string(11) "gallerie_id" "model" => string(8) "Gallerie" ) ) protected _belongs_to => array(1) ( "main_img" => array(2) ( "foreign_key" => string(8) "image_id" "model" => string(5) "Image" ) ) protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(20) ( "id" => string(4) "1726" "meta_title" => string(0) "" "meta_keywords" => string(0) "" "meta_description" => string(0) "" "title" => string(14) "Стол V-122" "description" => string(955) "Стол в комплекте с опорами эллипсовидными 50019. <p>Столешница - ЛДСП 38 мм. Облицован противоударной кромкой ПВХ 2 м …" "description_small" => string(205) "Стол в комплекте с опорами эллипсовидными 50019. Столешница - ЛДСП 38 мм. Облицован противоударной кромкой ПВХ 2 мм." "cost" => string(4) "9696" "cost_spec" => string(1) "0" "status" => string(1) "1" "status_have" => string(1) "0" "spec" => string(1) "0" "image_id" => string(3) "219" "alias" => string(10) "Stol_V_122" "cost_opt" => string(4) "8754" "vol" => string(1) "0" "wt" => string(2) "25" "color_id" => string(1) "0" "imgbg_id" => string(1) "0" "fabric_id" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(20) ( "id" => string(4) "1726" "meta_title" => string(0) "" "meta_keywords" => string(0) "" "meta_description" => string(0) "" "title" => string(14) "Стол V-122" "description" => string(955) "Стол в комплекте с опорами эллипсовидными 50019. <p>Столешница - ЛДСП 38 мм. Облицован противоударной кромкой ПВХ 2 м …" "description_small" => string(205) "Стол в комплекте с опорами эллипсовидными 50019. Столешница - ЛДСП 38 мм. Облицован противоударной кромкой ПВХ 2 мм." "cost" => string(4) "9696" "cost_spec" => string(1) "0" "status" => string(1) "1" "status_have" => string(1) "0" "spec" => string(1) "0" "image_id" => string(3) "219" "alias" => string(10) "Stol_V_122" "cost_opt" => string(4) "8754" "vol" => string(1) "0" "wt" => string(2) "25" "color_id" => string(1) "0" "imgbg_id" => string(1) "0" "fabric_id" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "product" protected _object_plural => string(8) "products" protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key_value => string(4) "1726" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
"products" => object Database_MySQLi_Result(7){ protected _connection_id => string(40) "38eb4f700d8e178f1f5ca0c014d3457042a2241a" protected _identifier => string(1) "`" public last_query => string(151) "SELECT `image`.`id` AS `id`, `image`.`name` AS `name`, `image`.`product_id` AS `product_id` FROM `images` AS `image` WHERE `imag …" 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(7) "product" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(5) ( "hostname" => string(9) "localhost" "database" => string(5) "mebrf" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE ) }{ protected _internal_row => integer 0 protected _query => string(904) "SELECT `product`.`id` AS `id`, `product`.`meta_title` AS `meta_title`, `product`.`meta_keywords` AS `meta_keywords`, `product`.` …" protected _result => object mysqli_result(5)
"dop_products" => array(6) ( 0 => object Database_MySQLi_Result(7){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 4 protected _current_row => integer 0 protected _as_object => string(13) "Model_Product" protected _object_params => NULL }{ protected _internal_row => integer 6 protected _query => string(904) "SELECT `product`.`id` AS `id`, `product`.`meta_title` AS `meta_title`, `product`.`meta_keywords` AS `meta_keywords`, `product`.` …" protected _result => object mysqli_result(5)
1 => object Database_MySQLi_Result(7){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 6 protected _current_row => integer 6 protected _as_object => string(13) "Model_Product" protected _object_params => NULL }{ protected _internal_row => integer 5 protected _query => string(904) "SELECT `product`.`id` AS `id`, `product`.`meta_title` AS `meta_title`, `product`.`meta_keywords` AS `meta_keywords`, `product`.` …" protected _result => object mysqli_result(5)
2 => object Database_MySQLi_Result(7){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 5 protected _current_row => integer 5 protected _as_object => string(13) "Model_Product" protected _object_params => NULL }{ protected _internal_row => integer 4 protected _query => string(904) "SELECT `product`.`id` AS `id`, `product`.`meta_title` AS `meta_title`, `product`.`meta_keywords` AS `meta_keywords`, `product`.` …" protected _result => object mysqli_result(5)
3 => object Database_MySQLi_Result(7){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 4 protected _current_row => integer 4 protected _as_object => string(13) "Model_Product" protected _object_params => NULL }{ protected _internal_row => integer 6 protected _query => string(904) "SELECT `product`.`id` AS `id`, `product`.`meta_title` AS `meta_title`, `product`.`meta_keywords` AS `meta_keywords`, `product`.` …" protected _result => object mysqli_result(5)
4 => object Database_MySQLi_Result(7){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 9 protected _current_row => integer 5 protected _as_object => string(13) "Model_Product" protected _object_params => NULL }{ protected _internal_row => integer 0 protected _query => string(904) "SELECT `product`.`id` AS `id`, `product`.`meta_title` AS `meta_title`, `product`.`meta_keywords` AS `meta_keywords`, `product`.` …" protected _result => object mysqli_result(5)
5 => object Database_MySQLi_Result(7){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 10 protected _current_row => integer 0 protected _as_object => string(13) "Model_Product" protected _object_params => NULL }{ protected _internal_row => integer 0 protected _query => string(904) "SELECT `product`.`id` AS `id`, `product`.`meta_title` AS `meta_title`, `product`.`meta_keywords` AS `meta_keywords`, `product`.` …" protected _result => object mysqli_result(5)
) "images" => object Database_MySQLi_Result(7){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 6 protected _current_row => integer 0 protected _as_object => string(13) "Model_Product" protected _object_params => NULL }{ protected _internal_row => integer 4 protected _query => string(152) "SELECT `image`.`id` AS `id`, `image`.`name` AS `name`, `image`.`product_id` AS `product_id` FROM `images` AS `image` WHERE `imag …" protected _result => object mysqli_result(5)
"img_color" => object Database_MySQLi_Result(7){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 4 protected _current_row => integer 4 protected _as_object => string(11) "Model_Image" protected _object_params => NULL }{ protected _internal_row => integer 4 protected _query => string(201) "SELECT `imagegallerie`.`id` AS `id`, `imagegallerie`.`gallerie_id` AS `gallerie_id`, `imagegallerie`.`name` AS `name` FROM `imag …" protected _result => object mysqli_result(5)
"img_ton_derevo" => object Database_MySQLi_Result(7){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 4 protected _current_row => integer 4 protected _as_object => string(19) "Model_Imagegallerie" protected _object_params => NULL }{ protected _internal_row => integer 0 protected _query => string(202) "SELECT `imagegallerie`.`id` AS `id`, `imagegallerie`.`gallerie_id` AS `gallerie_id`, `imagegallerie`.`name` AS `name` FROM `imag …" protected _result => object mysqli_result(5)
"img_tkani" => object Database_MySQLi_Result(7){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 0 protected _current_row => integer 0 protected _as_object => string(19) "Model_Imagegallerie" protected _object_params => NULL }{ protected _internal_row => integer 0 protected _query => string(202) "SELECT `imagegallerie`.`id` AS `id`, `imagegallerie`.`gallerie_id` AS `gallerie_id`, `imagegallerie`.`name` AS `name` FROM `imag …" protected _result => object mysqli_result(5)
"img_vid_derevo" => object Database_MySQLi_Result(7){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 0 protected _current_row => integer 0 protected _as_object => string(19) "Model_Imagegallerie" protected _object_params => NULL }{ protected _internal_row => integer 0 protected _query => string(202) "SELECT `imagegallerie`.`id` AS `id`, `imagegallerie`.`gallerie_id` AS `gallerie_id`, `imagegallerie`.`name` AS `name` FROM `imag …" protected _result => object mysqli_result(5)
"img_komplect" => object Database_MySQLi_Result(7){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 0 protected _current_row => integer 0 protected _as_object => string(19) "Model_Imagegallerie" protected _object_params => NULL }{ protected _internal_row => integer 5 protected _query => string(201) "SELECT `imagegallerie`.`id` AS `id`, `imagegallerie`.`gallerie_id` AS `gallerie_id`, `imagegallerie`.`name` AS `name` FROM `imag …" protected _result => object mysqli_result(5)
"img_rezba" => object Database_MySQLi_Result(7){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 5 protected _current_row => integer 5 protected _as_object => string(19) "Model_Imagegallerie" protected _object_params => NULL }{ protected _internal_row => integer 0 protected _query => string(202) "SELECT `imagegallerie`.`id` AS `id`, `imagegallerie`.`gallerie_id` AS `gallerie_id`, `imagegallerie`.`name` AS `name` FROM `imag …" protected _result => object mysqli_result(5)
"category" => object Model_Category(39){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 0 protected _current_row => integer 0 protected _as_object => string(19) "Model_Imagegallerie" protected _object_params => NULL }{ protected _table_columns => array(15) ( "id" => NULL "meta_title" => NULL "meta_keywords" => NULL "meta_description" => NULL "h1" => NULL "cost" => NULL "text" => NULL "img" => NULL "title" => NULL "parent_id" => NULL "lft" => NULL "rgt" => NULL "lvl" => NULL "scope" => NULL "alias" => NULL ) protected _has_many => array(2) ( "products" => array(4) ( "foreign_key" => string(11) "category_id" "through" => string(19) "products_categories" "far_key" => string(10) "product_id" "model" => string(7) "Product" ) "dopproducts" => array(4) ( "foreign_key" => string(11) "category_id" "through" => string(25) "dopproducts_dopcategories" "far_key" => string(13) "dopproduct_id" "model" => string(7) "Product" ) ) public left_column => string(3) "lft" public right_column => string(3) "rgt" public level_column => string(3) "lvl" public scope_column => string(5) "scope" public parent_column => string(9) "parent_id" protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(3) "558" "meta_title" => string(59) "Столешницы приставные серии Public" "meta_keywords" => string(59) "Столешницы приставные серии Public" "meta_description" => string(59) "Столешницы приставные серии Public" "h1" => string(0) "" "cost" => string(0) "" "text" => string(0) "" "img" => string(20) "n7uqolpvr0y8swik.jpg" "title" => string(59) "Столешницы приставные серии Public" "parent_id" => string(3) "552" "lft" => string(1) "4" "rgt" => string(1) "5" "lvl" => string(1) "2" "scope" => string(2) "13" "alias" => string(35) "Stoleshnici_pristavnie_serii_Public" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(3) "558" "meta_title" => string(59) "Столешницы приставные серии Public" "meta_keywords" => string(59) "Столешницы приставные серии Public" "meta_description" => string(59) "Столешницы приставные серии Public" "h1" => string(0) "" "cost" => string(0) "" "text" => string(0) "" "img" => string(20) "n7uqolpvr0y8swik.jpg" "title" => string(59) "Столешницы приставные серии Public" "parent_id" => string(3) "552" "lft" => string(1) "4" "rgt" => string(1) "5" "lvl" => string(1) "2" "scope" => string(2) "13" "alias" => string(35) "Stoleshnici_pristavnie_serii_Public" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => array(1) ( "lft" => string(3) "ASC" ) protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "category" protected _object_plural => string(10) "categories" protected _table_name => string(10) "categories" protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "558" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
"categories_id" => object Database_MySQLi_Result(7){ protected _connection_id => string(40) "38eb4f700d8e178f1f5ca0c014d3457042a2241a" protected _identifier => string(1) "`" public last_query => string(151) "SELECT `image`.`id` AS `id`, `image`.`name` AS `name`, `image`.`product_id` AS `product_id` FROM `images` AS `image` WHERE `imag …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "category" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(5) ( "hostname" => string(9) "localhost" "database" => string(5) "mebrf" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE ) }{ protected _internal_row => integer 4 protected _query => string(713) "SELECT `category`.`id` AS `id`, `category`.`meta_title` AS `meta_title`, `category`.`meta_keywords` AS `meta_keywords`, `categor …" protected _result => object mysqli_result(5)
"h1" => string(14) "Стол V-122" "page_title" => string(285) "<a href="/">Главная</a> → <a href="/catalog">Каталог</a> → <a href="/catalog/Seriya_Public">Серия Public</a> → <a …" ) }{ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 6 protected _current_row => integer 3 protected _as_object => string(14) "Model_Category" protected _object_params => NULL }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
2 => object Response(5){ }
protected _body => string(2860) "<section class="features2 cid-rcGzvRRBmH" id="features2-a"> <div class="container"> <h2 class="mbr-section-title pb- …" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.0" }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
3 => object Response(5){ }
protected _body => string(2896) "<section class="header3 cid-rcGBwHXL5A mbr-parallax-background" id="header3-d"> <div class="mbr-overlay" style="opacity: 0.5 …" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.0" }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
4 => object Response(5){ }
protected _body => string(1450) "<section class="content1 cid-rcGzdgVMy9" id="content1-8"> <div class="container"> <h2 class="mbr-section-title pb-3 …" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.0" }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
5 => object Response(5){ }
protected _body => string(2525) "<section class="features4 counters cid-rcGz7tyA0g" id="features4-7"> <div class="container"> <div class="row justify …" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.0" }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
6 => object Response(5){ }
protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.0" }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
7 => object Response(5){ }
protected _body => string(2051) "<section> <style> #map { width: 100%; height: 500px; } .popup { color: white; font-family: Ver …" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.0" }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
) "block_right" => NULL "block_footer" => NULL "topmenu" => object Response(5){ }
protected _body => string(4205) "<section class="footer1 cid-rcGyNG2Zzi" id="footer1-4"> <div class="container"> <div class="row"> <div c …" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.0" }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
){ }
protected _body => string(12023) "<section class="menu cid-rcGxXjA9uq" once="menu" id="menu1-0"> <nav class="navbar navbar-dropdown align-items-center navbar- …" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.0" }354 { 355 throw new View_Exception('You must set the file to use within your view before rendering'); 356 } 357 358 // Combine local and global data and capture the output 359 return View::capture($this->_file, $this->_data); 360 } 361 362 }
-
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_Index_Catalog(6)
{ public template => object View(2)
{ protected _file => string(73) "/var/www/asgera/data/www/mebrf.ru/application/views/index/v_base_main.php" protected _data => array(13) ( "site_name" => NULL "page_title" => NULL "h1" => NULL "title" => string(59) "Столешницы приставные серии Public" "keywords" => string(59) "Столешницы приставные серии Public" "description" => string(59) "Столешницы приставные серии Public" "styles" => array(17) ( 0 => string(58) "/media/assets/web/assets/mobirise-icons/mobirise-icons.css" 1 => string(47) "/media/assets/font-awesome/css/font-awesome.css" 2 => string(35) "/media/assets/tether/tether.min.css" 3 => string(41) "/media/assets/soundcloud-plugin/style.css" 4 => string(45) "/media/assets/bootstrap/css/bootstrap.min.css" 5 => string(50) "/media/assets/bootstrap/css/bootstrap-grid.min.css" 6 => string(52) "/media/assets/bootstrap/css/bootstrap-reboot.min.css" 7 => string(36) "/media/assets/dropdown/css/style.css" 8 => string(36) "/media/assets/socicon/css/styles.css" 9 => string(46) "/media/assets/formstyler/jquery.formstyler.css" 10 => string(52) "/media/assets/formstyler/jquery.formstyler.theme.css" 11 => string(33) "/media/assets/theme/css/style.css" 12 => string(45) "/media/assets/mobirise/css/mbr-additional.css" 13 => string(22) "/media/css/mystyle.css" 14 => string(24) "media/css/cloud-zoom.css" 15 => string(27) "media/css/style_miniBox.css" 16 => string(42) "media/swipermaster/dist/css/swiper.min.css" ) "scripts" => array(23) ( 0 => string(43) "https://code.jquery.com/jquery-1.8.2.min.js" 1 => string(33) "media/assets/popper/popper.min.js" 2 => string(33) "media/assets/tether/tether.min.js" 3 => string(42) "media/assets/bootstrap/js/bootstrap.min.js" 4 => string(55) "media/assets/cookies-alert-plugin/cookies-alert-core.js" 5 => string(57) "media/assets/cookies-alert-plugin/cookies-alert-script.js" 6 => string(38) "media/assets/dropdown/js/script.min.js" 7 => string(54) "media/assets/viewportchecker/jquery.viewportchecker.js" 8 => string(37) "media/assets/parallax/jarallax.min.js" 9 => string(44) "media/assets/formstyler/jquery.formstyler.js" 10 => string(48) "media/assets/formstyler/jquery.formstyler.min.js" 11 => string(42) "media/assets/smoothscroll/smooth-scroll.js" 12 => string(49) "media/assets/touchswipe/jquery.touch-swipe.min.js" 13 => string(31) "media/assets/theme/js/script.js" 14 => string(16) "media/js/send.js" 15 => string(23) "media/js/jquery.form.js" 16 => string(20) "media/js/ajaxForm.js" 17 => string(20) "media/js/cartForm.js" 18 => string(19) "media/js/miniBox.js" 19 => string(28) "media/js/cloud-zoom.1.0.2.js" 20 => string(23) "media/js/view_images.js" 21 => string(40) "media/swipermaster/dist/js/swiper.min.js" 22 => string(24) "media/js/swipermaster.js" ) "block_left" => NULL "block_center" => array(8) ( 0 => object View(2)
public auto_render => bool TRUE public request => object Request(19){ protected _file => string(84) "/var/www/asgera/data/www/mebrf.ru/application/views/index/catalog/v_catalog_view.php" protected _data => array(15) ( "check_favorite" => NULL "product" => object Model_Product(34)
1 => object Response(5){ protected _table_columns => array(20) ( "id" => NULL "meta_title" => NULL "meta_keywords" => NULL "meta_description" => NULL "title" => NULL "description" => NULL "description_small" => NULL "cost" => NULL "cost_spec" => NULL "status" => NULL "status_have" => NULL "spec" => NULL "image_id" => NULL "alias" => NULL "cost_opt" => NULL "vol" => NULL "wt" => NULL "color_id" => NULL "imgbg_id" => NULL "fabric_id" => NULL ) protected _table_name => string(8) "products" protected _primary_key => string(2) "id" protected _db_group => string(7) "default" protected _has_many => array(5) ( "comments" => array(4) ( "foreign_key" => string(10) "product_id" "through" => NULL "far_key" => string(10) "comment_id" "model" => string(7) "Comment" ) "images" => array(4) ( "foreign_key" => string(10) "product_id" "through" => NULL "far_key" => string(8) "image_id" "model" => string(5) "Image" ) "categories" => array(4) ( "foreign_key" => string(10) "product_id" "through" => string(19) "products_categories" "far_key" => string(11) "category_id" "model" => string(8) "Category" ) "dopcategories" => array(4) ( "foreign_key" => string(13) "dopproduct_id" "through" => string(25) "dopproducts_dopcategories" "far_key" => string(11) "category_id" "model" => string(8) "Category" ) "galleries" => array(4) ( "foreign_key" => string(10) "product_id" "through" => string(18) "products_galleries" "far_key" => string(11) "gallerie_id" "model" => string(8) "Gallerie" ) ) protected _belongs_to => array(1) ( "main_img" => array(2) ( "foreign_key" => string(8) "image_id" "model" => string(5) "Image" ) ) protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(20) ( "id" => string(4) "1726" "meta_title" => string(0) "" "meta_keywords" => string(0) "" "meta_description" => string(0) "" "title" => string(14) "Стол V-122" "description" => string(955) "Стол в комплекте с опорами эллипсовидными 50019. <p>Столешница - ЛДСП 38 мм. Облицован противоударной кромкой ПВХ 2 м …" "description_small" => string(205) "Стол в комплекте с опорами эллипсовидными 50019. Столешница - ЛДСП 38 мм. Облицован противоударной кромкой ПВХ 2 мм." "cost" => string(4) "9696" "cost_spec" => string(1) "0" "status" => string(1) "1" "status_have" => string(1) "0" "spec" => string(1) "0" "image_id" => string(3) "219" "alias" => string(10) "Stol_V_122" "cost_opt" => string(4) "8754" "vol" => string(1) "0" "wt" => string(2) "25" "color_id" => string(1) "0" "imgbg_id" => string(1) "0" "fabric_id" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(20) ( "id" => string(4) "1726" "meta_title" => string(0) "" "meta_keywords" => string(0) "" "meta_description" => string(0) "" "title" => string(14) "Стол V-122" "description" => string(955) "Стол в комплекте с опорами эллипсовидными 50019. <p>Столешница - ЛДСП 38 мм. Облицован противоударной кромкой ПВХ 2 м …" "description_small" => string(205) "Стол в комплекте с опорами эллипсовидными 50019. Столешница - ЛДСП 38 мм. Облицован противоударной кромкой ПВХ 2 мм." "cost" => string(4) "9696" "cost_spec" => string(1) "0" "status" => string(1) "1" "status_have" => string(1) "0" "spec" => string(1) "0" "image_id" => string(3) "219" "alias" => string(10) "Stol_V_122" "cost_opt" => string(4) "8754" "vol" => string(1) "0" "wt" => string(2) "25" "color_id" => string(1) "0" "imgbg_id" => string(1) "0" "fabric_id" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "product" protected _object_plural => string(8) "products" protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key_value => string(4) "1726" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
"products" => object Database_MySQLi_Result(7){ protected _connection_id => string(40) "38eb4f700d8e178f1f5ca0c014d3457042a2241a" protected _identifier => string(1) "`" public last_query => string(151) "SELECT `image`.`id` AS `id`, `image`.`name` AS `name`, `image`.`product_id` AS `product_id` FROM `images` AS `image` WHERE `imag …" 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(7) "product" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(5) ( "hostname" => string(9) "localhost" "database" => string(5) "mebrf" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE ) }{ protected _internal_row => integer 0 protected _query => string(904) "SELECT `product`.`id` AS `id`, `product`.`meta_title` AS `meta_title`, `product`.`meta_keywords` AS `meta_keywords`, `product`.` …" protected _result => object mysqli_result(5)
"dop_products" => array(6) ( 0 => object Database_MySQLi_Result(7){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 4 protected _current_row => integer 0 protected _as_object => string(13) "Model_Product" protected _object_params => NULL }{ protected _internal_row => integer 6 protected _query => string(904) "SELECT `product`.`id` AS `id`, `product`.`meta_title` AS `meta_title`, `product`.`meta_keywords` AS `meta_keywords`, `product`.` …" protected _result => object mysqli_result(5)
1 => object Database_MySQLi_Result(7){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 6 protected _current_row => integer 6 protected _as_object => string(13) "Model_Product" protected _object_params => NULL }{ protected _internal_row => integer 5 protected _query => string(904) "SELECT `product`.`id` AS `id`, `product`.`meta_title` AS `meta_title`, `product`.`meta_keywords` AS `meta_keywords`, `product`.` …" protected _result => object mysqli_result(5)
2 => object Database_MySQLi_Result(7){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 5 protected _current_row => integer 5 protected _as_object => string(13) "Model_Product" protected _object_params => NULL }{ protected _internal_row => integer 4 protected _query => string(904) "SELECT `product`.`id` AS `id`, `product`.`meta_title` AS `meta_title`, `product`.`meta_keywords` AS `meta_keywords`, `product`.` …" protected _result => object mysqli_result(5)
3 => object Database_MySQLi_Result(7){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 4 protected _current_row => integer 4 protected _as_object => string(13) "Model_Product" protected _object_params => NULL }{ protected _internal_row => integer 6 protected _query => string(904) "SELECT `product`.`id` AS `id`, `product`.`meta_title` AS `meta_title`, `product`.`meta_keywords` AS `meta_keywords`, `product`.` …" protected _result => object mysqli_result(5)
4 => object Database_MySQLi_Result(7){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 9 protected _current_row => integer 5 protected _as_object => string(13) "Model_Product" protected _object_params => NULL }{ protected _internal_row => integer 0 protected _query => string(904) "SELECT `product`.`id` AS `id`, `product`.`meta_title` AS `meta_title`, `product`.`meta_keywords` AS `meta_keywords`, `product`.` …" protected _result => object mysqli_result(5)
5 => object Database_MySQLi_Result(7){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 10 protected _current_row => integer 0 protected _as_object => string(13) "Model_Product" protected _object_params => NULL }{ protected _internal_row => integer 0 protected _query => string(904) "SELECT `product`.`id` AS `id`, `product`.`meta_title` AS `meta_title`, `product`.`meta_keywords` AS `meta_keywords`, `product`.` …" protected _result => object mysqli_result(5)
) "images" => object Database_MySQLi_Result(7){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 6 protected _current_row => integer 0 protected _as_object => string(13) "Model_Product" protected _object_params => NULL }{ protected _internal_row => integer 4 protected _query => string(152) "SELECT `image`.`id` AS `id`, `image`.`name` AS `name`, `image`.`product_id` AS `product_id` FROM `images` AS `image` WHERE `imag …" protected _result => object mysqli_result(5)
"img_color" => object Database_MySQLi_Result(7){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 4 protected _current_row => integer 4 protected _as_object => string(11) "Model_Image" protected _object_params => NULL }{ protected _internal_row => integer 4 protected _query => string(201) "SELECT `imagegallerie`.`id` AS `id`, `imagegallerie`.`gallerie_id` AS `gallerie_id`, `imagegallerie`.`name` AS `name` FROM `imag …" protected _result => object mysqli_result(5)
"img_ton_derevo" => object Database_MySQLi_Result(7){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 4 protected _current_row => integer 4 protected _as_object => string(19) "Model_Imagegallerie" protected _object_params => NULL }{ protected _internal_row => integer 0 protected _query => string(202) "SELECT `imagegallerie`.`id` AS `id`, `imagegallerie`.`gallerie_id` AS `gallerie_id`, `imagegallerie`.`name` AS `name` FROM `imag …" protected _result => object mysqli_result(5)
"img_tkani" => object Database_MySQLi_Result(7){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 0 protected _current_row => integer 0 protected _as_object => string(19) "Model_Imagegallerie" protected _object_params => NULL }{ protected _internal_row => integer 0 protected _query => string(202) "SELECT `imagegallerie`.`id` AS `id`, `imagegallerie`.`gallerie_id` AS `gallerie_id`, `imagegallerie`.`name` AS `name` FROM `imag …" protected _result => object mysqli_result(5)
"img_vid_derevo" => object Database_MySQLi_Result(7){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 0 protected _current_row => integer 0 protected _as_object => string(19) "Model_Imagegallerie" protected _object_params => NULL }{ protected _internal_row => integer 0 protected _query => string(202) "SELECT `imagegallerie`.`id` AS `id`, `imagegallerie`.`gallerie_id` AS `gallerie_id`, `imagegallerie`.`name` AS `name` FROM `imag …" protected _result => object mysqli_result(5)
"img_komplect" => object Database_MySQLi_Result(7){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 0 protected _current_row => integer 0 protected _as_object => string(19) "Model_Imagegallerie" protected _object_params => NULL }{ protected _internal_row => integer 5 protected _query => string(201) "SELECT `imagegallerie`.`id` AS `id`, `imagegallerie`.`gallerie_id` AS `gallerie_id`, `imagegallerie`.`name` AS `name` FROM `imag …" protected _result => object mysqli_result(5)
"img_rezba" => object Database_MySQLi_Result(7){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 5 protected _current_row => integer 5 protected _as_object => string(19) "Model_Imagegallerie" protected _object_params => NULL }{ protected _internal_row => integer 0 protected _query => string(202) "SELECT `imagegallerie`.`id` AS `id`, `imagegallerie`.`gallerie_id` AS `gallerie_id`, `imagegallerie`.`name` AS `name` FROM `imag …" protected _result => object mysqli_result(5)
"category" => object Model_Category(39){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 0 protected _current_row => integer 0 protected _as_object => string(19) "Model_Imagegallerie" protected _object_params => NULL }{ protected _table_columns => array(15) ( "id" => NULL "meta_title" => NULL "meta_keywords" => NULL "meta_description" => NULL "h1" => NULL "cost" => NULL "text" => NULL "img" => NULL "title" => NULL "parent_id" => NULL "lft" => NULL "rgt" => NULL "lvl" => NULL "scope" => NULL "alias" => NULL ) protected _has_many => array(2) ( "products" => array(4) ( "foreign_key" => string(11) "category_id" "through" => string(19) "products_categories" "far_key" => string(10) "product_id" "model" => string(7) "Product" ) "dopproducts" => array(4) ( "foreign_key" => string(11) "category_id" "through" => string(25) "dopproducts_dopcategories" "far_key" => string(13) "dopproduct_id" "model" => string(7) "Product" ) ) public left_column => string(3) "lft" public right_column => string(3) "rgt" public level_column => string(3) "lvl" public scope_column => string(5) "scope" public parent_column => string(9) "parent_id" protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(3) "558" "meta_title" => string(59) "Столешницы приставные серии Public" "meta_keywords" => string(59) "Столешницы приставные серии Public" "meta_description" => string(59) "Столешницы приставные серии Public" "h1" => string(0) "" "cost" => string(0) "" "text" => string(0) "" "img" => string(20) "n7uqolpvr0y8swik.jpg" "title" => string(59) "Столешницы приставные серии Public" "parent_id" => string(3) "552" "lft" => string(1) "4" "rgt" => string(1) "5" "lvl" => string(1) "2" "scope" => string(2) "13" "alias" => string(35) "Stoleshnici_pristavnie_serii_Public" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(3) "558" "meta_title" => string(59) "Столешницы приставные серии Public" "meta_keywords" => string(59) "Столешницы приставные серии Public" "meta_description" => string(59) "Столешницы приставные серии Public" "h1" => string(0) "" "cost" => string(0) "" "text" => string(0) "" "img" => string(20) "n7uqolpvr0y8swik.jpg" "title" => string(59) "Столешницы приставные серии Public" "parent_id" => string(3) "552" "lft" => string(1) "4" "rgt" => string(1) "5" "lvl" => string(1) "2" "scope" => string(2) "13" "alias" => string(35) "Stoleshnici_pristavnie_serii_Public" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => array(1) ( "lft" => string(3) "ASC" ) protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "category" protected _object_plural => string(10) "categories" protected _table_name => string(10) "categories" protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "558" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
"categories_id" => object Database_MySQLi_Result(7){ protected _connection_id => string(40) "38eb4f700d8e178f1f5ca0c014d3457042a2241a" protected _identifier => string(1) "`" public last_query => string(151) "SELECT `image`.`id` AS `id`, `image`.`name` AS `name`, `image`.`product_id` AS `product_id` FROM `images` AS `image` WHERE `imag …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "category" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(5) ( "hostname" => string(9) "localhost" "database" => string(5) "mebrf" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE ) }{ protected _internal_row => integer 4 protected _query => string(713) "SELECT `category`.`id` AS `id`, `category`.`meta_title` AS `meta_title`, `category`.`meta_keywords` AS `meta_keywords`, `categor …" protected _result => object mysqli_result(5)
"h1" => string(14) "Стол V-122" "page_title" => string(285) "<a href="/">Главная</a> → <a href="/catalog">Каталог</a> → <a href="/catalog/Seriya_Public">Серия Public</a> → <a …" ) }{ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 6 protected _current_row => integer 3 protected _as_object => string(14) "Model_Category" protected _object_params => NULL }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
2 => object Response(5){ }
protected _body => string(2860) "<section class="features2 cid-rcGzvRRBmH" id="features2-a"> <div class="container"> <h2 class="mbr-section-title pb- …" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.0" }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
3 => object Response(5){ }
protected _body => string(2896) "<section class="header3 cid-rcGBwHXL5A mbr-parallax-background" id="header3-d"> <div class="mbr-overlay" style="opacity: 0.5 …" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.0" }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
4 => object Response(5){ }
protected _body => string(1450) "<section class="content1 cid-rcGzdgVMy9" id="content1-8"> <div class="container"> <h2 class="mbr-section-title pb-3 …" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.0" }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
5 => object Response(5){ }
protected _body => string(2525) "<section class="features4 counters cid-rcGz7tyA0g" id="features4-7"> <div class="container"> <div class="row justify …" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.0" }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
6 => object Response(5){ }
protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.0" }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
7 => object Response(5){ }
protected _body => string(2051) "<section> <style> #map { width: 100%; height: 500px; } .popup { color: white; font-family: Ver …" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.0" }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
) "block_right" => NULL "block_footer" => NULL "topmenu" => object Response(5){ }
protected _body => string(4205) "<section class="footer1 cid-rcGyNG2Zzi" id="footer1-4"> <div class="container"> <div class="row"> <div c …" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.0" }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
) }{ }
protected _body => string(12023) "<section class="menu cid-rcGxXjA9uq" once="menu" id="menu1-0"> <nav class="navbar navbar-dropdown align-items-center navbar- …" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.0" }{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.0" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5)
public response => object Response(5){ protected _filters => array(0) protected _uri => string(37) "catalog((/<alias>)(/<product_alias>))" protected _regex => array(0) protected _defaults => array(3) ( "directory" => string(5) "index" "action" => string(5) "index" "controller" => string(7) "catalog" ) protected _route_regex => string(84) "#^catalog(?:(?:/(?P<alias>[^/.,;?\n]++))?(?:/(?P<product_alias>[^/.,;?\n]++))?)?$#uD" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(5) "Index" protected _controller => string(7) "Catalog" protected _action => string(5) "index" protected _uri => string(54) "catalog/Stoleshnici_pristavnie_serii_Public/Stol_V_122" protected _external => bool FALSE protected _params => array(2) ( "alias" => string(35) "Stoleshnici_pristavnie_serii_Public" "product_alias" => string(10) "Stol_V_122" ) 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)
public auth => object Auth_ORM(2){ }
protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.0" }{ protected _session => object Session_Native(5)
public user => NULL }{ protected _name => string(7) "session" protected _lifetime => integer 0 protected _encrypted => bool FALSE protected _data => array(0) protected _destroyed => bool FALSE }
protected _config => object Config_Group(7){ public driver => string(3) "ORM" public hash_method => string(6) "sha256" public hash_key => string(25) "msasdfgad4dhkgk58wnalpfis" public lifetime => integer 1209600 public session_type => string(6) "native" public session_key => string(9) "auth_user" public users => array(0) }
}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.0" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5)
{ protected _filters => array(0) protected _uri => string(37) "catalog((/<alias>)(/<product_alias>))" protected _regex => array(0) protected _defaults => array(3) ( "directory" => string(5) "index" "action" => string(5) "index" "controller" => string(7) "catalog" ) protected _route_regex => string(84) "#^catalog(?:(?:/(?P<alias>[^/.,;?\n]++))?(?:/(?P<product_alias>[^/.,;?\n]++))?)?$#uD" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(5) "Index" protected _controller => string(7) "Catalog" protected _action => string(5) "index" protected _uri => string(54) "catalog/Stoleshnici_pristavnie_serii_Public/Stol_V_122" protected _external => bool FALSE protected _params => array(2) ( "alias" => string(35) "Stoleshnici_pristavnie_serii_Public" "product_alias" => string(10) "Stol_V_122" ) 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.0" }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 [ 997 ] » Kohana_Request_Client->execute(arguments)
0
object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.0" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5)
{ protected _filters => array(0) protected _uri => string(37) "catalog((/<alias>)(/<product_alias>))" protected _regex => array(0) protected _defaults => array(3) ( "directory" => string(5) "index" "action" => string(5) "index" "controller" => string(7) "catalog" ) protected _route_regex => string(84) "#^catalog(?:(?:/(?P<alias>[^/.,;?\n]++))?(?:/(?P<product_alias>[^/.,;?\n]++))?)?$#uD" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(5) "Index" protected _controller => string(7) "Catalog" protected _action => string(5) "index" protected _uri => string(54) "catalog/Stoleshnici_pristavnie_serii_Public/Stol_V_122" protected _external => bool FALSE protected _params => array(2) ( "alias" => string(35) "Stoleshnici_pristavnie_serii_Public" "product_alias" => string(10) "Stol_V_122" ) 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) }
}992 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array( 993 ':uri' => $this->_uri, 994 )); 995 } 996 997 return $this->_client->execute($this); 998 } 999 1000 /** 1001 * Returns whether this request is the initial request Kohana received. 1002 * Can be used to test for sub requests.
-
DOCROOT/index.php [ 120 ] » Kohana_Request->execute()
115 /** 116 * Execute the main request. A source of the URI can be passed, eg: $_SERVER['PATH_INFO']. 117 * If no source is specified, the URI will be automatically detected. 118 */ 119 echo Request::factory(TRUE, array(), FALSE) 120 ->execute() 121 ->send_headers(TRUE) 122 ->body(); 123 }