「お問い合わせ」ページにフォームを作成したいと思います。私はこのチュートリアルに従っています。sfWidget を使用するには sfFrom クラスを拡張する必要がありますが、私のコードでは既に BaseController を拡張しています。
新しいクラスを作成せずにこれを行う解決策はありますか?
class InfoController extends BaseController
{
/**
*
* @Route("/contactus", name="info_contactus_page")
* @Template()
*/
public function contactusAction()
{
return array();
}
}