diff --git a/recurring_events.links.menu.yml b/recurring_events.links.menu.yml index 5248f3e77708d87d4661d33c3c84e13bafc79a16..cf0b276506a6eb3a224766e9ff22d08607d7e56d 100644 --- a/recurring_events.links.menu.yml +++ b/recurring_events.links.menu.yml @@ -6,8 +6,17 @@ events.admin.overview: parent: system.admin_structure # Events Series settings admin page. -events.admin.structure.settings: +eventseries.admin.structure.settings: title: 'Event Series' description: 'Configure Event Series Entity' route_name: eventseries.settings parent: events.admin.overview + weight: 0 + +# Events Instances settings admin page. +eventinstance.admin.structure.settings: + title: 'Event Instances' + description: 'Configure Event Instance Entity' + route_name: eventinstance.settings + parent: events.admin.overview + weight: 1 diff --git a/recurring_events.links.task.yml b/recurring_events.links.task.yml index 8e47e7cfd1cfe628fcb75d02db114f47d626712f..afea94bed35a5c7913c887f705c762e2dc9ed0d2 100644 --- a/recurring_events.links.task.yml +++ b/recurring_events.links.task.yml @@ -1,5 +1,11 @@ -# Events Series settings admin page. +# Event Series settings admin page. eventseries.settings_tab: route_name: eventseries.settings title: Event Series Settings - base_route: eventseries.settings \ No newline at end of file + base_route: eventseries.settings + +# Event Instance settings admin page. +eventinstance.settings_tab: + route_name: eventinstance.settings + title: Event Instance Settings + base_route: eventinstance.settings \ No newline at end of file diff --git a/recurring_events.routing.yml b/recurring_events.routing.yml index 9b110ab63e58ecd25ff37c854d58a78ac603c13b..185ce19f87c1cc40884a510796c7d6bf67c67442 100644 --- a/recurring_events.routing.yml +++ b/recurring_events.routing.yml @@ -144,4 +144,13 @@ eventseries.settings: _form: '\Drupal\recurring_events\Form\EventSeriesSettingsForm' _title: 'Event Series Settings' requirements: - _permission: 'administer eventseries entity' \ No newline at end of file + _permission: 'administer eventseries entity' + +# Event Instance settings admin page. +eventinstance.settings: + path: '/admin/structure/events/instance/settings' + defaults: + _form: '\Drupal\recurring_events\Form\EventInstanceSettingsForm' + _title: 'Event Instance Settings' + requirements: + _permission: 'administer eventinstance entity' \ No newline at end of file diff --git a/src/Entity/EventInstance.php b/src/Entity/EventInstance.php index 4e2d47b2c138ef13acc9f998cff832b0fd8d9404..89ccd04582fd986a4168336d8c69a34aa723a002 100644 --- a/src/Entity/EventInstance.php +++ b/src/Entity/EventInstance.php @@ -319,7 +319,7 @@ class EventInstance extends EditorialContentEntityBase implements EventInterface ->setReadOnly(TRUE); $fields['body'] = BaseFieldDefinition::create('text_long') - ->setLabel(t('Event Description')) + ->setLabel(t('Body')) ->setTranslatable(TRUE) ->setRevisionable(TRUE) ->setRequired(TRUE) @@ -328,6 +328,9 @@ class EventInstance extends EditorialContentEntityBase implements EventInterface 'type' => 'text_textarea', 'weight' => -4, ]) + ->setDisplayOptions('view', [ + 'type' => 'hidden', + ]) ->setDisplayConfigurable('form', TRUE); $fields['date'] = BaseFieldDefinition::create('daterange') @@ -408,7 +411,7 @@ class EventInstance extends EditorialContentEntityBase implements EventInterface ->setDisplayOptions('view', [ 'label' => 'above', 'type' => 'text_long', - 'weight' => -10, + 'weight' => -9, ]); return $fields; } diff --git a/src/Entity/EventSeries.php b/src/Entity/EventSeries.php index bf10834ab5c8f2a6f592d7345c5bb4272c23c9f8..815989f9f53460afa0f03d9f1dca474ac8f38c98 100644 --- a/src/Entity/EventSeries.php +++ b/src/Entity/EventSeries.php @@ -338,7 +338,7 @@ class EventSeries extends EditorialContentEntityBase implements EventInterface { ->setRequired(TRUE); $fields['body'] = BaseFieldDefinition::create('text_long') - ->setLabel(t('Event Description')) + ->setLabel(t('Body')) ->setTranslatable(TRUE) ->setRevisionable(TRUE) ->setRequired(TRUE) diff --git a/src/EventCreationService.php b/src/EventCreationService.php index 1e3e5da035fbd2e90ac942166d183ffb3f272342..7d09c4d474bb5f32d4bc06f91bddcfb4a8e62237 100644 --- a/src/EventCreationService.php +++ b/src/EventCreationService.php @@ -89,8 +89,7 @@ class EventCreationService { public function checkForRecurConfigChanges(EventSeries $event, FormStateInterface $form_state) { $entity_config = $this->convertEntityConfigToArray($event); $form_config = $this->convertFormConfigToArray($form_state); - - return !($entity_config === $form_config); + return !(serialize($entity_config) === serialize($form_config)); } /** @@ -187,7 +186,7 @@ class EventCreationService { $end_timestamp = $user_input['monthly_recurring_date'][0]['end_value']['date'] . 'T12:00:00'; $end_date = DrupalDateTime::createFromFormat(DateTimeItemInterface::DATETIME_STORAGE_FORMAT, $end_timestamp, $utc_timezone); - $start_date->setTimezone($user_timezone); + $end_date->setTimezone($user_timezone); $end_date->setTime(0, 0, 0); $config['start_date'] = $start_date; diff --git a/src/EventInstanceListBuilder.php b/src/EventInstanceListBuilder.php index 645d21b55c7c8104bc93b3a48fa401152031b822..a847574bc3abdcec206b08f7052750beb3374417 100644 --- a/src/EventInstanceListBuilder.php +++ b/src/EventInstanceListBuilder.php @@ -118,7 +118,7 @@ class EventInstanceListBuilder extends EntityListBuilder { '#title' => $this->t('View Series'), '#url' => $entity->getEventSeries()->toUrl(), ]; - $config = $this->config->get('recurring_events.eventseries.config'); + $config = $this->config->get('recurring_events.eventinstance.config'); $row['date'] = $entity->date->start_date->format($config->get('date_format')); $row['author']['data'] = [ '#theme' => 'username', diff --git a/src/Form/EventInstanceSettingsForm.php b/src/Form/EventInstanceSettingsForm.php new file mode 100644 index 0000000000000000000000000000000000000000..4ddbb89a1c67cee071bd4a7bac2d06a4dd78c304 --- /dev/null +++ b/src/Form/EventInstanceSettingsForm.php @@ -0,0 +1,80 @@ +<?php + +namespace Drupal\recurring_events\Form; + +use Drupal\Core\Form\ConfigFormBase;; +use Drupal\Core\Form\FormStateInterface; +use Drupal\Core\Url; +use Drupal\Core\Link; + +/** + * Class EventInstanceSettingsForm. + * + * @ingroup recurring_events + */ +class EventInstanceSettingsForm extends ConfigFormBase { + + /** + * Returns a unique string identifying the form. + * + * @return string + * The unique string identifying the form. + */ + public function getFormId() { + return 'eventinstance_settings'; + } + + /** + * {@inheritdoc} + */ + protected function getEditableConfigNames() { + return ['recurring_events.eventinstance.config']; + } + + /** + * Form submission handler. + * + * @param array $form + * An associative array containing the structure of the form. + * @param Drupal\Core\Form\FormStateInterface $form_state + * An associative array containing the current state of the form. + */ + public function submitForm(array &$form, FormStateInterface $form_state) { + $this->config('recurring_events.eventinstance.config') + ->set('date_format', $form_state->getValue('date_format')) + ->save(); + + parent::submitForm($form, $form_state); + } + + /** + * Define the form used for EventInstance settings. + * + * @param array $form + * An associative array containing the structure of the form. + * @param Drupal\Core\Form\FormStateInterface $form_state + * An associative array containing the current state of the form. + * + * @return array + * Form definition array. + */ + public function buildForm(array $form, FormStateInterface $form_state) { + $config = $this->config('recurring_events.eventseries.config'); + + $php_date_url = Url::fromUri('https://secure.php.net/manual/en/function.date.php'); + $php_date_link = Link::fromTextAndUrl($this->t('PHP date/time format'), $php_date_url); + + $form['date_format'] = [ + '#type' => 'textfield', + '#title' => $this->t('Event Instance Date Format'), + '#required' => TRUE, + '#description' => $this->t('Enter the @link used when listing event dates. Default is F jS, Y h:iA.', [ + '@link' => $php_date_link->toString(), + ]), + '#default_value' => $config->get('date_format'), + ]; + + return parent::buildForm($form, $form_state); + } + +} diff --git a/src/Form/EventSeriesSettingsForm.php b/src/Form/EventSeriesSettingsForm.php index e686d54377920b58f4c22c85fc62068fa7e480b4..1379d80b38aa14414412470dd2ec1d1da0fbc9db 100644 --- a/src/Form/EventSeriesSettingsForm.php +++ b/src/Form/EventSeriesSettingsForm.php @@ -53,7 +53,7 @@ class EventSeriesSettingsForm extends ConfigFormBase { } /** - * Define the form used for Events settings. + * Define the form used for EventSeries settings. * * @param array $form * An associative array containing the structure of the form. diff --git a/src/Plugin/FieldInheritance/FieldInheritancePluginBase.php b/src/Plugin/FieldInheritance/FieldInheritancePluginBase.php index 079ca01e100f8947305e64651dddc2eccbd5df6c..fde9dc9a14cbc73607ee66b8f615f6f914b59620 100644 --- a/src/Plugin/FieldInheritance/FieldInheritancePluginBase.php +++ b/src/Plugin/FieldInheritance/FieldInheritancePluginBase.php @@ -4,7 +4,6 @@ namespace Drupal\recurring_events\Plugin\FieldInheritance; use Drupal\Component\Plugin\PluginBase; use Symfony\Component\DependencyInjection\ContainerInterface; -use Drupal\Core\Entity\EntityInterface; use Drupal\recurring_events\FieldInheritancePluginInterface; /** @@ -12,6 +11,13 @@ use Drupal\recurring_events\FieldInheritancePluginInterface; */ abstract class FieldInheritancePluginBase extends PluginBase implements FieldInheritancePluginInterface { + /** + * Concatenation separator. + * + * @var string + */ + const SEPARATOR = ''; + /** * The entity. * @@ -112,7 +118,7 @@ abstract class FieldInheritancePluginBase extends PluginBase implements FieldInh throw new \InvalidArgumentException("The definition's 'entity field' key must be set to prepend data."); } $entity_field = $this->getEntityField(); - $text = $instance->{$entity_field}->value . ' ' . $series->{$field}->value; + $text = $instance->{$entity_field}->value . $this::SEPARATOR . $series->{$field}->value; break; case 'append': @@ -120,7 +126,7 @@ abstract class FieldInheritancePluginBase extends PluginBase implements FieldInh throw new \InvalidArgumentException("The definition's 'entity field' key must be set to append data."); } $entity_field = $this->getEntityField(); - $text = $series->{$field}->value . ' ' . $instance->{$entity_field}->value; + $text = $series->{$field}->value . $this::SEPARATOR . $instance->{$entity_field}->value; break; default: diff --git a/src/Plugin/FieldInheritance/TextFieldInheritancePlugin.php b/src/Plugin/FieldInheritance/TextFieldInheritancePlugin.php index b9d6ecd165e21c9c8cf7c9e0f682417af67f59d2..8687780fdee5364457417cff58e7a451b84a80e1 100644 --- a/src/Plugin/FieldInheritance/TextFieldInheritancePlugin.php +++ b/src/Plugin/FieldInheritance/TextFieldInheritancePlugin.php @@ -11,4 +11,12 @@ namespace Drupal\recurring_events\Plugin\FieldInheritance; * ) */ class TextFieldInheritancePlugin extends FieldInheritancePluginBase { + + /** + * Concatenation separator. + * + * @var string + */ + const SEPARATOR = ' '; + } diff --git a/src/Plugin/FieldInheritance/TextLongFieldInheritancePlugin.php b/src/Plugin/FieldInheritance/TextLongFieldInheritancePlugin.php index 15843eea78cf4da3ed0791a879afcf410669cafe..b48e77194a7d99209e5ea69847ea15aee6de4856 100644 --- a/src/Plugin/FieldInheritance/TextLongFieldInheritancePlugin.php +++ b/src/Plugin/FieldInheritance/TextLongFieldInheritancePlugin.php @@ -11,4 +11,12 @@ namespace Drupal\recurring_events\Plugin\FieldInheritance; * ) */ class TextLongFieldInheritancePlugin extends FieldInheritancePluginBase { + + /** + * Concatenation separator. + * + * @var string + */ + const SEPARATOR = "\r\n\r\n"; + }