如何回显 Zend 表单前面的单个文本行?

发布于 2024-12-02 13:35:19 字数 388 浏览 1 评论 0原文

我有一个 Zend_Form 正在由我的控制器的 indexAction 调用。这是特定用户类型的登录表单。如何在我的 IndexController 中的其他控制器中创建指向其他登录表单的超链接。例如,IndexController 应显示员工登录(不是员工,而是雇主在此处登录),其中此处是指向雇主索引控制器的超链接。这是我的主页或索引控制器的内容:

class IndexController extends Zend_Controller_Action
{
public $form;


public function indexAction()
{

    $form = new LoginForm();

    $form->renderForm();
}
}

谢谢!

I have a Zend_Form that is being called by the indexAction of my controller. It's a login form for a certain user type. How do I create a hyperlink to the other login forms in other controllers in my IndexController. For example, the IndexController should display Employee Login (not an employee, employers login here) where here is hyperlinked to the employer indexcontroller. Here's the content of my home page or indexcontroller:

class IndexController extends Zend_Controller_Action
{
public $form;


public function indexAction()
{

    $form = new LoginForm();

    $form->renderForm();
}
}

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

世态炎凉 2024-12-09 13:35:19

尝试执行以下操作。添加表单描述

$form->setDescription('<a href="path">Go</a>');

更改表单装饰器的链接

 $form->setDecorators(
            array(
                'FormElements',
                array(
                    'Fieldset',
                    array(
                        'legend' => 'Login'
                    )
                ),
                'Form',
                 array(
                    'Description', 
                    array('escape' => false, 'tag' => false)
                )
            )
        );

Try to do following. Add link to form description

$form->setDescription('<a href="path">Go</a>');

change form decorator

 $form->setDecorators(
            array(
                'FormElements',
                array(
                    'Fieldset',
                    array(
                        'legend' => 'Login'
                    )
                ),
                'Form',
                 array(
                    'Description', 
                    array('escape' => false, 'tag' => false)
                )
            )
        );
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文