Example #1
0
 /**
  * Performs the enrouting of the URLs
  * of the framework
  *
  * @return bool
  */
 private function _enroute()
 {
     $this->_url = Request::getServerURL();
     $this->_checkSpecialRoute();
     $url = $this->_getRoutePath($this->_url);
     $result = $this->toParams($url);
     $this->_enrouteResult = $result;
     return $result;
 }