diff --git a/application/views/default/helpers/Field.php b/application/views/default/helpers/Field.php
index c94e1a32..71b35fc0 100644
--- a/application/views/default/helpers/Field.php
+++ b/application/views/default/helpers/Field.php
@@ -19,6 +19,11 @@ Class Zend_View_Helper_Field extends Zend_View_Helper_Abstract
$field['label'],
$this->selectMultipleHTML($name, $field));
break;
+ case 'intervalSelect':
+ $html.= $this->structureHTML(
+ $field['label'],
+ $this->intervalSelectHTML($name, $field));
+ break;
case 'interval':
$html.= $this->structureHTML(
$field['label'],
@@ -84,6 +89,26 @@ Class Zend_View_Helper_Field extends Zend_View_Helper_Abstract
return '';
}
+ private function intervalSelectHTML($name, $field)
+ {
+ $session = new SessionCiblage();
+
+ $return = ' à ';
+ $return .= '';
+ $return .= ' Valider';
+ return ($return);
+ }
+
/* Select */
private function selectMultipleHTML($name, $field)
{