示例#1
0
文件: uri.php 项目: rundiz/fuel-start
 public function __construct($uri = null)
 {
     parent::__construct($uri);
     $this->detectLanguage();
 }
示例#2
0
 /**
  * EXTENDED URI FUEL CORE CLASS
  *
  * Construct takes a URI or detects it if none is given and generates
  * the segments.
  *
  *
  * @param   string  The URI
  * @return  void
  */
 public function __construct($uri = null)
 {
     parent::__construct($uri);
     $this->_old_uri = $this->uri;
     $this->_set_correct_segments();
 }
示例#3
0
文件: uri.php 项目: khoapld/wjshop
 public function __construct($uri = NULL)
 {
     parent::__construct($uri);
     $this->detect_language();
 }