タグ

ブックマーク / mindia.jp (1)

  • Zend_Form+Smarty | akkun_choi pedia

    Zend_FormのレンダリングにはZend_View_Interfaceが必要です。でもこのZend_View_Interfaceの実装がなかなか大変。Zend_Formは要素の出力にZend_View_Helperを使ってるし…、もしかしてこれ全部実装しないといけないのか…? 考え出すとなんか大変な気がするので、ここはもう諦めて、Zend_View_AbstractでZend_Form_Elementをrenderしちゃいます。その後でSmartyテンプレートを使って各要素を出力していくという手法を取りましょう。 getSmarty(); // Smarty $fh = $this->getFormHelper(); // FormHelper if ($errors = $fh->errors()){ $smarty->assign('message', $errors); } $s

  • 1