Ejemplo n.º 1
0
 function __construct()
 {
     parent::__construct();
     //获取楼盘ID
     $this->mId = isset($_GET['id']) ? intval($_GET['id']) : $this->mId;
     $this->mNewId = isset($_GET['nid']) ? intval($_GET['nid']) : $this->mNewId;
 }
Ejemplo n.º 2
0
 function __construct()
 {
     parent::__construct();
     $this->mTitle = '楼盘搜索';
     $this->mKeyword = '楼盘搜索';
     $this->mDescription = '楼盘搜索';
     $this->mNavType = 'fangyuan';
 }
Ejemplo n.º 3
0
 function __construct()
 {
     parent::__construct();
     $this->mTitle = '楼盘详细信息';
     $this->mKeyword = '楼盘详细信息';
     $this->mDescription = '楼盘详细信息';
     $this->mNavType = 'detail';
     $this->mId = isset($_GET['id']) ? trim($_GET['id']) : $this->mId;
     $this->mKey = "Loupan:Detail:{$this->mId}";
 }
Ejemplo n.º 4
0
 function __construct()
 {
     parent::__construct();
     $this->mTitle = '楼盘详细信息';
     $this->mKeyword = '楼盘详细信息';
     $this->mDescription = '楼盘详细信息';
     $this->mNavType = 'huxing';
     $this->mHid = isset($_GET['hid']) ? intval($_GET['hid']) : $this->mHid;
     //户型ID
     $this->mRoom = isset($_GET['room']) ? intval($_GET['room']) : $this->mRoom;
     //户型类型
     $this->mId = isset($_GET['id']) ? intval($_GET['id']) : $this->mId;
     //楼盘ID
 }
Ejemplo n.º 5
0
 function __construct()
 {
     parent::__construct();
     //获取楼盘ID
     $this->mId = isset($_GET['id']) ? intval($_GET['id']) : $this->mId;
     $this->mLoupanDetailKey = $this->mLoupanDetailKey . ':' . $this->mId;
     //获取当前页
     if (isset($_GET['page'])) {
         $this->mPage = intval($_GET['page']);
         if ($this->mPage < 1) {
             $this->mPage = 1;
         }
     }
 }
Ejemplo n.º 6
0
 function __construct()
 {
     parent::__construct();
     $this->mId = isset($_GET['id']) ? intval($_GET['id']) : $this->mId;
 }