-
APPPATH/Controllers/DaftarBeasiswa.php : 177 — CodeIgniter\Debug\Exceptions->errorHandler ()
170 . view('BeasiswaTeknokrat/layout/footer'); 171 } 172 $list_beasiswa = $usemodel->get_kelas(); 173 $beasiswa = $usemodel->get_byParse('daftar_beasiswa', 'url', $url_beasiswa); 174 175 $kampus = $usemodel->get_byParse('tb_kampus', 'url', $url_kampus); 176 // dd($url_kampus); 177 $nama_kampus = $kampus[0]->nama; 178 179 $title = $beasiswa[0]->nama . " di " . $kampus[0]->nama; 180 181 $view = $beasiswa[0]->kategori; 182 $data = [ 183 'title' => $title, 184 // 'url' => "daftar/$url-di",
-
SYSTEMPATH/CodeIgniter.php : 941 — App\Controllers\DaftarBeasiswa->informasiBeasiswa ()
934 protected function runController($class) 935 { 936 // This is a Web request or PHP CLI request 937 $params = $this->router->params(); 938 939 $output = method_exists($class, '_remap') 940 ? $class->_remap($this->method, ...$params) 941 : $class->{$this->method}(...$params); 942 943 $this->benchmark->stop('controller'); 944 945 return $output; 946 } 947 948 /**
-
SYSTEMPATH/CodeIgniter.php : 502 — CodeIgniter\CodeIgniter->runController ()
495 if (! method_exists($controller, '_remap') && ! is_callable([$controller, $this->method], false)) { 496 throw PageNotFoundException::forMethodNotFound($this->method); 497 } 498 499 // Is there a "post_controller_constructor" event? 500 Events::trigger('post_controller_constructor'); 501 502 $returned = $this->runController($controller); 503 } else { 504 $this->benchmark->stop('controller_constructor'); 505 $this->benchmark->stop('controller'); 506 } 507 508 // If $returned is a string, then the controller output something, 509 // probably a view, instead of echoing it directly. Send it along
-
SYSTEMPATH/CodeIgniter.php : 361 — CodeIgniter\CodeIgniter->handleRequest ()
354 355 $this->getRequestObject(); 356 $this->getResponseObject(); 357 358 $this->spoofRequestMethod(); 359 360 try { 361 $this->response = $this->handleRequest($routes, config(Cache::class), $returnResponse); 362 } catch (ResponsableInterface|DeprecatedRedirectException $e) { 363 $this->outputBufferingEnd(); 364 if ($e instanceof DeprecatedRedirectException) { 365 $e = new RedirectException($e->getMessage(), $e->getCode(), $e); 366 } 367 368 $this->response = $e->getResponse();
-
FCPATH/index.php : 81 — CodeIgniter\CodeIgniter->run ()
74 *--------------------------------------------------------------- 75 * LAUNCH THE APPLICATION 76 *--------------------------------------------------------------- 77 * Now that everything is set up, it's time to actually fire 78 * up the engines and make this app do its thang. 79 */ 80 81 $app->run(); 82 83 // Save Config Cache 84 // $factoriesCache->save('config'); 85 // ^^^ Uncomment this line if you want to use Config Caching. 86 87 // Exits the application, setting the exit code for CLI-based applications 88 // that might be watching.