APPPATH/views/include-templates/2.0/footer1.php [ 56 ]
51
52 </div>
53 <?php }?>
54
55 <!--CONTENT AREA BLOCK 1-->
56 <div id="SecondaryBlock2<?php echo $_SESSION['blockPrefix'];?>Show">
57 <?php
58 $blockContent = Content::factory()->get_list_blocks($siteID,$_SESSION['actmenuID'],'SecondaryBlock2' . $_SESSION['blockPrefix'],$logged);
59 $firstblock = '';
60 $blockcount = 1;
61 foreach($blockContent as $bl) {
APPPATH/views/include-templates/2.0/footer1.php [ 56 ] » Kohana_Core::error_handler()
51 52 </div> 53 <?php }?> 54 55 <!--CONTENT AREA BLOCK 1--> 56 <div id="SecondaryBlock2<?php echo $_SESSION['blockPrefix'];?>Show"> 57 <?php 58 $blockContent = Content::factory()->get_list_blocks($siteID,$_SESSION['actmenuID'],'SecondaryBlock2' . $_SESSION['blockPrefix'],$logged); 59 $firstblock = ''; 60 $blockcount = 1; 61 foreach($blockContent as $bl) {MODPATH/commonusersite/classes/Kohana/View.php [ 85 ] » include(arguments)
0string(76) "/var/www/html/application/CHsiteapps/views/include-templates/2.0/footer1.php"80 ob_start(); 81 82 try 83 { 84 // Load the view within the current scope 85 include $kohana_view_filename; 86 } 87 catch (Exception $e) 88 { 89 // Delete the output buffer 90 ob_end_clean();MODPATH/commonusersite/classes/Kohana/View.php [ 382 ] » Kohana_View::capture()
377 { 378 throw new View_Exception('You must set the file to use within your view before rendering'); 379 } 380 381 // Combine local and global data and capture the output 382 return View::capture($this->_file, $this->_data); 383 } 384 385 }MODPATH/commonusersite/classes/Kohana/View.php [ 259 ] » Kohana_View->render()
254 */ 255 public function __toString() 256 { 257 try 258 { 259 return $this->render(); 260 } 261 catch (Exception $e) 262 { 263 /** 264 * Display the exception message.APPPATH/views/site-templates/2.0/ruth/template-page.php [ 4 ] » Kohana_View->__toString()
1 <?php //if (substr_count($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip')) ob_start("ob_gzhandler"); else ob_start(); ?> 2 <?php echo $header_template;?> 3 <?php echo $content_template;?> 4 <?php echo $footer_template;?> 5 <?php //mysql_close();?>MODPATH/commonusersite/classes/Kohana/View.php [ 85 ] » include(arguments)
0string(84) "/var/www/html/application/CHsiteapps/views/site-templates/2.0/ruth/template-page.php"80 ob_start(); 81 82 try 83 { 84 // Load the view within the current scope 85 include $kohana_view_filename; 86 } 87 catch (Exception $e) 88 { 89 // Delete the output buffer 90 ob_end_clean();MODPATH/commonusersite/classes/Kohana/View.php [ 382 ] » Kohana_View::capture()
377 { 378 throw new View_Exception('You must set the file to use within your view before rendering'); 379 } 380 381 // Combine local and global data and capture the output 382 return View::capture($this->_file, $this->_data); 383 } 384 385 }MODPATH/commonusersite/classes/Kohana/View.php [ 259 ] » Kohana_View->render()
254 */ 255 public function __toString() 256 { 257 try 258 { 259 return $this->render(); 260 } 261 catch (Exception $e) 262 { 263 /** 264 * Display the exception message.MODPATH/commonusersite/classes/HTMLmin.php [ 73 ] » Kohana_View->__toString()
68 * 69 * @return null 70 */ 71 public function __construct($html, $options = array()) 72 { 73 $this->_html = str_replace("\r\n", "\n", trim((string) $html)); 74 if (isset($options['xhtml'])) { 75 $this->_isXhtml = (bool)$options['xhtml']; 76 } 77 if (isset($options['cssMinifier'])) { 78 $this->_cssMinifier = $options['cssMinifier'];MODPATH/commonusersite/classes/HTMLmin.php [ 46 ] » HTMLmin->__construct()
41 * unset, minify will sniff for an XHTML doctype. 42 * 43 * @return string 44 */ 45 public static function minify($html, $options = array()) { 46 $min = new self($html, $options); 47 return $min->process(); 48 } 49 50 51 /**APPPATH/classes/Controller/Site.php [ 1026 ] » HTMLmin::minify()
1021 } 1022 1023 // Only minify for logged-out users (who benefit from full-page cache) 1024 // Logged-in users get unminified HTML for faster TTFB 1025 if (!$this->logged) { 1026 $this->response->body(HTMLmin::minify($this->template)); 1027 1028 // Cache full page only when no user session exists (no admin, no site member) 1029 // and the page is not password-protected. 1030 $anyUserLoggedIn = !empty(Session::DB()->get('user_logon')); 1031 if (!$anyUserLoggedIn && !$this->protectedPage && !General::factory()->isPageProtected($this->siteID, $this->currentURI)) {APPPATH/classes/Controller/section.php [ 12 ] » Controller_Site->after()
7 public $initLiveStreamOn = FALSE; 8 9 public function after() 10 { 11 12 parent::after(); 13 } 14 15 private function set_template_home() 16 { 17 //$this->template->content_template = View::factory('pages/home/index');SYSPATH/classes/Kohana/Controller.php [ 109 ] » Controller_section->after()
104 105 // Execute the action itself 106 $this->{$action}(); 107 108 // Execute the "after action" method 109 $this->after(); 110 111 // Return the response 112 return $this->response; 113 } 114{PHP internal call} » Kohana_Controller->execute()
SYSPATH/classes/Kohana/Request/Client/Internal.php [ 84 ] » ReflectionMethod->invoke()
79 80 // Create a new instance of the controller 81 $controller = $class->newInstance($request, $response); 82 83 // Run the controller's execute() method 84 $response = $class->getMethod('execute')->invoke($controller); 85 86 if (! $response instanceof Response) { 87 // Controller failed to return a Response. 88 throw new Kohana_Exception('Controller failed to return a Response'); 89 }SYSPATH/classes/Kohana/Request/Client.php [ 117 ] » Kohana_Request_Client_Internal->execute_request()
112 113 if (($cache = $this->cache()) instanceof HTTP_Cache) { 114 return $cache->execute($this, $request, $response); 115 } 116 117 $response = $this->execute_request($request, $response); 118 119 // Execute response callbacks 120 foreach ($this->header_callbacks() as $header => $callback) { 121 if ($response->headers($header)) { 122 $cb_result = call_user_func($callback, $request, $response, $this);SYSPATH/classes/Kohana/Request.php [ 869 ] » Kohana_Request_Client->execute()
864 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', [ 865 ':uri' => $this->_uri, 866 ]); 867 } 868 869 return $this->_client->execute($this); 870 } 871 872 /** 873 * Returns whether this request is the initial request KO7 received. 874 * Can be used to test for sub requests.DOCROOT/sites/index.php [ 117 ] » Kohana_Request->execute()
112 /** 113 * Execute the main request. A source of the URI can be passed, eg: $_SERVER['PATH_INFO']. 114 * If no source is specified, the URI will be automatically detected. 115 */ 116 echo Request::factory(TRUE, [], FALSE) 117 ->execute() 118 ->send_headers(TRUE) 119 ->body(); 120 }