Ajout des titres d'aide

This commit is contained in:
Michael RICOIS 2012-05-25 08:15:38 +00:00
parent cb2c082d04
commit a6f07c411e

View File

@ -74,25 +74,29 @@ class Zend_View_Helper_Field extends Zend_View_Helper_Abstract
case 'selectMultiple':
$html.= $this->structureHTML(
$label,
$this->selectMultipleHTML($name, $options)
$this->selectMultipleHTML($name, $options),
$title
);
break;
case 'intervalSelect':
$html.= $this->structureHTML(
$label,
$this->intervalSelectHTML($name, $options)
$this->intervalSelectHTML($name, $options),
$title
);
break;
case 'checkbox':
$html.= $this->structureHTML(
$label,
$this->checkboxHTML($name, $options)
$this->checkboxHTML($name, $options),
$title
);
break;
case 'intervalDate':
$html.= $this->structureHTML(
$label,
$this->intervalDateHTML($name, $options)
$this->intervalDateHTML($name, $options),
$title
);
break;
case 'interval':
@ -109,7 +113,8 @@ class Zend_View_Helper_Field extends Zend_View_Helper_Abstract
case 'text':
$html.= $this->structureHTML(
$label,
$this->textHTML($name, $options)
$this->textHTML($name, $options),
$title
);
break;
case 'textarea':