フォームヘルパー

<form>タグ
form_tag(action, オプション)
※defaultでmethod="post"となる
<label>タグ
label_for(フォーム部品で指定したID属性, ラベルの値, オプション)
<submit>タグ
submit_tag(value, オプション)
※nameを指定しないとcommitとなる(getの場合、?commit=value)
<reset>タグ
reset_tag(value, オプション)
<input type="radiobox">タグ
radiobutton_tag(name, value, checked(true/false), オプション)
<input type="checkbox">タグ
checkbox_tag(name, value, checked(true/false), オプション)
<input type="hidden">タグ
input_hidden_tag(name, value, オプション, デフォルトのvalue)
<input type="password">タグ
input_password_tag(name, value, オプション)
<textarea>タグ
textarea_tag(name, コンテンツの値, オプション)
<select>タグ
select_tag(name, optionタグのhtml, オプション)
options_for_select(optionタグ用の配列, 選択済みにするキー, オプション)
日付選択タグ
input_date_tag(name, デフォルトの年月日, オプション)

[symfony 1.0.9]