/home1/tichenne/public_html/ncca/noah/modules/app/app.php [ 215 ]
210 // Params cannot be changed once matched
211 $this->_params = $params;
212 }
213 else
214 {
215 throw new Request_Exception('Unable to find a route to match the URI: {uri}',
216 array('{uri}' => $uri));
217 }
218 }
219
220 /**
-
/home1/tichenne/public_html/ncca/noah/modules/app/app.php [ 86 ] » App->_preExecute()
81 if ($started) 82 return; 83 84 spl_autoload_register(array($this, 'autoload')); 85 86 $this->_preExecute(); 87 $this->_execute(); 88 89 $started = true; 90 91 return $this; -
/home1/tichenne/public_html/ncca/admin/adminroot/index.php [ 43 ] » App->start()
38 'id' => '', 39 )); 40 41 $debug = Noah::instance('Debug'); 42 43 Noah::instance('App')->start()->render();