]> dev.renevier.net Git - syj.git/blob - application/forms/Geom.php
separate route to create a new path, and to update an existing one
[syj.git] / application / forms / Geom.php
1 <?php
2 /*  This file is part of Syj, Copyright (c) 2010 Arnaud Renevier,
3     and is published under the AGPL license. */
4
5 class Syj_Form_Geom extends Zend_Form
6 {
7     protected $_elementDecorators = array( 'ViewHelper', 'Errors',);
8
9     protected $_decorators = array(
10                             'FormElements' => array('decorator' => 'FormElements', 'options' => null),
11                             'Form' => array('decorator' => 'Form', 'options' => null)
12                             );
13
14     public function init() {
15         $data = array('Hidden', 'geom_data', array('required' => true));
16
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))
21             ));
22
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(
29                                   'ViewHelper',
30                                   'label',
31                                   array('HtmlTag', array('tag' => 'div', 'id' => 'geom_accept_container', 'class' => 'logged-hide')))));
32
33         $submit = array('Submit', 'geom_submit', array('label' => __("save")));
34
35         $this->addElements(array($data, $title, $touaccept, $submit));
36
37         $decorator = $this->geom_accept->getDecorator('Zend_Form_Decorator_Label');
38         $decorator->setOption('escape', false);
39
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));
43
44     }
45 }