APPPATH/views/pages/modules/2.0/sermons.php [ 1253 ]
1248 } //end loop sermons
1249 ?>
1250 <!--SERMON LIST CONTAINER-->
1251 </div>
1252
1253 <div class="row <?php echo (!$_SESSION['moreLoadSermonOrSeries']) ? 'hide' : ''; ?>" id="srmbtnLoadMore">
1254 <div class="col-lg-12 col-md-12 col-sm-12 col-xs-12" style="text-align:center">
1255 <input type="hidden" id="offsetpage" name="offsetpage" value="0"/>
1256 <?php
1257 $LoadMoreBtntxt = General::factory()->get_global('LoadMoreBtntxt',$siteID);
1258 ?>
APPPATH/views/pages/modules/2.0/sermons.php [ 1253 ] » Kohana_Core::error_handler()
1248 } //end loop sermons 1249 ?> 1250 <!--SERMON LIST CONTAINER--> 1251 </div> 1252 1253 <div class="row <?php echo (!$_SESSION['moreLoadSermonOrSeries']) ? 'hide' : ''; ?>" id="srmbtnLoadMore"> 1254 <div class="col-lg-12 col-md-12 col-sm-12 col-xs-12" style="text-align:center"> 1255 <input type="hidden" id="offsetpage" name="offsetpage" value="0"/> 1256 <?php 1257 $LoadMoreBtntxt = General::factory()->get_global('LoadMoreBtntxt',$siteID); 1258 ?>
MODPATH/commonusersite/classes/Kohana/View.php [ 85 ] » include(arguments)
0
string(72) "/var/www/html/application/CHsiteapps/views/pages/modules/2.0/sermons.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/light/template-page.php [ 3 ] » 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)
0
string(85) "/var/www/html/application/CHsiteapps/views/site-templates/2.0/light/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 [ 1133 ] » HTMLmin::minify()
1128 1129 } 1130 1131 } 1132 1133 $this->response->body(HTMLmin::minify($this->template)); 1134 /** CLEAN UP VARIABLE */ 1135 unset($this->activeTheme); 1136 unset($this->template); 1137 unset(Database::$instances['churchspring']); 1138 /** CLEAN UP VARIABLE */
APPPATH/classes/Controller/sermons.php [ 9 ] » Controller_Site->after()
4 5 public $section; 6 public $auto_render; 7 8 public function after() { 9 parent::after(); 10 } 11 12 public function action_index() { 13 $module = $this->request->param('urlRoute'); 14 $reqact = $this->request->param('reqact');
SYSPATH/classes/Kohana/Controller.php [ 109 ] » Controller_sermons->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 }