コード例 #1
0
ファイル: url.php プロジェクト: reestyle-it/Kanban-wa
 /**
  * Get the instance of AppparserUri
  *
  * @return Core_HTTP_Url
  */
 public static function load()
 {
     if (null === self::$_singleton) {
         self::$_singleton = new self();
     }
     return self::$_singleton;
 }
コード例 #2
0
ファイル: main.php プロジェクト: reestyle-it/Kanban-wa
 /**
  * Setup URL parser
  * 
  * @return Core_HTTP_Url
  */
 protected function _initUrlParser()
 {
     Core_Loader::load('Core_HTTP_Url');
     $urlParser = Core_HTTP_Url::load();
     return $urlParser;
 }