...斐伊川
我想在使用zend表单的内容描述之间链接文本超链接,请建议我如何做到这一点?提前。这是代码,我试图让文本超链接,它不起作用,而不是显示内容。
$selectTemplate = new Zend_Form_Element_Hidden('report_template');
$selectTemplate->setLabel('Select Template:')
->setDescription('No message templates have been added, add a message template <a href="admin-report-addreporttemplate">here</a>');
答案 0 :(得分:4)
您需要将Description装饰器的escape选项设置为false:
$selectTemplate->getDecorator('description')->setOption('escape', false);