SYSPATH/classes/Kohana/View.php [ 248 ]
243 * @throws View_Exception244 */245 public function set_filename($file)246 {247 if (($path = Kohana::find_file('views', $file)) === FALSE) {248 throw new View_Exception('The requested view :file could not be found', array(249 ':file' => $file,250 ));251 }252 253 // Store the file path locally
-
SYSPATH/classes/Kohana/View.php [ 138 ] » Kohana_View->set_filename( arguments )
0
string(24) "layout/parts/fb-comments"
133 * @uses View::set_filename134 */135 public function __construct($file = NULL, array $data = NULL)136 {137 if ($file !== NULL) {138 $this->set_filename($file);139 }140 141 if ($data !== NULL) {142 // Add the values to the current data143 $this->_data = $data + $this->_data;
-
SYSPATH/classes/Kohana/View.php [ 32 ] » Kohana_View->__construct( arguments )
0
string(24) "layout/parts/fb-comments"
1
array(1) ( "url" => string(52) "/pl/blog/doradztwo/13-jun-19_blachodachowki-panelowe" )
27 * @param array $data array of values28 * @return View29 */30 public static function factory($file = NULL, array $data = NULL)31 {32 return new View($file, $data);33 }34 35 /**36 * Captures the output that is generated when a view is included.37 * The view data will be extracted to make local variables. This method
-
APPPATH/views/blog/post.php [ 99 ] » Kohana_View::factory( arguments )
0
string(24) "layout/parts/fb-comments"
1
array(1) ( "url" => string(52) "/pl/blog/doradztwo/13-jun-19_blachodachowki-panelowe" )
94 95 <?= Arr::get($blog, 'content') ?> 96 97 <hr/> 98 99 <?= View::factory('layout/parts/fb-comments', ['url' => $blog['link']]) ?>100 101 </div>102 </div>103 104 </div>
-
SYSPATH/classes/Kohana/View.php [ 62 ] » include( arguments )
0
string(92) "/home/dobrydom.prod.app/dobry-dom.pl/releases/20210219055129/application/views/blog/post.php"
57 // Capture the view output58 ob_start();59 60 try {61 // Load the view within the current scope62 include $kohana_view_filename;63 } catch (Exception $e) {64 // Delete the output buffer65 ob_end_clean();66 67 // Re-throw the exception
-
SYSPATH/classes/Kohana/View.php [ 336 ] » Kohana_View::capture( arguments )
0
string(92) "/home/dobrydom.prod.app/dobry-dom.pl/releases/20210219055129/application/views/blog/post.php"
1
array(6) ( "blog" => array(10) ( "uri" => string(33) "13-jun-19_blachodachowki-panelowe" "json" => NULL "title" => string(51) "Dlaczego warto rozważyć blachodachówki panelowe?" "keyw" => string(51) "Dlaczego warto rozważyć blachodachówki panelowe?" "desc" => string(106) "blachy pruszyński, blachodachówka, pokrycie dachowe, dachy, pokrycia dachów, polski producent, produkty" "content" => string(4081) "<h3 style="text-align:justify"><strong>Tradycyjne blachodachówki cięte na wymiar czy nowoczesne blachodachówki pan …" "published" => string(19) "2019-06-13 11:18:32" "viewed" => string(4) "8308" "tax" => array(2) ( "tag" => array(2) ( 11 => array(6) ( "id" => string(2) "11" "type" => string(3) "tag" "status" => string(1) "1" "uri" => string(9) "doradztwo" "title" => string(9) "doradztwo" "lang" => string(2) "pl" ) 17 => array(6) ( "id" => string(2) "17" "type" => string(3) "tag" "status" => string(1) "1" "uri" => string(7) "nowosci" "title" => string(8) "nowości" "lang" => string(2) "pl" ) ) "category" => array(1) ( 12 => array(6) ( "id" => string(2) "12" "type" => string(8) "category" "status" => string(1) "1" "uri" => string(11) "budowa-domu" "title" => string(11) "Budowa domu" "lang" => string(2) "pl" ) ) ) "link" => string(52) "/pl/blog/doradztwo/13-jun-19_blachodachowki-panelowe" ) "content" => bool FALSE "errors" => NULL "fields" => array(0) "tax" => array(2) ( "tag" => array(2) ( 11 => array(6) ( "id" => string(2) "11" "type" => string(3) "tag" "status" => string(1) "1" "uri" => string(9) "doradztwo" "title" => string(9) "doradztwo" "lang" => string(2) "pl" ) 17 => array(6) ( "id" => string(2) "17" "type" => string(3) "tag" "status" => string(1) "1" "uri" => string(7) "nowosci" "title" => string(8) "nowości" "lang" => string(2) "pl" ) ) "category" => array(1) ( 12 => array(6) ( "id" => string(2) "12" "type" => string(8) "category" "status" => string(1) "1" "uri" => string(11) "budowa-domu" "title" => string(11) "Budowa domu" "lang" => string(2) "pl" ) ) ) "comments" => integer 0 )
331 if (empty($this->_file)) {332 throw new View_Exception('You must set the file to use within your view before rendering');333 }334 335 // Combine local and global data and capture the output336 return View::capture($this->_file, $this->_data);337 }338 339 }
-
SYSPATH/classes/Kohana/View.php [ 222 ] » Kohana_View->render( )
217 * @uses View::render218 */219 public function __toString()220 {221 try {222 return $this->render();223 } catch (Exception $e) {224 /**225 * Display the exception message.226 *227 * We use this method here because it's impossible to throw an
-
APPPATH/views/layout/layout.php [ 129 ] » Kohana_View->__toString( )
124 <?= $header ?>125 126 <?= isset($main_slider) ? $main_slider : '' ?>127 128 <div class="mainContainer">129 <?= $content ?>130 </div>131 132 <?= isset($email) ? $email : '' ?>133 134 <?= $footer ?>
-
SYSPATH/classes/Kohana/View.php [ 62 ] » include( arguments )
0
string(96) "/home/dobrydom.prod.app/dobry-dom.pl/releases/20210219055129/application/views/layout/layout.php"
57 // Capture the view output58 ob_start();59 60 try {61 // Load the view within the current scope62 include $kohana_view_filename;63 } catch (Exception $e) {64 // Delete the output buffer65 ob_end_clean();66 67 // Re-throw the exception
-
SYSPATH/classes/Kohana/View.php [ 336 ] » Kohana_View::capture( arguments )
0
string(96) "/home/dobrydom.prod.app/dobry-dom.pl/releases/20210219055129/application/views/layout/layout.php"
1
array(8) ( "doc_end" => array(1) ( 0 => object View(2)
{ protected _file => string(94) "/home/dobrydom.prod.app/dobry-dom.pl/releases/20210219055129/application/views/script/like.php" protected _data => array(0) }
) "seo" => array(1) ( "title" => string(51) "Dlaczego warto rozważyć blachodachówki panelowe?" ) "css" => array(1) ( 0 => string(32) "/public/toastr-master/toastr.css" ) "scripts" => array(2) ( 0 => string(29) "/public/controllerAjax.0.8.js" 1 => string(31) "/public/toastr-master/toastr.js" ) "header" => object View(2){ protected _file => string(102) "/home/dobrydom.prod.app/dobry-dom.pl/releases/20210219055129/application/views/layout/parts/header.php" protected _data => array(0) }
"footer" => object View(2){ protected _file => string(102) "/home/dobrydom.prod.app/dobry-dom.pl/releases/20210219055129/application/views/layout/parts/footer.php" protected _data => array(0) }
"content" => object View(2){ protected _file => string(92) "/home/dobrydom.prod.app/dobry-dom.pl/releases/20210219055129/application/views/blog/post.php" protected _data => array(6) ( "blog" => array(10) ( "uri" => string(33) "13-jun-19_blachodachowki-panelowe" "json" => NULL "title" => string(51) "Dlaczego warto rozważyć blachodachówki panelowe?" "keyw" => string(51) "Dlaczego warto rozważyć blachodachówki panelowe?" "desc" => string(106) "blachy pruszyński, blachodachówka, pokrycie dachowe, dachy, pokrycia dachów, polski producent, produkty" "content" => string(4081) "<h3 style="text-align:justify"><strong>Tradycyjne blachodachówki cięte na wymiar czy nowoczesne blachodachówki pan …" "published" => string(19) "2019-06-13 11:18:32" "viewed" => string(4) "8308" "tax" => array(2) ( "tag" => array(2) ( 11 => array(6) ( "id" => string(2) "11" "type" => string(3) "tag" "status" => string(1) "1" "uri" => string(9) "doradztwo" "title" => string(9) "doradztwo" "lang" => string(2) "pl" ) 17 => array(6) ( "id" => string(2) "17" "type" => string(3) "tag" "status" => string(1) "1" "uri" => string(7) "nowosci" "title" => string(8) "nowości" "lang" => string(2) "pl" ) ) "category" => array(1) ( 12 => array(6) ( "id" => string(2) "12" "type" => string(8) "category" "status" => string(1) "1" "uri" => string(11) "budowa-domu" "title" => string(11) "Budowa domu" "lang" => string(2) "pl" ) ) ) "link" => string(52) "/pl/blog/doradztwo/13-jun-19_blachodachowki-panelowe" ) "content" => bool FALSE "errors" => NULL "fields" => array(0) "tax" => array(2) ( "tag" => array(2) ( 11 => array(6) ( "id" => string(2) "11" "type" => string(3) "tag" "status" => string(1) "1" "uri" => string(9) "doradztwo" "title" => string(9) "doradztwo" "lang" => string(2) "pl" ) 17 => array(6) ( "id" => string(2) "17" "type" => string(3) "tag" "status" => string(1) "1" "uri" => string(7) "nowosci" "title" => string(8) "nowości" "lang" => string(2) "pl" ) ) "category" => array(1) ( 12 => array(6) ( "id" => string(2) "12" "type" => string(8) "category" "status" => string(1) "1" "uri" => string(11) "budowa-domu" "title" => string(11) "Budowa domu" "lang" => string(2) "pl" ) ) ) "comments" => integer 0 ) }
"email" => object View(2){ protected _file => string(105) "/home/dobrydom.prod.app/dobry-dom.pl/releases/20210219055129/application/views/main-page/blocks/email.php" protected _data => array(0) }
)331 if (empty($this->_file)) {332 throw new View_Exception('You must set the file to use within your view before rendering');333 }334 335 // Combine local and global data and capture the output336 return View::capture($this->_file, $this->_data);337 }338 339 }
-
SYSPATH/classes/Kohana/Controller/Template.php [ 44 ] » Kohana_View->render( )
39 * Assigns the template [View] as the request response.40 */41 public function after()42 {43 if ($this->auto_render === TRUE) {44 $this->response->body($this->template->render());45 }46 47 parent::after();48 }49
-
APPPATH/classes/Controller/Layout.php [ 174 ] » Kohana_Controller_Template->after( )
169 $this->template->header = $this->header;170 $this->template->footer = $this->footer;171 $this->template->content = $this->content;172 $this->template->email = View::factory('main-page/blocks/email');;173 174 parent::after();175 }176 177 protected function includeAjax($controller)178 {179
-
SYSPATH/classes/Kohana/Controller.php [ 88 ] » Controller_Layout->after( )
83 84 // Execute the action itself85 $this->{$action}();86 87 // Execute the "after action" method88 $this->after();89 90 // Return the response91 return $this->response;92 }93
-
{PHP internal call} » Kohana_Controller->execute( )
-
SYSPATH/classes/Kohana/Request/Client/Internal.php [ 93 ] » ReflectionMethod->invoke( arguments )
0
object Controller_Static_Blog(16)
{ public template => object View(2)
{ protected _file => string(96) "/home/dobrydom.prod.app/dobry-dom.pl/releases/20210219055129/application/views/layout/layout.php" protected _data => array(8) ( "doc_end" => array(1) ( 0 => object View(2)
public lang => string(2) "pl" public lang_id => string(1) "1" public header => object View(2){ protected _file => string(94) "/home/dobrydom.prod.app/dobry-dom.pl/releases/20210219055129/application/views/script/like.php" protected _data => array(0) }
) "seo" => array(1) ( "title" => string(51) "Dlaczego warto rozważyć blachodachówki panelowe?" ) "css" => array(1) ( 0 => string(32) "/public/toastr-master/toastr.css" ) "scripts" => array(2) ( 0 => string(29) "/public/controllerAjax.0.8.js" 1 => string(31) "/public/toastr-master/toastr.js" ) "header" => object View(2){ protected _file => string(102) "/home/dobrydom.prod.app/dobry-dom.pl/releases/20210219055129/application/views/layout/parts/header.php" protected _data => array(0) }
"footer" => object View(2){ protected _file => string(102) "/home/dobrydom.prod.app/dobry-dom.pl/releases/20210219055129/application/views/layout/parts/footer.php" protected _data => array(0) }
"content" => object View(2){ protected _file => string(92) "/home/dobrydom.prod.app/dobry-dom.pl/releases/20210219055129/application/views/blog/post.php" protected _data => array(6) ( "blog" => array(10) ( "uri" => string(33) "13-jun-19_blachodachowki-panelowe" "json" => NULL "title" => string(51) "Dlaczego warto rozważyć blachodachówki panelowe?" "keyw" => string(51) "Dlaczego warto rozważyć blachodachówki panelowe?" "desc" => string(106) "blachy pruszyński, blachodachówka, pokrycie dachowe, dachy, pokrycia dachów, polski producent, produkty" "content" => string(4081) "<h3 style="text-align:justify"><strong>Tradycyjne blachodachówki cięte na wymiar czy nowoczesne blachodachówki pan …" "published" => string(19) "2019-06-13 11:18:32" "viewed" => string(4) "8308" "tax" => array(2) ( "tag" => array(2) ( 11 => array(6) ( "id" => string(2) "11" "type" => string(3) "tag" "status" => string(1) "1" "uri" => string(9) "doradztwo" "title" => string(9) "doradztwo" "lang" => string(2) "pl" ) 17 => array(6) ( "id" => string(2) "17" "type" => string(3) "tag" "status" => string(1) "1" "uri" => string(7) "nowosci" "title" => string(8) "nowości" "lang" => string(2) "pl" ) ) "category" => array(1) ( 12 => array(6) ( "id" => string(2) "12" "type" => string(8) "category" "status" => string(1) "1" "uri" => string(11) "budowa-domu" "title" => string(11) "Budowa domu" "lang" => string(2) "pl" ) ) ) "link" => string(52) "/pl/blog/doradztwo/13-jun-19_blachodachowki-panelowe" ) "content" => bool FALSE "errors" => NULL "fields" => array(0) "tax" => array(2) ( "tag" => array(2) ( 11 => array(6) ( "id" => string(2) "11" "type" => string(3) "tag" "status" => string(1) "1" "uri" => string(9) "doradztwo" "title" => string(9) "doradztwo" "lang" => string(2) "pl" ) 17 => array(6) ( "id" => string(2) "17" "type" => string(3) "tag" "status" => string(1) "1" "uri" => string(7) "nowosci" "title" => string(8) "nowości" "lang" => string(2) "pl" ) ) "category" => array(1) ( 12 => array(6) ( "id" => string(2) "12" "type" => string(8) "category" "status" => string(1) "1" "uri" => string(11) "budowa-domu" "title" => string(11) "Budowa domu" "lang" => string(2) "pl" ) ) ) "comments" => integer 0 ) }
"email" => object View(2){ protected _file => string(105) "/home/dobrydom.prod.app/dobry-dom.pl/releases/20210219055129/application/views/main-page/blocks/email.php" protected _data => array(0) }
) }{ protected _file => string(102) "/home/dobrydom.prod.app/dobry-dom.pl/releases/20210219055129/application/views/layout/parts/header.php" protected _data => array(0) }
public footer => object View(2){ protected _file => string(102) "/home/dobrydom.prod.app/dobry-dom.pl/releases/20210219055129/application/views/layout/parts/footer.php" protected _data => array(0) }
public content => object View(2){ protected _file => string(92) "/home/dobrydom.prod.app/dobry-dom.pl/releases/20210219055129/application/views/blog/post.php" protected _data => array(6) ( "blog" => array(10) ( "uri" => string(33) "13-jun-19_blachodachowki-panelowe" "json" => NULL "title" => string(51) "Dlaczego warto rozważyć blachodachówki panelowe?" "keyw" => string(51) "Dlaczego warto rozważyć blachodachówki panelowe?" "desc" => string(106) "blachy pruszyński, blachodachówka, pokrycie dachowe, dachy, pokrycia dachów, polski producent, produkty" "content" => string(4081) "<h3 style="text-align:justify"><strong>Tradycyjne blachodachówki cięte na wymiar czy nowoczesne blachodachówki pan …" "published" => string(19) "2019-06-13 11:18:32" "viewed" => string(4) "8308" "tax" => array(2) ( "tag" => array(2) ( 11 => array(6) ( "id" => string(2) "11" "type" => string(3) "tag" "status" => string(1) "1" "uri" => string(9) "doradztwo" "title" => string(9) "doradztwo" "lang" => string(2) "pl" ) 17 => array(6) ( "id" => string(2) "17" "type" => string(3) "tag" "status" => string(1) "1" "uri" => string(7) "nowosci" "title" => string(8) "nowości" "lang" => string(2) "pl" ) ) "category" => array(1) ( 12 => array(6) ( "id" => string(2) "12" "type" => string(8) "category" "status" => string(1) "1" "uri" => string(11) "budowa-domu" "title" => string(11) "Budowa domu" "lang" => string(2) "pl" ) ) ) "link" => string(52) "/pl/blog/doradztwo/13-jun-19_blachodachowki-panelowe" ) "content" => bool FALSE "errors" => NULL "fields" => array(0) "tax" => array(2) ( "tag" => array(2) ( 11 => array(6) ( "id" => string(2) "11" "type" => string(3) "tag" "status" => string(1) "1" "uri" => string(9) "doradztwo" "title" => string(9) "doradztwo" "lang" => string(2) "pl" ) 17 => array(6) ( "id" => string(2) "17" "type" => string(3) "tag" "status" => string(1) "1" "uri" => string(7) "nowosci" "title" => string(8) "nowości" "lang" => string(2) "pl" ) ) "category" => array(1) ( 12 => array(6) ( "id" => string(2) "12" "type" => string(8) "category" "status" => string(1) "1" "uri" => string(11) "budowa-domu" "title" => string(11) "Budowa domu" "lang" => string(2) "pl" ) ) ) "comments" => integer 0 ) }
public email => string(0) "" protected doc_end => array(1) ( 0 => object View(2){ protected _file => string(94) "/home/dobrydom.prod.app/dobry-dom.pl/releases/20210219055129/application/views/script/like.php" protected _data => array(0) }
) protected css => array(1) ( 0 => string(32) "/public/toastr-master/toastr.css" ) protected scripts => array(2) ( 0 => string(29) "/public/controllerAjax.0.8.js" 1 => string(31) "/public/toastr-master/toastr.js" ) protected isInsideCatalog => bool FALSE private konjaxIncluded => bool TRUE public auto_render => bool TRUE public request => object Request(19){ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5)
public response => object Response(5){ protected _filters => array(0) protected _uri => string(23) "<lng>/blog/<tax>/<post>" protected _regex => array(0) protected _defaults => array(5) ( "directory" => string(6) "Static" "controller" => string(4) "Blog" "action" => string(4) "post" "tax" => string(5) "promo" "lng" => string(2) "pl" ) protected _route_regex => string(77) "#^(?P<lng>[^/.,;?\n]++)/blog/(?P<tax>[^/.,;?\n]++)/(?P<post>[^/.,;?\n]++)$#uD" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(6) "Static" protected _controller => string(4) "Blog" protected _action => string(4) "post" protected _uri => string(51) "pl/blog/doradztwo/13-jun-19_blachodachowki-panelowe" protected _external => bool FALSE protected _params => array(3) ( "lng" => string(2) "pl" "tax" => string(9) "doradztwo" "post" => string(33) "13-jun-19_blachodachowki-panelowe" ) 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 seo => array(3) ( "title" => string(51) "Dlaczego warto rozważyć blachodachówki panelowe?" "desc" => string(106) "blachy pruszyński, blachodachówka, pokrycie dachowe, dachy, pokrycia dachów, polski producent, produkty" "kw" => string(51) "Dlaczego warto rozważyć blachodachówki panelowe?" )}{ }
protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }88 89 // Create a new instance of the controller90 $controller = $class->newInstance($request, $response);91 92 // Run the controller's execute() method93 $response = $class->getMethod('execute')->invoke($controller);94 95 if (!$response instanceof Response) {96 // Controller failed to return a Response.97 throw new Kohana_Exception('Controller failed to return a Response');98 }
-
SYSPATH/classes/Kohana/Request/Client.php [ 114 ] » Kohana_Request_Client_Internal->execute_request( arguments )
0
object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5)
{ protected _filters => array(0) protected _uri => string(23) "<lng>/blog/<tax>/<post>" protected _regex => array(0) protected _defaults => array(5) ( "directory" => string(6) "Static" "controller" => string(4) "Blog" "action" => string(4) "post" "tax" => string(5) "promo" "lng" => string(2) "pl" ) protected _route_regex => string(77) "#^(?P<lng>[^/.,;?\n]++)/blog/(?P<tax>[^/.,;?\n]++)/(?P<post>[^/.,;?\n]++)$#uD" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(6) "Static" protected _controller => string(4) "Blog" protected _action => string(4) "post" protected _uri => string(51) "pl/blog/doradztwo/13-jun-19_blachodachowki-panelowe" protected _external => bool FALSE protected _params => array(3) ( "lng" => string(2) "pl" "tax" => string(9) "doradztwo" "post" => string(33) "13-jun-19_blachodachowki-panelowe" ) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }
}1
object Response(5)
{ protected _status => integer 200 protected _header => object HTTP_Header(0)
{ }
protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }109 $orig_response = $response = Response::factory(array('_protocol' => $request->protocol()));110 111 if (($cache = $this->cache()) instanceof HTTP_Cache)112 return $cache->execute($this, $request, $response);113 114 $response = $this->execute_request($request, $response);115 116 // Execute response callbacks117 foreach ($this->header_callbacks() as $header => $callback) {118 if ($response->headers($header)) {119 $cb_result = call_user_func($callback, $request, $response, $this);
-
SYSPATH/classes/Kohana/Request.php [ 927 ] » Kohana_Request_Client->execute( arguments )
0
object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5)
{ protected _filters => array(0) protected _uri => string(23) "<lng>/blog/<tax>/<post>" protected _regex => array(0) protected _defaults => array(5) ( "directory" => string(6) "Static" "controller" => string(4) "Blog" "action" => string(4) "post" "tax" => string(5) "promo" "lng" => string(2) "pl" ) protected _route_regex => string(77) "#^(?P<lng>[^/.,;?\n]++)/blog/(?P<tax>[^/.,;?\n]++)/(?P<post>[^/.,;?\n]++)$#uD" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(6) "Static" protected _controller => string(4) "Blog" protected _action => string(4) "post" protected _uri => string(51) "pl/blog/doradztwo/13-jun-19_blachodachowki-panelowe" protected _external => bool FALSE protected _params => array(3) ( "lng" => string(2) "pl" "tax" => string(9) "doradztwo" "post" => string(33) "13-jun-19_blachodachowki-panelowe" ) 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) }
}922 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array(923 ':uri' => $this->_uri,924 ));925 }926 927 return $this->_client->execute($this);928 }929 930 /**931 * Returns whether this request is the initial request Kohana received.932 * Can be used to test for sub requests.
-
DOCROOT/index.php [ 118 ] » Kohana_Request->execute( )
113 /**114 * Execute the main request. A source of the URI can be passed, eg: $_SERVER['PATH_INFO'].115 * If no source is specified, the URI will be automatically detected.116 */117 echo Request::factory(TRUE, array(), FALSE)118 ->execute()119 ->send_headers(TRUE)120 ->body();121 // Debug::pre_dump_die( $response );122 }