示例#1
0
 function detailAction()
 {
     $this->_helper->layout->setLayout('layout-polling');
     $this->_helper->layout->setLayoutPath(array('layoutPath' => ROOT_DIR . '/app/modules/polling/layouts'));
     $pollId = $this->_getParam('guid') ? $this->_getParam('guid') : '';
     $tblPolling = new Pandamp_Modules_Misc_Poll_Model_Poll();
     $time = time();
     $date = date("Y-m-d H:i:s", $time);
     $rowPoll = $tblPolling->fetchRow("guid='{$pollId}' AND checkedTime < '{$date}'", "checkedTime DESC");
     $this->view->rowPoll = $rowPoll;
     $this->view->pollId = $pollId;
 }