2013-07-25から1日間の記事一覧

symfony2 controllerからのformTypeの操作

php

choice生成用の配列の受け渡しとselectedの設定controller側 $data = array( '1'=> 'a', '2'=>'b'); $form = $this->createForm( new hogeType(), $data ); //selectedの設定。例はbの項目がselectedになる $form->get('foo')->setData('2'); hogeType publi…