Example #1
0
 public function settongjiAction()
 {
     $tongji = new TongjiModel();
     $tongji->check($_GET["code"]);
 }
Example #2
0
 public function sAction()
 {
     $index = $this->intVal(3);
     $other = $this->strVal(4);
     if (count($this->__uriparts) != 5 || !empty($other)) {
         header('HTTP/1.1 301 Moved Permanently');
         header("location: /home/s/{$index}/");
     }
     $allModel = new AllModel();
     $newsModel = new NewsModel();
     $tongji = new TongjiModel();
     $dataall = $tongji->data("all");
     $hotnews = $tongji->hotnews(10);
     $threads = $allModel->allThreads(1, 10);
     $news = $newsModel->oneNews($index);
     $comments = $newsModel->commentsByNewsId($index);
     $nonamename = $_COOKIE["nonamename"];
     if (empty($nonamename)) {
         $nonamename = "匿名用户" . rand(0, 10000);
         setcookie("nonamename", $nonamename, time() + 3600 * 24 * 7 * 2);
     }
     $this->_mainContent->assign("threads", $threads);
     $this->_mainContent->assign("news", $news);
     $this->_mainContent->assign("comments", $comments);
     $this->_mainContent->assign("userid", $this->userid);
     $this->_mainContent->assign("username", $this->username);
     $this->_mainContent->assign("nonamename", $nonamename);
     $this->_mainContent->assign("pageview", $dataall[$index]);
     $this->_mainContent->assign("hotnews", $hotnews);
     $publickey = "6LcGEuMSAAAAAOKJbYerrUqiotwH4wHyYr5E0Y-w";
     $recaptcha = recaptcha_get_html($publickey);
     $this->_mainContent->assign("recaptcha", $recaptcha);
     $this->setTitle($news["title"]);
     $this->display();
 }