Ejemplo n.º 1
0
Archivo: Qa.php Proyecto: 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');
 }