2 /* This file is part of Syj, Copyright (c) 2010 Arnaud Renevier,
3 and is published under the AGPL license. */
5 class Syj_Form_Geom extends Zend_Form
7 protected $_elementDecorators = array( 'ViewHelper', 'Errors',);
9 protected $_decorators = array(
10 'FormElements' => array('decorator' => 'FormElements', 'options' => null),
11 'Form' => array('decorator' => 'Form', 'options' => null)
14 public function init() {
15 $data = array('Hidden', 'geom_data', array('required' => true));
17 $title = array('Text', 'geom_title', array(
18 'label' => __("optional title for this journey"),
19 'attribs' => array('maxlength' => '40', 'size' => '20'),
20 'validators' => array(new Zend_Validate_StringLength(0, 40))
23 $translator = $this->getTranslator();
24 $anchor = $this->getView()->Anchor("termsofuse", $translator->translate("terms of use"), array('id' => 'geom_termsofuse_anchor'));
25 $text = $translator->translate("I've read and accepted %s");
26 $text = vsprintf($text, $anchor);
27 $touaccept = array('Checkbox', 'geom_accept', array("label" => $text,
28 'decorators' => array(
31 array('HtmlTag', array('tag' => 'div', 'id' => 'geom_accept_container', 'class' => 'logged-hide')))));
33 $submit = array('Submit', 'geom_submit', array('label' => __("save")));
35 $this->addElements(array($data, $title, $touaccept, $submit));
37 $decorator = $this->geom_accept->getDecorator('Zend_Form_Decorator_Label');
38 $decorator->setOption('escape', false);
40 $this->geom_title->addDecorator('HtmlTag', array('tag' => 'br', 'openOnly' => true))->
41 addDecorator('label');
42 $this->geom_submit->addDecorator('HtmlTag', array('tag' => 'br', 'openOnly' => true));