Add some html to Zend Forms

后端 未结 10 1175
天命终不由人
天命终不由人 2020-11-30 04:17

Im looking for a simple bit of code that will let me add the following html into my zend form:

10条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-11-30 04:56

    You can try this way, no config, just one extension class reference: http://www.zfsnippets.com/snippets/view/id/50

    
     * @package elements
     */
    
    /**
     * Loads helper Zend_View_Helper_FormNote
     */
    
    class Custom_Form_Element_Note extends Zend_Form_Element_Xhtml
    {
        public $helper = 'formNote';
    }
    ?>
    

    then

    $companies->addElement('note', 'companyNote', array(
                'value' => 'Add Company'
            ));
    

提交回复
热议问题