-
APPPATH/Views/blog-detail.php : 47 — CodeIgniter\Debug\Exceptions->errorHandler ()
40 <section class="layout-pt-md layout-pb-md"> 41 <div class="container"> 42 <div class="row"> 43 <div class="col-lg-9"> 44 <div class="blogSection pr-30 lg:pr-0"> 45 <div class="blogCard"> 46 <div class="blogCard__image"> 47 <img src="<?=base_url()?>uploads/blog/<?=$blog['image']?>" alt="" > 48 </div> 49 <div class="blogCard__content mt-20"> 50 <div class="blogCard__category x-gap-20 mb-8"> 51 <a class="uppercase text-accent" href="#">APRIL 06, 2021</a> 52 <a class="uppercase text-accent" href="#">Floyd Miles</a> 53 </div> 54 <?=$blog['overview']?>
-
include SYSTEMPATH/View/View.php — include()
-
SYSTEMPATH/View/View.php : 237 — CodeIgniter\View\View->CodeIgniter\View\{closure} ()
230 231 $output = (function (): string { 232 extract($this->tempData); 233 ob_start(); 234 include $this->renderVars['file']; 235 236 return ob_get_clean() ?: ''; 237 })(); 238 239 // Get back current vars 240 $this->renderVars = $renderVars; 241 242 // When using layouts, the data has already been stored 243 // in $this->sections, and no other valid output 244 // is allowed in $output so we'll overwrite it.
-
SYSTEMPATH/Common.php : 1171 — CodeIgniter\View\View->render ()
1164 $saveData = $config->saveData; 1165 1166 if (array_key_exists('saveData', $options)) { 1167 $saveData = (bool) $options['saveData']; 1168 unset($options['saveData']); 1169 } 1170 1171 return $renderer->setData($data, 'raw')->render($name, $options, $saveData); 1172 } 1173 } 1174 1175 if (! function_exists('view_cell')) { 1176 /** 1177 * View cells are used within views to insert HTML chunks that are managed 1178 * by other classes.
-
APPPATH/Controllers/Home.php : 69 — view()
-
SYSTEMPATH/CodeIgniter.php : 933 — App\Controllers\Home->blogdetail ()
926 // This is a Web request or PHP CLI request 927 $params = $this->router->params(); 928 929 // The controller method param types may not be string. 930 // So cannot set `declare(strict_types=1)` in this file. 931 $output = method_exists($class, '_remap') 932 ? $class->_remap($this->method, ...$params) 933 : $class->{$this->method}(...$params); 934 935 $this->benchmark->stop('controller'); 936 937 return $output; 938 } 939 940 /**
-
SYSTEMPATH/CodeIgniter.php : 509 — CodeIgniter\CodeIgniter->runController ()
502 if (! method_exists($controller, '_remap') && ! is_callable([$controller, $this->method], false)) { 503 throw PageNotFoundException::forMethodNotFound($this->method); 504 } 505 506 // Is there a "post_controller_constructor" event? 507 Events::trigger('post_controller_constructor'); 508 509 $returned = $this->runController($controller); 510 } else { 511 $this->benchmark->stop('controller_constructor'); 512 $this->benchmark->stop('controller'); 513 } 514 515 // If $returned is a string, then the controller output something, 516 // probably a view, instead of echoing it directly. Send it along
-
SYSTEMPATH/CodeIgniter.php : 355 — CodeIgniter\CodeIgniter->handleRequest ()
348 $possibleResponse = $this->runRequiredBeforeFilters($filters); 349 350 // If a ResponseInterface instance is returned then send it back to the client and stop 351 if ($possibleResponse instanceof ResponseInterface) { 352 $this->response = $possibleResponse; 353 } else { 354 try { 355 $this->response = $this->handleRequest($routes, config(Cache::class), $returnResponse); 356 } catch (DeprecatedRedirectException|ResponsableInterface $e) { 357 $this->outputBufferingEnd(); 358 if ($e instanceof DeprecatedRedirectException) { 359 $e = new RedirectException($e->getMessage(), $e->getCode(), $e); 360 } 361 362 $this->response = $e->getResponse();
-
SYSTEMPATH/Boot.php : 325 — CodeIgniter\CodeIgniter->run ()
318 319 /** 320 * Now that everything is set up, it's time to actually fire 321 * up the engines and make this app do its thang. 322 */ 323 protected static function runCodeIgniter(CodeIgniter $app): void 324 { 325 $app->run(); 326 } 327 328 protected static function saveConfigCache(FactoriesCache $factoriesCache): void 329 { 330 $factoriesCache->save('config'); 331 } 332
-
SYSTEMPATH/Boot.php : 67 — CodeIgniter\Boot::runCodeIgniter ()
60 if ($configCacheEnabled) { 61 $factoriesCache = static::loadConfigCache(); 62 } 63 64 static::autoloadHelpers(); 65 66 $app = static::initializeCodeIgniter(); 67 static::runCodeIgniter($app); 68 69 if ($configCacheEnabled) { 70 static::saveConfigCache($factoriesCache); 71 } 72 73 // Exits the application, setting the exit code for CLI-based 74 // applications that might be watching.
-
FCPATH/index.php : 57 — CodeIgniter\Boot::bootWeb ()
50 // ^^^ Change this line if you move your application folder 51 52 $paths = new Config\Paths(); 53 54 // LOAD THE FRAMEWORK BOOTSTRAP FILE 55 require $paths->systemDirectory . '/Boot.php'; 56 57 exit(CodeIgniter\Boot::bootWeb($paths)); 58