我正在尝试以zend形式添加纯文本节点 - 目的是仅显示一些静态文本。
问题是 - 我不知道有任何这样的方法。
我使用'description'但是要将其附加到表单元素。
有没有办法简单地将一些文字显示为表格的一部分? Zend将所有内容都视为表单元素,因此我不能将其打印出来。
例如:
以下将测试你的能力。 。 。 。
等...
有什么想法吗?
答案 0 :(得分:38)
Zend有一个表单备注视图助手(Zend_View_Helper_FormNote),您可以使用它来添加文本。
只需创建一个新的表单元素(/application/forms/Element/Note.php):
class Application_Form_Element_Note extends Zend_Form_Element_Xhtml
{
public $helper = 'formNote';
}
以您的形式:
$note = new Application_Form_Element_Note(
'test',
array('value' => 'This is a <b>test</b>')
);
$this->addElement($note);
答案 1 :(得分:9)
添加一个带有非转义描述的隐藏元素就可以了。
$form->addElement('hidden', 'plaintext', array(
'description' => 'Hello world! <a href="#">Check it out</a>',
'ignore' => true,
'decorators' => array(
array('Description', array('escape'=>false, 'tag'=>'')),
),
));
完美无缺。它仍然附加到一个元素,但是不会以这种方式呈现。
代码取自:http://paveldubinin.com/2011/04/7-quick-tips-on-zend-form/
答案 2 :(得分:6)
可能有更好的方法,但我使用自定义表单元素和视图助手创建了一个段落。似乎有很多简单的代码。如果你找到了一种更简单的方法,请告诉我。
//From your form, add the MyParagraph element
$this->addElement(new Zend_Form_Element_MyParagraph('myParagraph'));
class Zend_Form_Element_MyParagraph extends Zend_Form_Element
{
public $helper = 'myParagraph';
public function init()
{
$view = $this->getView();
}
}
class Zend_View_Helper_MyParagraph extends Zend_View_Helper_FormElement {
public function init() {
}
public function myParagraph() {
$html = '<p>hello world</p>';
return $html;
}
}
答案 3 :(得分:6)
有点晚了,但我认为为了社区的利益我会把它扔掉。
艾琳已经击中了头部。如果要在Zend_Form中使用文本,则需要FormNote。但是,您可以使用它而无需扩展Zend_Form_Element_Xhtml。见下面的例子:$text = new Zend_Form_Element_Text('myformnote');
$text->setValue("Text goes here")
->helper = 'formNote';
请注意,您可以将text和html与formNote helper一起使用。
答案 4 :(得分:5)
此功能通过Zend_Form_Element_Note构建到Zend中。
$note = new Zend_Form_Element_Note('forgot_password');
$note->setValue('<a href="' . $this->getView()->serverUrl($this->getView()->url(array('action' => 'forgot-password'))) . '">Forgot Password?</a>');
答案 5 :(得分:3)
我面临同样的问题,并决定最好不要使用Zend_Form,而是直接使用视图助手(如Ruby on Rails)并在模型上进行验证。
答案 6 :(得分:0)
这种单线为我工作:
$objectForm->addElement(new Zend_Form_Element_Note('note', array('value' => 'Hello World')));