Write hyperlink inside the Zend Form?

无人久伴 提交于 2019-11-30 05:07:54

I've faced the same problem before, and solved it by creating a custom Zend_Form_Element_Html, as follows:

class Zend_Form_Element_Html extends Zend_Form_Element_Xhtml {
    /**
     * Default form view helper to use for rendering
     * @var string
     */
    public $helper = 'formNote';

    public function isValid($value, $context = null) {
        return true;
    }
}

So, in your form you just have to do the following:

$tag = new Zend_Form_Element_Html('forgetPassword');
$tag->setValue('<a href="/forgotten-pwd">Forgotten your password?</a>');
$this->addElement($tag);

Hope this helps!

In your viewscript file where you print the form, e.g. login.phtml

echo $this->form;

you can specify any other html markup, e.g. links

echo "<p><a href='".$this->url ( array ('controller' => 'authentication',
                                        'action' => 'lostPW' ) )."'>
      Lost pw </a></p>";

So you actually do not write it in the form itself but in the view script where you echo the form.

Try this:

$passwordElement->setDescription('<a href="">Forgot password?</a>');
$passwordElement->getDecorator('Description')->setOption('escape', false);

Description decorator will add this text beside your field.

You can use Zend_Form_Decorator_ViewScript

Or, create a custom Zend_Form_Element to render HTML elements or ViewScript.

For only decorators use directly in the form try:

        $this->addElement(new Zend_Form_Element_Note(array(
            'name' => 'forgotten',
            'value' => __('Forgot your password?'),
            'decorators' => array(
                array('ViewHelper'),
                array('HtmlTag', array(
                    'tag' => 'a',
                    'href' => $this->getView()->url(array(
                        'remind'
                    ))
                )),

            )
        )), 'forgotten');
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!