Вот что я сделал, чтобы найти элементы XML5.
Сначала я создал пользовательский элемент формы: library / Custom / Form / Element / Html5.php
<?php
/** Zend_Form_Element_Xhtml */
require_once 'Zend/Form/Element/Xhtml.php';
class Custom_Form_Element_Html5 extends Zend_Form_Element_Xhtml
{
public $helper = 'formHtml5';
}
ЗатемЯ создал пользовательский помощник вида: library / Custom / View / Helper / FormHtml5.php
<?php
/**
* Abstract class for extension
*/
require_once 'Zend/View/Helper/FormElement.php';
/**
* Helper to generate an "Html5" element
*
*/
class Custom_View_Helper_FormHtml5 extends Zend_View_Helper_FormElement
{
public function formHtml5($name, $value = null, $attribs = null)
{
$info = $this->_getInfo($name, $value, $attribs);
extract($info); // name, value, attribs, options, listsep, disable
// build the element
$disabled = '';
if ($disable) {
// disabled
$disabled = ' disabled="disabled"';
}
// XHTML or HTML end tag?
$endTag = ' />';
if (($this->view instanceof Zend_View_Abstract) && !$this->view->doctype()->isXhtml()) {
$endTag= '>';
}
$xhtml = '<input'
. ' type="' . (($attribs['type'])?($this->view->escape($attribs['type'])):'text') . '"'
. ' name="' . $this->view->escape($name) . '"'
. ' id="' . $this->view->escape($id) . '"'
. ' value="' . $this->view->escape($value) . '"'
. $disabled
. $this->_htmlAttribs($attribs)
. $endTag;
return $xhtml;
}
}
Затем в форму я добавил следующее:
class Application_Form_UserBasic extends Zend_Form
{
public function init()
{
// this will tell zf to look for custom helpers on your custom library
$view = $this->getView();
$view->addHelperPath(APPLICATION_PATH.'/../library/Custom/View/Helper/', 'Custom_View_Helper');
/* Some other code */
$email = new Custom_Form_Element_Html5('email');
$email->setAttribs(array( 'type' => 'email'));
/* Your other elements*/
$this->addElements(array(
$email, /* your other elements */
));
}
}
Не забудьте добавить эту строку вВаш файл application.ini, если вы этого еще не сделали:
autoloaderNamespaces[] = "Custom_"
Надеюсь, это кому-нибудь поможет.