SYSPATH/classes/kohana/request.php [ 230 ]
225 // REQUEST_URI and PHP_SELF include the docroot and index
226
227 if (isset($_SERVER['REQUEST_URI']))
228 {
229 // REQUEST_URI includes the query string, remove it
230 $uri = parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH);
231
232 // Decode the request URI
233 $uri = rawurldecode($uri);
234 }
235 elseif (isset($_SERVER['PHP_SELF']))
-
{PHP internal call} » Kohana_Core::error_handler()
-
SYSPATH/classes/kohana/request.php [ 230 ] » parse_url(arguments)
urlstring(51) "/page/2//%22http://www.nationalparknockberge.at/%22"componentinteger 5
225 // REQUEST_URI and PHP_SELF include the docroot and index 226 227 if (isset($_SERVER['REQUEST_URI'])) 228 { 229 // REQUEST_URI includes the query string, remove it 230 $uri = parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH); 231 232 // Decode the request URI 233 $uri = rawurldecode($uri); 234 } 235 elseif (isset($_SERVER['PHP_SELF'])) -
APPPATH/views/template/header.php [ 30 ] » Kohana_Request::instance()
25 </ul> 26 27 </div> 28 29 <?php 30 $sControl = Request::instance()->param('lang'); 31 $number = rand(1,7); 32 $link = "{$sBase}media/swf/gasthof_durigon.swf"; 33 34 //$link = "{$sBase}media/swf/gasthof_durigon_na_zime.swf"; 35 if(!empty($sControl)){ -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(77) "/homepages/15/d241899427/htdocs/durigon/application/views/template/header.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 [ 343 ] » Kohana_View::capture(arguments)
0string(77) "/homepages/15/d241899427/htdocs/durigon/application/views/template/header.php"338 { 339 throw new Kohana_View_Exception('You must set the file to use within your view before rendering'); 340 } 341 342 // Combine local and global data and capture the output 343 return View::capture($this->_file, $this->_data); 344 } 345 346 } // 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 // Display the exception message 233 Kohana::exception_handler($e); -
APPPATH/views/template/index.php [ 91 ] » Kohana_View->__toString()
86 <div class="tail-top"> 87 <div class="tail-bottom"> 88 <div id="main"> 89 <!-- header --> 90 <div id="header"> 91 <?php echo isset($oHeader) ? $oHeader : '' ;?> 92 </div> 93 <!-- content --> 94 <div id="content"> 95 <div class="wrapper"> 96 <div class="col-1"> -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(76) "/homepages/15/d241899427/htdocs/durigon/application/views/template/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 [ 343 ] » Kohana_View::capture(arguments)
0string(76) "/homepages/15/d241899427/htdocs/durigon/application/views/template/index.php"338 { 339 throw new Kohana_View_Exception('You must set the file to use within your view before rendering'); 340 } 341 342 // Combine local and global data and capture the output 343 return View::capture($this->_file, $this->_data); 344 } 345 346 } // 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 // Display the exception message 233 Kohana::exception_handler($e); -
APPPATH/bootstrap.php [ 174 ] » Kohana_View->__toString()
169 $total = array( 170 '1,054.60KB' => number_format((memory_get_peak_usage() - KOHANA_START_MEMORY) / 1024, 2).'KB', 171 '0.03239 seconds' => number_format(microtime(TRUE) - KOHANA_START_TIME, 5).' seconds'); 172 173 // Insert the totals into the response 174 $request->response = strtr((string) $request->response, $total); 175 } 176 177 178 179 /** -
DOCROOT/index.php [ 103 ] » require(arguments)
0string(65) "/homepages/15/d241899427/htdocs/durigon/application/bootstrap.php"98 // Load empty core extension 99 require SYSPATH.'classes/kohana'.EXT; 100 } 101 102 // Bootstrap the application 103 require APPPATH.'bootstrap'.EXT;




