Beispiel #1
0
 public function bindHelp()
 {
     $where['id'] = $this->_get('id', 'intval');
     $where['uid'] = session('uid');
     $thisWx = apiInfo::info($this->user['id'], intval($_GET['id']));
     $this->assign('wxuser', $thisWx);
     $this->display();
 }
Beispiel #2
0
 public function help()
 {
     if (isset($_GET['token'])) {
         if (isset($_SESSION['uid'])) {
             $thisWx = apiInfo::info($_SESSION['uid'], 0, $this->_get('token'));
             $this->assign('wxuser', $thisWx);
         } else {
             $this->error('无权查看');
         }
     }
     $this->display($this->home_theme . ':Index:' . ACTION_NAME);
 }
Beispiel #3
0
 public function bindHelp()
 {
     $where["id"] = $this->_get("id", "intval");
     $where["uid"] = session("uid");
     $thisWx = apiInfo::info($this->user["id"], intval($_GET["id"]));
     $this->assign("wxuser", $thisWx);
     $this->display();
 }