X-Git-Url: https://dev.renevier.net/?p=syj.git;a=blobdiff_plain;f=application%2Fforms%2FGeom.php;h=48c6dbce225c62ce5e6c67caf00d3053674e3e9b;hp=2ae949b2606217939dcc7f0d0ce85eb8c7688efe;hb=150c38ebcad7e451aca5350cf5c8047d65a3af72;hpb=f3d301cf61cd09ad9089efb5d016e05ce6318bee diff --git a/application/forms/Geom.php b/application/forms/Geom.php index 2ae949b..48c6dbc 100644 --- a/application/forms/Geom.php +++ b/application/forms/Geom.php @@ -1,46 +1,90 @@ array('decorator' => 'FormElements', 'options' => null), 'Form' => array('decorator' => 'Form', 'options' => null) ); - public function init() { - $id = array('Hidden', 'geom_id'); - $data = array('Hidden', 'geom_data', array('required' => true)); + public function __construct($options = null) { + $translator = $this->getTranslator(); + + $data = array('Hidden', 'geom_data', array('required' => true, 'decorators' => array('ViewHelper', 'Errors'))); + + $upload = array('File', 'geom_upload', array("label" => $translator->translate("Draw journey on the map or choose one from a file"), + 'validators' => array(), + 'ignoreNoFile' => true, + 'decorators' => array( + 'File', + 'Errors', + array('Label', array('separator' => '
')), + array('HtmlTag', array('tag' => 'div', 'id' => 'geom_upload_container')), + ))); $title = array('Text', 'geom_title', array( 'label' => __("optional title for this journey"), - 'attribs' => array('maxlength' => '40', 'size' => '20'), - 'validators' => array(new Zend_Validate_StringLength(0, 40)) - )); + 'attribs' => array('maxlength' => '160', 'size' => '20'), + 'validators' => array(new Zend_Validate_StringLength(0, 160)), + 'decorators' => array( + 'ViewHelper', + 'Errors', + array('Label', array('separator' => '
')), + array('HtmlTag', array('tag' => 'div', 'id' => 'geom_title_container')), + ))); - $translator = $this->getTranslator(); - $anchor = $this->getView()->Anchor("termsofuse", $translator->translate("terms of use"), array('id' => 'geom_termsofuse_anchor')); + $anchor = $this->getView()->Anchor("termsofuse?format=raw", + $translator->translate("terms of use"), + array('id' => 'geom_termsofuse_anchor', 'tabindex' => '0')); $text = $translator->translate("I've read and accepted %s"); $text = vsprintf($text, $anchor); $touaccept = array('Checkbox', 'geom_accept', array("label" => $text, + 'helper' => 'SyjFormCheckbox', // similar to FormCheckbox without a hidden input 'decorators' => array( 'ViewHelper', 'label', array('HtmlTag', array('tag' => 'div', 'id' => 'geom_accept_container', 'class' => 'logged-hide'))))); - $submit = array('Submit', 'geom_submit', array('label' => __("save"))); - - $this->addElements(array($id, $data, $title, $touaccept, $submit)); + $submit = array('Submit', 'geom_submit', array('label' => __("save"), 'decorators' => array( + 'ViewHelper', + 'Errors', + array('HtmlTag', array('tag' => 'br', 'openOnly' => true))))); + $this->addElements(array($data, $upload, $title, $touaccept, $submit)); $decorator = $this->geom_accept->getDecorator('Zend_Form_Decorator_Label'); $decorator->setOption('escape', false); - $this->geom_title->addDecorator('HtmlTag', array('tag' => 'br', 'openOnly' => true))-> - addDecorator('label'); - $this->geom_submit->addDecorator('HtmlTag', array('tag' => 'br', 'openOnly' => true)); + parent::__construct($options); + } + + public function process(&$data) { + $upload = null; + if ($this->getValue("geom_upload")) { + $file = $this->geom_upload; + $upload = $file->getDestination() . DIRECTORY_SEPARATOR . $file->getValue(); + if (!isset($data["geom_data"]) || !$data["geom_data"]) { + if (!file_exists($upload)) { + throw new Zend_Exception(); + } + if (!@filesize($upload)) { + throw new Syj_Exception_InvalidGeomUpload(); + } + $content = @file_get_contents ($upload); + if ($content == false) { + throw new Zend_Exception(); + } + $data['geom_data'] = $content; + } + @unlink ($upload); + } else if (isset($_FILES['geom_upload']) and ($_FILES['geom_upload']['error']) == UPLOAD_ERR_INI_SIZE) { + throw new Syj_Exception_ToolargeGeomUpload(); + } else { + $this->removeElement("geom_upload"); + } + return $this; } + }