我想在我的“联系我们”页面中创建一个表格。我正在关注本教程。我必须扩展 sfFrom 类才能使用 sfWidget,但在我的代码中我已经扩展了 BaseController。
有什么解决方案可以在不开设新课程的情况下做到这一点吗?
class InfoController extends BaseController
{
/**
*
* @Route("/contactus", name="info_contactus_page")
* @Template()
*/
public function contactusAction()
{
return array();
}
}