public function buildForm(FormBuilderInterface $builder, array $options) { $builder->add('summary', 'text', array('label' => 'Summary', 'required' => true, 'max_length' => VARCHAR_COLUMN_LENGTH_USED, 'attr' => array('autofocus' => 'autofocus'), 'data' => $this->eventDraft->getDetailsValue('event.summary'))); $builder->add('description', 'textarea', array('label' => 'Description', 'required' => false, 'data' => $this->eventDraft->getDetailsValue('event.description'))); $builder->add('url', new \symfony\form\MagicUrlType(), array('label' => 'Information Web Page URL', 'required' => false, 'data' => $this->eventDraft->getDetailsValue('event.url'))); $builder->add('ticket_url', new \symfony\form\MagicUrlType(), array('label' => 'Tickets Web Page URL', 'required' => false, 'data' => $this->eventDraft->getDetailsValue('event.ticket_url'))); $this->customFields = array(); foreach ($this->site->getCachedEventCustomFieldDefinitionsAsModels() as $customField) { if ($customField->getIsActive()) { $extension = $this->extensionManager->getExtensionById($customField->getExtensionId()); if ($extension) { $fieldType = $extension->getEventCustomFieldByType($customField->getType()); if ($fieldType) { $this->customFields[] = $customField; $options = $fieldType->getSymfonyFormOptions($customField); $options['data'] = $this->eventDraft->getDetailsValue('event.custom.' . $customField->getKey()); $builder->add('custom_' . $customField->getKey(), $fieldType->getSymfonyFormType($customField), $options); } } } } if ($this->site->getIsFeatureVirtualEvents()) { // if both are an option, user must check which one. if ($this->site->getIsFeaturePhysicalEvents()) { $builder->add("is_virtual", "checkbox", array('required' => false, 'label' => 'Is event accessible online?', 'data' => $this->eventDraft->hasDetailsValue('event.is_virtual') ? $this->eventDraft->getDetailsValue('event.is_virtual') : $this->fieldIsVirtualDefault)); } else { $builder->add('is_virtual', 'hidden', array('data' => true)); } } else { $builder->add('is_virtual', 'hidden', array('data' => false)); } if ($this->site->getIsFeaturePhysicalEvents()) { // if both are an option, user must check which one. if ($this->site->getIsFeatureVirtualEvents()) { $builder->add("is_physical", "checkbox", array('required' => false, 'label' => 'Does the event happen at a place?', 'data' => $this->eventDraft->hasDetailsValue('event.is_physical') ? $this->eventDraft->getDetailsValue('event.is_physical') : $this->fieldIsPhysicalDefault)); } else { $builder->add('is_physical', 'hidden', array('data' => true)); } } else { $builder->add('is_physical', 'hidden', array('data' => false)); } /** @var \closure $myExtraFieldValidator **/ $myExtraFieldValidator = function (FormEvent $event) { global $CONFIG; $form = $event->getForm(); // URL validation. We really can't do much except verify ppl haven't put a space in, which they might do if they just type in Google search terms (seen it done) if (strpos($form->get("url")->getData(), " ") !== false) { $form['url']->addError(new FormError("Please enter a URL")); } if (strpos($form->get("ticket_url")->getData(), " ") !== false) { $form['ticket_url']->addError(new FormError("Please enter a URL")); } // Title if (!trim($form->get('summary')->getData())) { $form->get('summary')->addError(new FormError("Please enter a summary")); } // TODO it has to be at least one or the other of physical or virtual }; // adding the validator to the FormBuilderInterface $builder->addEventListener(FormEvents::POST_BIND, $myExtraFieldValidator); }
public function buildForm(FormBuilderInterface $builder, array $options) { parent::buildForm($builder, $options); $builder->add('summary', 'text', array('label' => 'Summary', 'required' => true, 'max_length' => VARCHAR_COLUMN_LENGTH_USED, 'attr' => array('autofocus' => 'autofocus'))); $builder->add('description', 'textarea', array('label' => 'Description', 'required' => false)); $builder->add('url', new \symfony\form\MagicUrlType(), array('label' => 'Information Web Page URL', 'required' => false)); $builder->add('ticket_url', new \symfony\form\MagicUrlType(), array('label' => 'Tickets Web Page URL', 'required' => false)); $crb = new CountryRepositoryBuilder(); $crb->setSiteIn($this->site); $countries = array(); $defaultCountry = null; foreach ($crb->fetchAll() as $country) { $countries[$country->getId()] = $country->getTitle(); if ($defaultCountry == null && in_array($this->timeZoneName, $country->getTimezonesAsList())) { $defaultCountry = $country->getId(); } } if (count($countries) != 1) { $builder->add('country_id', 'choice', array('label' => 'Country', 'choices' => $countries, 'required' => true, 'data' => $defaultCountry)); } else { $countryID = array_shift(array_keys($countries)); $builder->add('country_id', 'hidden', array('data' => $countryID)); } $timezones = array(); // Must explicetly set name as key otherwise Symfony forms puts an ID in, and that's no good for processing outside form foreach ($this->site->getCachedTimezonesAsList() as $timezone) { $timezones[$timezone] = $timezone; } if (count($timezones) != 1) { $builder->add('timezone', 'choice', array('label' => 'Time Zone', 'choices' => $timezones, 'required' => true)); } else { $timezone = array_pop($timezones); $builder->add('timezone', 'hidden', array('data' => $timezone)); } if ($this->site->getIsFeatureVirtualEvents()) { // if both are an option, user must check which one. if ($this->site->getIsFeaturePhysicalEvents()) { $builder->add("is_virtual", "checkbox", array('required' => false, 'label' => 'Is event accessible online?')); } } if ($this->site->getIsFeaturePhysicalEvents()) { // if both are an option, user must check which one. if ($this->site->getIsFeatureVirtualEvents()) { $builder->add("is_physical", "checkbox", array('required' => false, 'label' => 'Does the event happen at a place?')); } } $years = array(date('Y'), date('Y') + 1); $startOptions = array('label' => 'Start', 'date_widget' => 'single_text', 'date_format' => 'd/M/y', 'model_timezone' => 'UTC', 'view_timezone' => $this->timeZoneName, 'years' => $years, 'attr' => array('class' => 'dateInput'), 'required' => true); if ($this->formWidgetTimeMinutesMultiples > 1) { $startOptions['minutes'] = array(); for ($i = 0; $i <= 59; $i = $i + $this->formWidgetTimeMinutesMultiples) { $startOptions['minutes'][] = $i; } } $builder->add('start_at', 'datetime', $startOptions); $endOptions = array('label' => 'End', 'date_widget' => 'single_text', 'date_format' => 'd/M/y', 'model_timezone' => 'UTC', 'view_timezone' => $this->timeZoneName, 'years' => $years, 'attr' => array('class' => 'dateInput'), 'required' => true); if ($this->formWidgetTimeMinutesMultiples > 1) { $endOptions['minutes'] = array(); for ($i = 0; $i <= 59; $i = $i + $this->formWidgetTimeMinutesMultiples) { $endOptions['minutes'][] = $i; } } $builder->add('end_at', 'datetime', $endOptions); $this->customFields = array(); foreach ($this->site->getCachedEventCustomFieldDefinitionsAsModels() as $customField) { if ($customField->getIsActive()) { $extension = $this->extensionManager->getExtensionById($customField->getExtensionId()); if ($extension) { $fieldType = $extension->getEventCustomFieldByType($customField->getType()); if ($fieldType) { $this->customFields[] = $customField; $options = $fieldType->getSymfonyFormOptions($customField); $options['mapped'] = false; $options['data'] = $builder->getData()->getCustomField($customField); $builder->add('custom_' . $customField->getKey(), $fieldType->getSymfonyFormType($customField), $options); } } } } /** @var \closure $myExtraFieldValidator **/ $myExtraFieldValidator = function (FormEvent $event) { global $CONFIG; $form = $event->getForm(); $myExtraFieldStart = $form->get('start_at')->getData(); $myExtraFieldEnd = $form->get('end_at')->getData(); // Validate end is after start? if ($myExtraFieldStart > $myExtraFieldEnd) { $form['start_at']->addError(new FormError("The start can not be after the end!")); } // validate not to far in future $max = \TimeSource::getDateTime(); $max->add(new \DateInterval("P" . $CONFIG->eventsCantBeMoreThanYearsInFuture . "Y")); if ($myExtraFieldStart > $max) { $form['start_at']->addError(new FormError("The event can not be more than " . ($CONFIG->eventsCantBeMoreThanYearsInFuture > 1 ? $CONFIG->eventsCantBeMoreThanYearsInFuture . " years" : "a year") . " in the future.")); } if ($myExtraFieldEnd > $max) { $form['end_at']->addError(new FormError("The event can not be more than " . ($CONFIG->eventsCantBeMoreThanYearsInFuture > 1 ? $CONFIG->eventsCantBeMoreThanYearsInFuture . " years" : "a year") . " in the future.")); } // validate not to far in past $min = \TimeSource::getDateTime(); $min->sub(new \DateInterval("P" . $CONFIG->eventsCantBeMoreThanYearsInPast . "Y")); if ($myExtraFieldStart < $min) { $form['start_at']->addError(new FormError("The event can not be more than " . ($CONFIG->eventsCantBeMoreThanYearsInPast > 1 ? $CONFIG->eventsCantBeMoreThanYearsInPast . " years" : "a year") . " in the past.")); } if ($myExtraFieldEnd < $min) { $form['end_at']->addError(new FormError("The event can not be more than " . ($CONFIG->eventsCantBeMoreThanYearsInPast > 1 ? $CONFIG->eventsCantBeMoreThanYearsInPast . " years" : "a year") . " in the past.")); } // URL validation. We really can't do much except verify ppl haven't put a space in, which they might do if they just type in Google search terms (seen it done) if (strpos($form->get("url")->getData(), " ") !== false) { $form['url']->addError(new FormError("Please enter a URL")); } if (strpos($form->get("ticket_url")->getData(), " ") !== false) { $form['ticket_url']->addError(new FormError("Please enter a URL")); } }; // adding the validator to the FormBuilderInterface $builder->addEventListener(FormEvents::POST_BIND, $myExtraFieldValidator); }