20
20
unset($this['created_at'], $this['updated_at']);
22
$this->setValidator('longitude', new sfValidatorNumber(array('required' => false, 'min' => 0, 'max' => 180)));
23
$this->setValidator('latitude', new sfValidatorNumber(array('required' => false, 'min' => 0, 'max' => 90)));
24
24
// $this->setValidators(array(
25
25
// 'id' => new sfValidatorChoice(array('choices' => array($this->getObject()->get('id')), 'empty_value' => $this->getObject()->get('id'), 'required' => false)),
26
26
// 'longitude' => new sfValidatorNumber(),