MODPATH/database/classes/Kohana/Database/MySQL.php [ 194 ]
189 {
190 // This benchmark is worthless
191 Profiler::delete($benchmark);
192 }
193
194 throw new Database_Exception(':error [ :query ]',
195 array(':error' => mysql_error($this->_connection), ':query' => $sql),
196 mysql_errno($this->_connection));
197 }
198
199 if (isset($benchmark))
-
MODPATH/database/classes/Kohana/Database/Query.php [ 251 ] » Kohana_Database_MySQL->query(arguments)
0
integer 2
1
string(41) "INSERT INTO `blogs` (`slug`) VALUES ('-')"
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 [ 1344 ] » Kohana_Database_Query->execute(arguments)
0
object Database_MySQL(6)
{ protected _connection_id => string(40) "afa87c2a70b17d84d678da00c2fbd1089b02c2de" protected _identifier => string(1) "`" public last_query => string(268) "SELECT `language`.`id` AS `id`, `language`.`name` AS `name`, `language`.`active` AS `active`, `language`.`iso_code` AS `iso_code …" protected _instance => string(7) "default" protected _connection => resource(mysql link) protected _config => array(6) ( "type" => string(5) "MySQL" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(13) "admin_domexpo" "persistent" => string(0) "" ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool TRUE ) }
1339 } 1340 1341 $result = DB::insert($this->_table_name) 1342 ->columns(array_keys($data)) 1343 ->values(array_values($data)) 1344 ->execute($this->_db); 1345 1346 if ( ! array_key_exists($this->_primary_key, $data)) 1347 { 1348 // Load the insert id as the primary key if it was left out 1349 $this->_object[$this->_primary_key] = $this->_primary_key_value = $result[0];
-
MODPATH/orm/classes/Kohana/ORM.php [ 1441 ] » Kohana_ORM->create(arguments)
0
NULL
1436 * @param Validation $validation Validation object 1437 * @return ORM 1438 */ 1439 public function save(Validation $validation = NULL) 1440 { 1441 return $this->loaded() ? $this->update($validation) : $this->create($validation); 1442 } 1443 1444 /** 1445 * Deletes a single record while ignoring relationships. 1446 *
-
APPPATH/classes/Model/blog.php [ 32 ] » Kohana_ORM->save()
27 // delete too much - if near 28 $sText = preg_replace('/[\-]+/', '-', $sText); 29 // trim - 30 $sText = trim($sText, '-'); 31 $this->slug = $sText.'-'.$this->id; 32 $this->save(); 33 return $sText.'-'.$this->id; 34 } 35 36 public function convert_string($str){ 37 $repl=array(
-
APPPATH/classes/Model/blog.php [ 13 ] » Model_Blog->create_slug()
8 public function get_url($manufacturer_slug = false){ 9 $function = ORM::factory('function'); 10 //$slug = ORM::factory('product_lang')->where('id_product', '=', $this->id)->where('id_lang','=', ORM::factory('function')->get_lang()->id)->find()->slug; 11 $slug = $this->slug; 12 if(!$slug){ 13 return $this->create_slug(); 14 } 15 return $function->get_friendly_url('Blog/Details').'/'.ucfirst($slug); 16 } 17 public function create_slug(){ 18 $string = $this->name;
-
APPPATH/views/Blog/Details.php [ 6 ] » Model_Blog->get_url()
1 <div class="mj-subcontainer"> 2 <div style="width: 65%;float: left; padding-right: 5%;"> 3 <div class="postWrapper"> 4 <div class="postContentWrapper"> 5 <div class="postTitle"> 6 <h2><a href="<?php echo $blog->get_url();?>"><?php echo $blog->name;?></a></h2> 7 <h3 class="blog-date"> 8 <div class="inner"> 9 <span class="day"><?php echo $blog->add_date;?></span> 10 </div> 11 </h3>
-
SYSPATH/classes/Kohana/View.php [ 61 ] » include(arguments)
0
string(79) "/home/domexpo/domains/domexpo.eu/public_html/application/views/Blog/Details.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(79) "/home/domexpo/domains/domexpo.eu/public_html/application/views/Blog/Details.php"
1
array(2) ( "blog" => object Model_Blog(34)
{ protected _has_one => array(0) protected _belongs_to => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => object Validation(6)
"pocket_menu" => object View(2){ protected _bound => array(5) ( ":model" => object Model_Blog(34) { *RECURSION* } ":original_values" => array(0) ":changed" => array(1) ( "slug" => string(4) "slug" ) ":validation" => object Validation(6) { *RECURSION* } ":data" => array(13) ( "id" => NULL "photo" => NULL "movie" => NULL "name" => NULL "description" => NULL "add_date" => NULL "id_lang" => NULL "meta_description" => NULL "keywords" => NULL "slug" => string(1) "-" "id_shop" => NULL "thumb" => NULL "webp" => NULL ) ) protected _rules => array(0) protected _labels => array(13) ( "id" => string(2) "id" "photo" => string(5) "photo" "movie" => string(5) "movie" "name" => string(4) "name" "description" => string(11) "description" "add_date" => string(8) "add_date" "id_lang" => string(7) "id_lang" "meta_description" => string(16) "meta_description" "keywords" => string(8) "keywords" "slug" => string(4) "slug" "id_shop" => string(7) "id_shop" "thumb" => string(5) "thumb" "webp" => string(4) "webp" ) protected _empty_rules => array(2) ( 0 => string(9) "not_empty" 1 => string(7) "matches" ) protected _errors => array(0) protected _data => array(13) ( "id" => NULL "photo" => NULL "movie" => NULL "name" => NULL "description" => NULL "add_date" => NULL "id_lang" => NULL "meta_description" => NULL "keywords" => NULL "slug" => string(1) "-" "id_shop" => NULL "thumb" => NULL "webp" => NULL ) }
protected _object => array(13) ( "id" => NULL "photo" => NULL "movie" => NULL "name" => NULL "description" => NULL "add_date" => NULL "id_lang" => NULL "meta_description" => NULL "keywords" => NULL "slug" => string(1) "-" "id_shop" => NULL "thumb" => NULL "webp" => NULL ) protected _changed => array(1) ( "slug" => string(4) "slug" ) protected _original_values => array(0) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool FALSE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "blog" protected _object_plural => string(5) "blogs" protected _table_name => string(5) "blogs" protected _table_columns => array(13) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "photo" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "photo" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "movie" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "movie" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "add_date" => array(10) ( "type" => string(6) "string" "column_name" => string(8) "add_date" "column_default" => NULL "data_type" => string(4) "date" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "id_lang" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "id_lang" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "meta_description" => array(12) ( "type" => string(6) "string" "column_name" => string(16) "meta_description" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "800" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "keywords" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "character_maximum_length" => string(3) "800" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "id_shop" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "id_shop" "column_default" => string(1) "1" "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(31) "select,insert,update,references" ) "thumb" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "thumb" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "character_maximum_length" => string(3) "200" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "webp" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "webp" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "200" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => NULL protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQL(6){ protected _connection_id => string(40) "afa87c2a70b17d84d678da00c2fbd1089b02c2de" protected _identifier => string(1) "`" public last_query => string(268) "SELECT `language`.`id` AS `id`, `language`.`name` AS `name`, `language`.`active` AS `active`, `language`.`iso_code` AS `iso_code …" protected _instance => string(7) "default" protected _connection => resource(mysql link) protected _config => array(6) ( "type" => string(5) "MySQL" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(13) "admin_domexpo" "persistent" => string(0) "" ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool TRUE ) }
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "blog" }{ protected _file => string(88) "/home/domexpo/domains/domexpo.eu/public_html/application/views//Templates/PocketMenu.php" protected _data => array(0) }
)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 } // End View
-
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.
-
APPPATH/views/Templates/Index.php [ 137 ] » Kohana_View->__toString()
132 <!-- <div id="main_content">--> 133 <?php 134 if (is_object($content)) { 135 $content->pocket_menu = isset($pocket_menu) ? $pocket_menu : ''; 136 } 137 echo $content; 138 ?> 139 <!-- Pull Out Banner --> 140 <div class="pobanner"> 141 <div class="pobanner-header"> 142 <div class="btn-pobanner"><span>Promocja</span></div>
-
SYSPATH/classes/Kohana/View.php [ 61 ] » include(arguments)
0
string(82) "/home/domexpo/domains/domexpo.eu/public_html/application/views/Templates/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) "/home/domexpo/domains/domexpo.eu/public_html/application/views/Templates/Index.php"
1
array(20) ( "id_product" => integer 287 "title" => string(74) "- Internetowy sklep meblowy domexpo.eu - Akcesoria, Dekoracje, Tanie meble" "description" => NULL "keywords" => NULL "metatags" => object View(2)
{ protected _file => string(86) "/home/domexpo/domains/domexpo.eu/public_html/application/views//Templates/Metatags.php" protected _data => array(4) ( "styles" => array(3) ( "/media/css/bundle.css?v=9" => string(3) "all" "media/css/slider-pro.min.css" => string(6) "screen" "media/css/style_blog.css" => string(6) "screen" ) "title" => string(74) "- Internetowy sklep meblowy domexpo.eu - Akcesoria, Dekoracje, Tanie meble" "description" => NULL "keywords" => NULL ) }
"remarketingTag" => string(0) "" "css" => object View(2){ protected _file => string(81) "/home/domexpo/domains/domexpo.eu/public_html/application/views//Templates/Css.php" protected _data => array(0) }
"header" => object View(2){ protected _file => string(87) "/home/domexpo/domains/domexpo.eu/public_html/application/views//Templates/HeaderNew.php" protected _data => array(0) }
"menu" => object View(2){ protected _file => string(82) "/home/domexpo/domains/domexpo.eu/public_html/application/views//Templates/Menu.php" protected _data => array(0) }
"pocket_menu" => object View(2){ protected _file => string(88) "/home/domexpo/domains/domexpo.eu/public_html/application/views//Templates/PocketMenu.php" protected _data => array(0) }
"content" => object View(2){ protected _file => string(79) "/home/domexpo/domains/domexpo.eu/public_html/application/views/Blog/Details.php" protected _data => array(2) ( "blog" => object Model_Blog(34)
"body_class" => string(25) "blog-post-view grid-fluid" "mainContainerClass" => string(56) "main-container col-layouts col2-layout col2-right-layout" "footer" => object View(2){ protected _has_one => array(0) protected _belongs_to => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => object Validation(6)
"pocket_menu" => object View(2){ protected _bound => array(5) ( ":model" => object Model_Blog(34) { *RECURSION* } ":original_values" => array(0) ":changed" => array(1) ( "slug" => string(4) "slug" ) ":validation" => object Validation(6) { *RECURSION* } ":data" => array(13) ( "id" => NULL "photo" => NULL "movie" => NULL "name" => NULL "description" => NULL "add_date" => NULL "id_lang" => NULL "meta_description" => NULL "keywords" => NULL "slug" => string(1) "-" "id_shop" => NULL "thumb" => NULL "webp" => NULL ) ) protected _rules => array(0) protected _labels => array(13) ( "id" => string(2) "id" "photo" => string(5) "photo" "movie" => string(5) "movie" "name" => string(4) "name" "description" => string(11) "description" "add_date" => string(8) "add_date" "id_lang" => string(7) "id_lang" "meta_description" => string(16) "meta_description" "keywords" => string(8) "keywords" "slug" => string(4) "slug" "id_shop" => string(7) "id_shop" "thumb" => string(5) "thumb" "webp" => string(4) "webp" ) protected _empty_rules => array(2) ( 0 => string(9) "not_empty" 1 => string(7) "matches" ) protected _errors => array(0) protected _data => array(13) ( "id" => NULL "photo" => NULL "movie" => NULL "name" => NULL "description" => NULL "add_date" => NULL "id_lang" => NULL "meta_description" => NULL "keywords" => NULL "slug" => string(1) "-" "id_shop" => NULL "thumb" => NULL "webp" => NULL ) }
protected _object => array(13) ( "id" => NULL "photo" => NULL "movie" => NULL "name" => NULL "description" => NULL "add_date" => NULL "id_lang" => NULL "meta_description" => NULL "keywords" => NULL "slug" => string(1) "-" "id_shop" => NULL "thumb" => NULL "webp" => NULL ) protected _changed => array(1) ( "slug" => string(4) "slug" ) protected _original_values => array(0) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool FALSE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "blog" protected _object_plural => string(5) "blogs" protected _table_name => string(5) "blogs" protected _table_columns => array(13) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "photo" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "photo" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "movie" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "movie" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "add_date" => array(10) ( "type" => string(6) "string" "column_name" => string(8) "add_date" "column_default" => NULL "data_type" => string(4) "date" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "id_lang" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "id_lang" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "meta_description" => array(12) ( "type" => string(6) "string" "column_name" => string(16) "meta_description" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "800" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "keywords" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "character_maximum_length" => string(3) "800" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "id_shop" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "id_shop" "column_default" => string(1) "1" "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(31) "select,insert,update,references" ) "thumb" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "thumb" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "character_maximum_length" => string(3) "200" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "webp" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "webp" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "200" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => NULL protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQL(6){ protected _connection_id => string(40) "afa87c2a70b17d84d678da00c2fbd1089b02c2de" protected _identifier => string(1) "`" public last_query => string(268) "SELECT `language`.`id` AS `id`, `language`.`name` AS `name`, `language`.`active` AS `active`, `language`.`iso_code` AS `iso_code …" protected _instance => string(7) "default" protected _connection => resource(mysql link) protected _config => array(6) ( "type" => string(5) "MySQL" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(13) "admin_domexpo" "persistent" => string(0) "" ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool TRUE ) }
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "blog" }{ protected _file => string(88) "/home/domexpo/domains/domexpo.eu/public_html/application/views//Templates/PocketMenu.php" protected _data => array(0) }
) }{ protected _file => string(84) "/home/domexpo/domains/domexpo.eu/public_html/application/views//Templates/Footer.php" protected _data => array(0) }
"js" => object View(2){ protected _file => string(80) "/home/domexpo/domains/domexpo.eu/public_html/application/views//Templates/Js.php" protected _data => array(1) ( "scripts" => array(2) ( 0 => string(28) "media/js/jquery-2.1.1.js?v=2" 1 => string(32) "media/js/jquery.sliderPro.min.js" ) ) }
"styles" => array(3) ( "/media/css/bundle.css?v=9" => string(3) "all" "media/css/slider-pro.min.css" => string(6) "screen" "media/css/style_blog.css" => string(6) "screen" ) "scripts" => array(2) ( 0 => string(28) "media/js/jquery-2.1.1.js?v=2" 1 => string(32) "media/js/jquery.sliderPro.min.js" ) "styles_late" => array(3) ( "/media/css/js-pull-out-banner.css" => string(3) "all" "/media/css/customNew.css?v=3" => string(3) "all" "/media/css/bundle_late.css?v=3" => string(3) "all" ) "scripts_late" => array(15) ( 0 => string(30) "media/js/jquery.marquee.min.js" 1 => string(22) "media/js/custom.js?v=2" 2 => string(21) "media/js/lozad.min.js" 3 => string(39) "media/js/jquery-ui-1.8.16.custom.min.js" 4 => string(23) "media/js/common.js?v=10" 5 => string(33) "media/js/jquery.flexslider.js?v=2" 6 => string(33) "media/js/jssor.slider.mini.js?v=2" 7 => string(28) "media/js/cloud-zoom.1.0.3.js" 8 => string(21) "media/js/bootstrap.js" 9 => string(24) "media/js/checkout.js?v=2" 10 => string(30) "media/jsOLD/jquery.validate.js" 11 => string(35) "media/jsOLD/i18n/jquery.i18n.min.js" 12 => string(21) "media/js/modernizr.js" 13 => string(35) "/media/js/countdown_home.min.js?v=1" 14 => string(34) "media/js/js-pull-out-banner.js?v=2" ) "lang_id" => NULL )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 } // End View
-
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
-
APPPATH/classes/Controller/Templates/TemplateDefault.php [ 105 ] » Kohana_Controller_Template->after()
100 $this->template->styles = array_reverse(array_merge($this->template->styles, $styles)); 101 $this->template->scripts = array_reverse(array_merge($this->template->scripts, $scripts)); 102 $this->template->styles_late = array_reverse(array_merge($this->template->styles_late, $styles_late)); 103 $this->template->scripts_late = array_reverse(array_merge($this->template->scripts_late, $scripts_late)); 104 } 105 parent::after(); 106 } 107 108 }
-
SYSPATH/classes/Kohana/Controller.php [ 87 ] » Controller_Templates_TemplateDefault->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_Blog(5)
{ public template => object View(2)
{ protected _file => string(82) "/home/domexpo/domains/domexpo.eu/public_html/application/views/Templates/Index.php" protected _data => array(20) ( "id_product" => integer 287 "title" => string(74) "- Internetowy sklep meblowy domexpo.eu - Akcesoria, Dekoracje, Tanie meble" "description" => NULL "keywords" => NULL "metatags" => object View(2)
public auto_render => bool TRUE public request => object Request(19){ protected _file => string(86) "/home/domexpo/domains/domexpo.eu/public_html/application/views//Templates/Metatags.php" protected _data => array(4) ( "styles" => array(3) ( "/media/css/bundle.css?v=9" => string(3) "all" "media/css/slider-pro.min.css" => string(6) "screen" "media/css/style_blog.css" => string(6) "screen" ) "title" => string(74) "- Internetowy sklep meblowy domexpo.eu - Akcesoria, Dekoracje, Tanie meble" "description" => NULL "keywords" => NULL ) }
"remarketingTag" => string(0) "" "css" => object View(2){ protected _file => string(81) "/home/domexpo/domains/domexpo.eu/public_html/application/views//Templates/Css.php" protected _data => array(0) }
"header" => object View(2){ protected _file => string(87) "/home/domexpo/domains/domexpo.eu/public_html/application/views//Templates/HeaderNew.php" protected _data => array(0) }
"menu" => object View(2){ protected _file => string(82) "/home/domexpo/domains/domexpo.eu/public_html/application/views//Templates/Menu.php" protected _data => array(0) }
"pocket_menu" => object View(2){ protected _file => string(88) "/home/domexpo/domains/domexpo.eu/public_html/application/views//Templates/PocketMenu.php" protected _data => array(0) }
"content" => object View(2){ protected _file => string(79) "/home/domexpo/domains/domexpo.eu/public_html/application/views/Blog/Details.php" protected _data => array(2) ( "blog" => object Model_Blog(34)
"body_class" => string(25) "blog-post-view grid-fluid" "mainContainerClass" => string(56) "main-container col-layouts col2-layout col2-right-layout" "footer" => object View(2){ protected _has_one => array(0) protected _belongs_to => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => object Validation(6)
"pocket_menu" => object View(2){ protected _bound => array(5) ( ":model" => object Model_Blog(34) { *RECURSION* } ":original_values" => array(0) ":changed" => array(1) ( "slug" => string(4) "slug" ) ":validation" => object Validation(6) { *RECURSION* } ":data" => array(13) ( "id" => NULL "photo" => NULL "movie" => NULL "name" => NULL "description" => NULL "add_date" => NULL "id_lang" => NULL "meta_description" => NULL "keywords" => NULL "slug" => string(1) "-" "id_shop" => NULL "thumb" => NULL "webp" => NULL ) ) protected _rules => array(0) protected _labels => array(13) ( "id" => string(2) "id" "photo" => string(5) "photo" "movie" => string(5) "movie" "name" => string(4) "name" "description" => string(11) "description" "add_date" => string(8) "add_date" "id_lang" => string(7) "id_lang" "meta_description" => string(16) "meta_description" "keywords" => string(8) "keywords" "slug" => string(4) "slug" "id_shop" => string(7) "id_shop" "thumb" => string(5) "thumb" "webp" => string(4) "webp" ) protected _empty_rules => array(2) ( 0 => string(9) "not_empty" 1 => string(7) "matches" ) protected _errors => array(0) protected _data => array(13) ( "id" => NULL "photo" => NULL "movie" => NULL "name" => NULL "description" => NULL "add_date" => NULL "id_lang" => NULL "meta_description" => NULL "keywords" => NULL "slug" => string(1) "-" "id_shop" => NULL "thumb" => NULL "webp" => NULL ) }
protected _object => array(13) ( "id" => NULL "photo" => NULL "movie" => NULL "name" => NULL "description" => NULL "add_date" => NULL "id_lang" => NULL "meta_description" => NULL "keywords" => NULL "slug" => string(1) "-" "id_shop" => NULL "thumb" => NULL "webp" => NULL ) protected _changed => array(1) ( "slug" => string(4) "slug" ) protected _original_values => array(0) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool FALSE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "blog" protected _object_plural => string(5) "blogs" protected _table_name => string(5) "blogs" protected _table_columns => array(13) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "photo" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "photo" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "movie" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "movie" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "add_date" => array(10) ( "type" => string(6) "string" "column_name" => string(8) "add_date" "column_default" => NULL "data_type" => string(4) "date" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "id_lang" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "id_lang" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "meta_description" => array(12) ( "type" => string(6) "string" "column_name" => string(16) "meta_description" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "800" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "keywords" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "keywords" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "character_maximum_length" => string(3) "800" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "id_shop" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "id_shop" "column_default" => string(1) "1" "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(31) "select,insert,update,references" ) "thumb" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "thumb" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "character_maximum_length" => string(3) "200" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "webp" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "webp" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "200" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => NULL protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQL(6){ protected _connection_id => string(40) "afa87c2a70b17d84d678da00c2fbd1089b02c2de" protected _identifier => string(1) "`" public last_query => string(268) "SELECT `language`.`id` AS `id`, `language`.`name` AS `name`, `language`.`active` AS `active`, `language`.`iso_code` AS `iso_code …" protected _instance => string(7) "default" protected _connection => resource(mysql link) protected _config => array(6) ( "type" => string(5) "MySQL" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(13) "admin_domexpo" "persistent" => string(0) "" ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool TRUE ) }
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "blog" }{ protected _file => string(88) "/home/domexpo/domains/domexpo.eu/public_html/application/views//Templates/PocketMenu.php" protected _data => array(0) }
) }{ protected _file => string(84) "/home/domexpo/domains/domexpo.eu/public_html/application/views//Templates/Footer.php" protected _data => array(0) }
"js" => object View(2){ protected _file => string(80) "/home/domexpo/domains/domexpo.eu/public_html/application/views//Templates/Js.php" protected _data => array(1) ( "scripts" => array(2) ( 0 => string(28) "media/js/jquery-2.1.1.js?v=2" 1 => string(32) "media/js/jquery.sliderPro.min.js" ) ) }
"styles" => array(3) ( "/media/css/bundle.css?v=9" => string(3) "all" "media/css/slider-pro.min.css" => string(6) "screen" "media/css/style_blog.css" => string(6) "screen" ) "scripts" => array(2) ( 0 => string(28) "media/js/jquery-2.1.1.js?v=2" 1 => string(32) "media/js/jquery.sliderPro.min.js" ) "styles_late" => array(3) ( "/media/css/js-pull-out-banner.css" => string(3) "all" "/media/css/customNew.css?v=3" => string(3) "all" "/media/css/bundle_late.css?v=3" => string(3) "all" ) "scripts_late" => array(15) ( 0 => string(30) "media/js/jquery.marquee.min.js" 1 => string(22) "media/js/custom.js?v=2" 2 => string(21) "media/js/lozad.min.js" 3 => string(39) "media/js/jquery-ui-1.8.16.custom.min.js" 4 => string(23) "media/js/common.js?v=10" 5 => string(33) "media/js/jquery.flexslider.js?v=2" 6 => string(33) "media/js/jssor.slider.mini.js?v=2" 7 => string(28) "media/js/cloud-zoom.1.0.3.js" 8 => string(21) "media/js/bootstrap.js" 9 => string(24) "media/js/checkout.js?v=2" 10 => string(30) "media/jsOLD/jquery.validate.js" 11 => string(35) "media/jsOLD/i18n/jquery.i18n.min.js" 12 => string(21) "media/js/modernizr.js" 13 => string(35) "/media/js/countdown_home.min.js?v=1" 14 => string(34) "media/js/js-pull-out-banner.js?v=2" ) "lang_id" => NULL ) }{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/2.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(36) "<page_name>((/<id>(/<id2>(/<id3>))))" protected _regex => array(1) ( "page_name" => string(44) "(Blog/Details|Blog/Szczegóły|Blog/Details)" ) protected _defaults => array(2) ( "controller" => string(4) "Blog" "action" => string(7) "Details" ) protected _route_regex => string(150) "#^(?P<page_name>(Blog/Details|Blog/Szczegóły|Blog/Details))(?:(?:/(?P<id>[^/.,;?\n]++)(?:/(?P<id2>[^/.,;?\n]++)(?:/(?P<id3>[^/., …" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Blog" protected _action => string(7) "Details" protected _uri => string(78) "Blog/Szczegóły/Nowa-ekspozycja-w-salonie-dom-expo-eko-meble-w-lesznowoli-287" protected _external => bool FALSE protected _params => array(2) ( "page_name" => string(16) "Blog/Szczegóły" "id" => string(61) "Nowa-ekspozycja-w-salonie-dom-expo-eko-meble-w-lesznowoli-287" ) protected _get => array(2) ( "/index2_php" => string(0) "" "/Blog/Szczegóły/Nowa-ekspozycja-w-salonie-dom-expo-eko-meble-w-lesznowoli-287" => string(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 test_ip => string(14) "94.254.177.214" }{ }
protected _body => string(0) "" protected _cookies => array(0) protected _protocol => NULL }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/2.0" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5)
{ protected _filters => array(0) protected _uri => string(36) "<page_name>((/<id>(/<id2>(/<id3>))))" protected _regex => array(1) ( "page_name" => string(44) "(Blog/Details|Blog/Szczegóły|Blog/Details)" ) protected _defaults => array(2) ( "controller" => string(4) "Blog" "action" => string(7) "Details" ) protected _route_regex => string(150) "#^(?P<page_name>(Blog/Details|Blog/Szczegóły|Blog/Details))(?:(?:/(?P<id>[^/.,;?\n]++)(?:/(?P<id2>[^/.,;?\n]++)(?:/(?P<id3>[^/., …" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Blog" protected _action => string(7) "Details" protected _uri => string(78) "Blog/Szczegóły/Nowa-ekspozycja-w-salonie-dom-expo-eko-meble-w-lesznowoli-287" protected _external => bool FALSE protected _params => array(2) ( "page_name" => string(16) "Blog/Szczegóły" "id" => string(61) "Nowa-ekspozycja-w-salonie-dom-expo-eko-meble-w-lesznowoli-287" ) protected _get => array(2) ( "/index2_php" => string(0) "" "/Blog/Szczegóły/Nowa-ekspozycja-w-salonie-dom-expo-eko-meble-w-lesznowoli-287" => string(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 => NULL }109 $orig_response = $response = Response::factory(); 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 [ 990 ] » Kohana_Request_Client->execute(arguments)
0
object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/2.0" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5)
{ protected _filters => array(0) protected _uri => string(36) "<page_name>((/<id>(/<id2>(/<id3>))))" protected _regex => array(1) ( "page_name" => string(44) "(Blog/Details|Blog/Szczegóły|Blog/Details)" ) protected _defaults => array(2) ( "controller" => string(4) "Blog" "action" => string(7) "Details" ) protected _route_regex => string(150) "#^(?P<page_name>(Blog/Details|Blog/Szczegóły|Blog/Details))(?:(?:/(?P<id>[^/.,;?\n]++)(?:/(?P<id2>[^/.,;?\n]++)(?:/(?P<id3>[^/., …" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Blog" protected _action => string(7) "Details" protected _uri => string(78) "Blog/Szczegóły/Nowa-ekspozycja-w-salonie-dom-expo-eko-meble-w-lesznowoli-287" protected _external => bool FALSE protected _params => array(2) ( "page_name" => string(16) "Blog/Szczegóły" "id" => string(61) "Nowa-ekspozycja-w-salonie-dom-expo-eko-meble-w-lesznowoli-287" ) protected _get => array(2) ( "/index2_php" => string(0) "" "/Blog/Szczegóły/Nowa-ekspozycja-w-salonie-dom-expo-eko-meble-w-lesznowoli-287" => string(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) }
}985 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array( 986 ':uri' => $this->_uri, 987 )); 988 } 989 990 return $this->_client->execute($this); 991 } 992 993 /** 994 * Returns whether this request is the initial request Kohana received. 995 * Can be used to test for sub requests.
-
DOCROOT/index2.php [ 161 ] » Kohana_Request->execute()
156 /** 157 * Execute the main request. A source of the URI can be passed, eg: $_SERVER['PATH_INFO']. 158 * If no source is specified, the URI will be automatically detected. 159 */ 160 echo Request::factory(TRUE, array(), FALSE) 161 ->execute() 162 ->send_headers(TRUE) 163 ->body(); 164 }