本文整理匯總了PHP中models\SiteModel::getCachedEventCustomFieldDefinitionsAsModels方法的典型用法代碼示例。如果您正苦於以下問題:PHP SiteModel::getCachedEventCustomFieldDefinitionsAsModels方法的具體用法?PHP SiteModel::getCachedEventCustomFieldDefinitionsAsModels怎麽用?PHP SiteModel::getCachedEventCustomFieldDefinitionsAsModels使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類models\SiteModel
的用法示例。
在下文中一共展示了SiteModel::getCachedEventCustomFieldDefinitionsAsModels方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: buildForm
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);
}
示例2: buildForm
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();
//.........這裏部分代碼省略.........