/** * Get the instance of AppparserUri * * @return Core_HTTP_Url */ public static function load() { if (null === self::$_singleton) { self::$_singleton = new self(); } return self::$_singleton; }
/** * Setup URL parser * * @return Core_HTTP_Url */ protected function _initUrlParser() { Core_Loader::load('Core_HTTP_Url'); $urlParser = Core_HTTP_Url::load(); return $urlParser; }