APPPATH/views/new/layout.php [ 168 ]
163 <main>
164 <article<?php if ($content_class) { echo ' class="' . $content_class . '"'; } ?> role="main">
165 <?php echo $content ?>
166 </article>
167 <aside role="complementary">
168 <?php echo $aside ?>
169 </aside>
170 </main>
171
172 <?php
173 echo View::factory('new/layout/footer')->render();
-
APPPATH/views/new/layout.php [ 168 ] » Kohana_Core::error_handler(arguments)
code
integer 8
error
string(25) "Undefined variable: aside"
file
string(112) "/var/www/vhosts/lvps176-28-11-216.dedicated.hosteurope.de/stadiony.net/httpdocs/application/views/new/layout.php"
line
integer 168
4
array(21) ( "kohana_view_filename" => string(112) "/var/www/vhosts/lvps176-28-11-216.dedicated.hosteurope.de/stadiony.net/httpdocs/application/views/new/layout.php" "kohana_view_data" => array(9) ( "debug" => string(0) "" "content" => object View(2)
{ protected _file => string(116) "/var/www/vhosts/lvps176-28-11-216.dedicated.hosteurope.de/stadiony.net/httpdocs/application/views/old/guide/city.php" protected _data => array(1) ( "guide" => array(4) ( "url" => string(6) "poznan" "city" => string(7) "Poznań" "content" => string(8493) "<h2>Stadion Miejski w Poznaniu</h2> <p><img src="/img/news/2012/05/28poznan1.jpg" alt="Stadion Miejski w Poznaniu" width="590" h …" "title" => string(25) "Poradnik kibica Euro 2012" ) ) }
"breadcrumbs" => array(2) ( 0 => array(2) ( 0 => string(25) "poradnik_kibica_euro_2012" 1 => string(18) "Poradnik Euro 2012" ) 1 => array(2) ( 0 => string(32) "poradnik_kibica_euro_2012/poznan" 1 => string(7) "Poznań" ) ) "ads" => string(0) "" "styles" => array(3) ( "media/css/demo/screen.css" => string(18) "screen, projection" "media/css/demo/print.css" => string(5) "print" "media/css/demo/style.css" => string(6) "screen" ) "scripts" => array(1) ( 0 => string(63) "http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" ) "description" => string(49) "Poradnik na mistrzostwa europy Euro 2012: Poznań" "keywords" => string(66) "poradnik, kibica, miasta, gospodarze, stadiony, komunikacjaPoznań" "title" => string(27) "Poradnik Euro 2012: Poznań" ) "debug" => string(0) "" "content" => object View(2){ protected _file => string(116) "/var/www/vhosts/lvps176-28-11-216.dedicated.hosteurope.de/stadiony.net/httpdocs/application/views/old/guide/city.php" protected _data => array(1) ( "guide" => array(4) ( "url" => string(6) "poznan" "city" => string(7) "Poznań" "content" => string(8493) "<h2>Stadion Miejski w Poznaniu</h2> <p><img src="/img/news/2012/05/28poznan1.jpg" alt="Stadion Miejski w Poznaniu" width="590" h …" "title" => string(25) "Poradnik kibica Euro 2012" ) ) }
"breadcrumbs" => array(2) ( 0 => array(2) ( 0 => string(25) "poradnik_kibica_euro_2012" 1 => string(18) "Poradnik Euro 2012" ) 1 => array(2) ( 0 => string(32) "poradnik_kibica_euro_2012/poznan" 1 => string(7) "Poznań" ) ) "ads" => string(0) "" "styles" => array(3) ( "media/css/demo/screen.css" => string(18) "screen, projection" "media/css/demo/print.css" => string(5) "print" "media/css/demo/style.css" => string(6) "screen" ) "scripts" => array(1) ( 0 => string(63) "http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" ) "description" => string(49) "Poradnik na mistrzostwa europy Euro 2012: Poznań" "keywords" => string(148) "poradnik, kibica, miasta, gospodarze, stadiony, komunikacjaPoznań, stadiony, stadionów, stadion, prezentacje, zdjęcia, piłka …" "title" => string(27) "Poradnik Euro 2012: Poznań" "meta" => string(0) "" "lang" => string(2) "pl" "logo_text" => string(25) "Stadiony<span>.net</span>" "google_verification" => string(43) "Pfc6USt4nfL3CY1ZbXs0nD35eZnRJwzsA9was-kHBok" "title_text" => string(44) "Poradnik Euro 2012: Poznań – Stadiony.net" "body_class" => string(0) "" "tinymce_config" => string(0) "" "page" => string(32) "poradnik_kibica_euro_2012/poznan" "data" => array(4) ( "controller" => string(5) "guide" "params" => array(1) ( "page" => string(6) "poznan" ) "action" => string(4) "page" "breadcrumbs" => array(2) ( 0 => array(2) ( 0 => string(25) "poradnik_kibica_euro_2012" 1 => string(18) "Poradnik Euro 2012" ) 1 => array(2) ( 0 => string(32) "poradnik_kibica_euro_2012/poznan" 1 => string(7) "Poznań" ) ) ) "content_class" => string(7) "content" )163 <main> 164 <article<?php if ($content_class) { echo ' class="' . $content_class . '"'; } ?> role="main"> 165 <?php echo $content ?> 166 </article> 167 <aside role="complementary"> 168 <?php echo $aside ?> 169 </aside> 170 </main> 171 172 <?php 173 echo View::factory('new/layout/footer')->render();
-
SYSPATH/classes/kohana/view.php [ 49 ] » include(arguments)
0
string(112) "/var/www/vhosts/lvps176-28-11-216.dedicated.hosteurope.de/stadiony.net/httpdocs/application/views/new/layout.php"
44 ob_start(); 45 46 try 47 { 48 // Load the view within the current scope 49 include $kohana_view_filename; 50 } 51 catch (Exception $e) 52 { 53 // Delete the output buffer 54 ob_end_clean();
-
SYSPATH/classes/kohana/view.php [ 303 ] » Kohana_View::capture(arguments)
kohana_view_filename
string(112) "/var/www/vhosts/lvps176-28-11-216.dedicated.hosteurope.de/stadiony.net/httpdocs/application/views/new/layout.php"
kohana_view_data
array(9) ( "debug" => string(0) "" "content" => object View(2)
{ protected _file => string(116) "/var/www/vhosts/lvps176-28-11-216.dedicated.hosteurope.de/stadiony.net/httpdocs/application/views/old/guide/city.php" protected _data => array(1) ( "guide" => array(4) ( "url" => string(6) "poznan" "city" => string(7) "Poznań" "content" => string(8493) "<h2>Stadion Miejski w Poznaniu</h2> <p><img src="/img/news/2012/05/28poznan1.jpg" alt="Stadion Miejski w Poznaniu" width="590" h …" "title" => string(25) "Poradnik kibica Euro 2012" ) ) }
"breadcrumbs" => array(2) ( 0 => array(2) ( 0 => string(25) "poradnik_kibica_euro_2012" 1 => string(18) "Poradnik Euro 2012" ) 1 => array(2) ( 0 => string(32) "poradnik_kibica_euro_2012/poznan" 1 => string(7) "Poznań" ) ) "ads" => string(0) "" "styles" => array(3) ( "media/css/demo/screen.css" => string(18) "screen, projection" "media/css/demo/print.css" => string(5) "print" "media/css/demo/style.css" => string(6) "screen" ) "scripts" => array(1) ( 0 => string(63) "http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" ) "description" => string(49) "Poradnik na mistrzostwa europy Euro 2012: Poznań" "keywords" => string(66) "poradnik, kibica, miasta, gospodarze, stadiony, komunikacjaPoznań" "title" => string(27) "Poradnik Euro 2012: Poznań" )298 { 299 throw new Kohana_View_Exception('You must set the file to use within your view before rendering'); 300 } 301 302 // Combine local and global data and capture the output 303 return View::capture($this->_file, $this->_data + View::$_global_data); 304 } 305 306 } // End View
-
SYSPATH/classes/kohana/view.php [ 193 ] » Kohana_View->render()
188 */ 189 public function __toString() 190 { 191 try 192 { 193 return $this->render(); 194 } 195 catch (Exception $e) 196 { 197 // Display the exception message 198 Kohana::exception_handler($e);
-
APPPATH/bootstrap.php [ 634 ] » Kohana_View->__toString()
629 $total = array( 630 '{memory_usage}' => number_format((memory_get_peak_usage() - KOHANA_START_MEMORY) / 1024, 2).'KB', 631 '{execution_time}' => number_format(microtime(TRUE) - KOHANA_START_TIME, 5).' seconds'); 632 633 // Insert the totals into the response 634 $request->response = strtr((string) $request->response, $total); 635 } 636 637 638 /** 639 * Display the request response.
-
DOCROOT/index.php [ 104 ] » require(arguments)
0
string(105) "/var/www/vhosts/lvps176-28-11-216.dedicated.hosteurope.de/stadiony.net/httpdocs/application/bootstrap.php"
99 // Load empty core extension 100 require SYSPATH.'classes/kohana'.EXT; 101 } 102 103 // Bootstrap the application 104 require APPPATH.'bootstrap'.EXT;