如何回显 Zend 表单前面的单个文本行?
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试执行以下操作。添加表单描述
更改表单装饰器的链接
Try to do following. Add link to form description
change form decorator