</div> <div>Email: <?php echo $this->user_email; ?> </div> <div>Avatar: <?php if (Config::get('USE_GRAVATAR')) { ?> Your gravatar pic (on gravatar.com): <img src='<?php echo $this->user_gravatar_image_url; ?> ' /> <?php } else { ?> Picture: <img src='<?php echo $this->user_avatar_file; ?> ' /> <?php } ?> </div> <div>Your account type is: <?php echo AllModel::getAccountType($this->user_account_type); ?> </div> </div> </div>
<td>Class Name</td> <td>Answer</td> </tr> </thead> <?php foreach ($answerList as $answer) { ?> <tr> <td><?php echo AllModel::getTruncatedSectionText($answer['section_id']); ?> </td> <td><?php echo AllModel::getBookTitle($answer['book_id']); ?> </td> <td><?php echo AllModel::getClassName($answer['class_id']); ?> </td> <td><?php echo $answer['tag']; ?> </td> </tr> <?php } ?> </table> </div>
<td>Section Text</td> <td>Number of answers</td> <td>Dominant Tag</td> <td>Agreement (%)</td> </tr> </thead> <?php foreach ($this->section_data as $section) { ?> <tr> <td><?php echo AllModel::getBookTitle($section->book_id); ?> </td> <td><?php echo AllModel::getTruncatedSectionText($section->section_id); ?> </td> <td><?php echo $section->num_answers; ?> </td> <td><?php echo $section->dominant_tag; ?> </td> <td><?php $res = (double) $section->dominant_tag_count / (double) $section->num_answers; if ($res > 0.7) { echo '<font color="green">'; echo $res;
<?php $this->renderFeedbackMessages(); $section_id = $_GET['section_id']; ?> <div class="container"> <center><strong>Section number <?php echo $section_id; ?> </center></strong> <p><?php echo AllModel::getSectionText($section_id); ?> </p> </div>
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(); }