示例#1
0
文件: Qa.php 项目: bono-cms/Qa
 /**
  * Renders empty form
  * 
  * @return string
  */
 public function addAction()
 {
     $qa = new VirtualEntity();
     $qa->setTimestampAsked(time())->setTimestampAnswered(time())->setPublished(true);
     return $this->createForm($qa, 'Add a pair');
 }