Skip to content
Snippets Groups Projects
Commit 684229f2 authored by Owen Bush's avatar Owen Bush
Browse files

Set up form for email notification configuration

parent 21b2b0dd
No related branches found
No related tags found
No related merge requests found
show_capacity: true show_capacity: true
\ No newline at end of file email_notifications: true
registration_notification_enabled: true
registration_notification_subject: "You've Successfully Registered"
registration_notification_body: "Your registration for the [eventinstance:title] event was successful."
waitlist_notification_enabled: true
waitlist_notification_subject: "You've Been Added To The Waitlist"
waitlist_notification_body: "You have been added to the waitlist for the [eventinstance:title] event."
promotion_notification_enabled: true
promotion_notification_subject: "You've Been Added To The Registration List"
promotion_notification_body: "You have been promoted from the waitlist to the registration list for the [eventinstance:title] event."
cancellation_notification_enabled: true
cancellation_notification_subject: "An Event Has Been Cancelled"
cancellation_notification_body: "Unfortunately, the [eventinstance:title] event has been cancelled."
modification_notification_enabled: true
modification_notification_subject: "An Event Has Been Modified"
modification_notification_body: "The [eventinstance:title] event has been modified, please check back for details."
\ No newline at end of file
...@@ -185,7 +185,7 @@ class RegistrantForm extends ContentEntityForm { ...@@ -185,7 +185,7 @@ class RegistrantForm extends ContentEntityForm {
'message' => [ 'message' => [
'#type' => 'markup', '#type' => 'markup',
'#prefix' => '<p class="event-message">', '#prefix' => '<p class="event-message">',
'#markup' => $this->t('Unfortunately, there are no spaces left for this @type. However, we can add you to the waitlist. If a space becomes available, you will be notified via email and automatically registered.', [ '#markup' => $this->t('Unfortunately, there are no spaces left for this @type. However, we can add you to the waitlist. If a space becomes available, the first registrant on the waitlist will be automatically registered.', [
'@type' => $reg_type === 'series' ? 'series' : 'event', '@type' => $reg_type === 'series' ? 'series' : 'event',
]), ]),
'#suffix' => '</p>', '#suffix' => '</p>',
......
...@@ -40,6 +40,22 @@ class RegistrantSettingsForm extends ConfigFormBase { ...@@ -40,6 +40,22 @@ class RegistrantSettingsForm extends ConfigFormBase {
public function submitForm(array &$form, FormStateInterface $form_state) { public function submitForm(array &$form, FormStateInterface $form_state) {
$this->config('recurring_events_registration.registrant.config') $this->config('recurring_events_registration.registrant.config')
->set('show_capacity', $form_state->getValue('show_capacity')) ->set('show_capacity', $form_state->getValue('show_capacity'))
->set('email_notifications', $form_state->getValue('email_notifications'))
->set('registration_notification_enabled', $form_state->getValue('registration_notification'))
->set('registration_notification_subject', $form_state->getValue('registration_notification_subject'))
->set('registration_notification_body', $form_state->getValue('registration_notification_body'))
->set('waitlist_notification_enabled', $form_state->getValue('waitlist_notification'))
->set('waitlist_notification_subject', $form_state->getValue('waitlist_notification_subject'))
->set('waitlist_notification_body', $form_state->getValue('waitlist_notification_body'))
->set('promotion_notification_enabled', $form_state->getValue('promotion_notification'))
->set('promotion_notification_subject', $form_state->getValue('promotion_notification_subject'))
->set('promotion_notification_body', $form_state->getValue('promotion_notification_body'))
->set('cancellation_notification_enabled', $form_state->getValue('cancellation_notification'))
->set('cancellation_notification_subject', $form_state->getValue('cancellation_notification_subject'))
->set('cancellation_notification_body', $form_state->getValue('cancellation_notification_body'))
->set('modification_notification_enabled', $form_state->getValue('modification_notification'))
->set('modification_notification_subject', $form_state->getValue('modification_notification_subject'))
->set('modification_notification_body', $form_state->getValue('modification_notification_body'))
->save(); ->save();
parent::submitForm($form, $form_state); parent::submitForm($form, $form_state);
...@@ -58,12 +74,213 @@ class RegistrantSettingsForm extends ConfigFormBase { ...@@ -58,12 +74,213 @@ class RegistrantSettingsForm extends ConfigFormBase {
*/ */
public function buildForm(array $form, FormStateInterface $form_state) { public function buildForm(array $form, FormStateInterface $form_state) {
$config = $this->config('recurring_events_registration.registrant.config'); $config = $this->config('recurring_events_registration.registrant.config');
$form['show_capacity'] = [ $form['process'] = [
'#type' => 'details',
'#title' => $this->t('Registration Form'),
'#open' => TRUE,
];
$form['process']['show_capacity'] = [
'#type' => 'checkbox', '#type' => 'checkbox',
'#title' => $this->t('Show Capacity?'), '#title' => $this->t('Show Capacity?'),
'#description' => $this->t('When users are registering for events, show the available capacity?'), '#description' => $this->t('When users are registering for events, show the available capacity?'),
'#default_value' => $config->get('show_capacity'), '#default_value' => $config->get('show_capacity'),
]; ];
$form['notifications'] = [
'#type' => 'details',
'#title' => $this->t('Email Notifications'),
'#open' => TRUE,
];
$form['notifications']['emails'] = [
'#type' => 'vertical_tabs',
'#title' => $this->t('Emails'),
];
$email_token_help = $this->t('Available variables are: [site:name], [site:url], [user:display-name], [user:account-name], [user:mail], [site:login-url], [site:url-brief], [user:edit-url], [user:one-time-login-url], [user:cancel-url].');
// Registration notifications.
$form['notifications']['registration'] = [
'#type' => 'details',
'#title' => $this->t('Registration Notification'),
'#open' => TRUE,
'#description' => $this->t('Enable and configure registration notifications') . ' ' . $email_token_help,
'#group' => 'emails',
];
$form['notifications']['registration']['registration_notification'] = [
'#type' => 'checkbox',
'#title' => $this->t('Registration Notification'),
'#description' => $this->t('Send an email to a registrant to confirm they were registered for an event?'),
'#default_value' => $config->get('registration_notification_enabled'),
];
$form['notifications']['registration']['registration_notification_subject'] = [
'#type' => 'textfield',
'#title' => $this->t('Subject'),
'#default_value' => $config->get('registration_notification_subject'),
'#maxlength' => 180,
'#states' => [
'visible' => [
'input[name="registration_notification"]' => ['checked' => TRUE],
],
],
];
$form['notifications']['registration']['registration_notification_body'] = [
'#type' => 'textarea',
'#title' => $this->t('Body'),
'#default_value' => $config->get('registration_notification_body'),
'#rows' => 15,
'#states' => [
'visible' => [
'input[name="registration_notification"]' => ['checked' => TRUE],
],
],
];
// Waitlist notifications.
$form['notifications']['waitlist'] = [
'#type' => 'details',
'#title' => $this->t('Waitlist Notification'),
'#description' => $this->t('Enable and configure waitlist notifications') . ' ' . $email_token_help,
'#group' => 'emails',
];
$form['notifications']['waitlist']['waitlist_notification'] = [
'#type' => 'checkbox',
'#title' => $this->t('Waitlist Notification'),
'#description' => $this->t('Send an email to a registrant to confirm they were added to the waitlist?'),
'#default_value' => $config->get('waitlist_notification_enabled'),
];
$form['notifications']['waitlist']['waitlist_notification_subject'] = [
'#type' => 'textfield',
'#title' => $this->t('Subject'),
'#default_value' => $config->get('waitlist_notification_subject'),
'#maxlength' => 180,
'#states' => [
'visible' => [
'input[name="waitlist_notification"]' => ['checked' => TRUE],
],
],
];
$form['notifications']['waitlist']['waitlist_notification_body'] = [
'#type' => 'textarea',
'#title' => $this->t('Body'),
'#default_value' => $config->get('waitlist_notification_body'),
'#rows' => 15,
'#states' => [
'visible' => [
'input[name="waitlist_notification"]' => ['checked' => TRUE],
],
],
];
// Promotion notifications.
$form['notifications']['promotion'] = [
'#type' => 'details',
'#title' => $this->t('Promotion Notification'),
'#description' => $this->t('Enable and configure promotion notifications') . ' ' . $email_token_help,
'#group' => 'emails',
];
$form['notifications']['promotion']['promotion_notification'] = [
'#type' => 'checkbox',
'#title' => $this->t('Promotion Notification'),
'#description' => $this->t('Send an email to a registrant to confirm they were promoted from the wailist?'),
'#default_value' => $config->get('promotion_notification_enabled'),
];
$form['notifications']['promotion']['promotion_notification_subject'] = [
'#type' => 'textfield',
'#title' => $this->t('Subject'),
'#default_value' => $config->get('promotion_notification_subject'),
'#maxlength' => 180,
'#states' => [
'visible' => [
'input[name="promotion_notification"]' => ['checked' => TRUE],
],
],
];
$form['notifications']['promotion']['promotion_notification_body'] = [
'#type' => 'textarea',
'#title' => $this->t('Body'),
'#default_value' => $config->get('promotion_notification_body'),
'#rows' => 15,
'#states' => [
'visible' => [
'input[name="promotion_notification"]' => ['checked' => TRUE],
],
],
];
// Cancellation notifications.
$form['notifications']['cancellation'] = [
'#type' => 'details',
'#title' => $this->t('Cancellation Notification'),
'#description' => $this->t('Enable and configure cancellation notifications') . ' ' . $email_token_help,
'#group' => 'emails',
];
$form['notifications']['cancellation']['cancellation_notification'] = [
'#type' => 'checkbox',
'#title' => $this->t('Cancellation Notification'),
'#description' => $this->t('Send an email to a registrant to confirm an event cancellation?'),
'#default_value' => $config->get('cancellation_notification_enabled'),
];
$form['notifications']['cancellation']['cancellation_notification_subject'] = [
'#type' => 'textfield',
'#title' => $this->t('Subject'),
'#default_value' => $config->get('cancellation_notification_subject'),
'#maxlength' => 180,
'#states' => [
'visible' => [
'input[name="cancellation_notification"]' => ['checked' => TRUE],
],
],
];
$form['notifications']['cancellation']['cancellation_notification_body'] = [
'#type' => 'textarea',
'#title' => $this->t('Body'),
'#default_value' => $config->get('cancellation_notification_body'),
'#rows' => 15,
'#states' => [
'visible' => [
'input[name="cancellation_notification"]' => ['checked' => TRUE],
],
],
];
// Modification notifications.
$form['notifications']['modification'] = [
'#type' => 'details',
'#title' => $this->t('Modification Notification'),
'#description' => $this->t('Enable and configure modification notifications') . ' ' . $email_token_help,
'#group' => 'emails',
];
$form['notifications']['modification']['modification_notification'] = [
'#type' => 'checkbox',
'#title' => $this->t('Modification Notification'),
'#description' => $this->t('Send an email to a registrant to confirm an event modification?'),
'#default_value' => $config->get('modification_notification_enabled'),
];
$form['notifications']['modification']['modification_notification_subject'] = [
'#type' => 'textfield',
'#title' => $this->t('Subject'),
'#default_value' => $config->get('modification_notification_subject'),
'#maxlength' => 180,
'#states' => [
'visible' => [
'input[name="modification_notification"]' => ['checked' => TRUE],
],
],
];
$form['notifications']['modification']['modification_notification_body'] = [
'#type' => 'textarea',
'#title' => $this->t('Body'),
'#default_value' => $config->get('modification_notification_body'),
'#rows' => 15,
'#states' => [
'visible' => [
'input[name="modification_notification"]' => ['checked' => TRUE],
],
],
];
return parent::buildForm($form, $form_state); return parent::buildForm($form, $form_state);
} }
......
...@@ -65,7 +65,13 @@ class EventInstanceSettingsForm extends ConfigFormBase { ...@@ -65,7 +65,13 @@ class EventInstanceSettingsForm extends ConfigFormBase {
$php_date_url = Url::fromUri('https://secure.php.net/manual/en/function.date.php'); $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); $php_date_link = Link::fromTextAndUrl($this->t('PHP date/time format'), $php_date_url);
$form['date_format'] = [ $form['display'] = [
'#type' => 'details',
'#title' => $this->t('Event Display'),
'#open' => TRUE,
];
$form['display']['date_format'] = [
'#type' => 'textfield', '#type' => 'textfield',
'#title' => $this->t('Event Instance Date Format'), '#title' => $this->t('Event Instance Date Format'),
'#required' => TRUE, '#required' => TRUE,
...@@ -75,7 +81,7 @@ class EventInstanceSettingsForm extends ConfigFormBase { ...@@ -75,7 +81,7 @@ class EventInstanceSettingsForm extends ConfigFormBase {
'#default_value' => $config->get('date_format'), '#default_value' => $config->get('date_format'),
]; ];
$form['limit'] = [ $form['display']['limit'] = [
'#type' => 'number', '#type' => 'number',
'#title' => $this->t('Event Instance Items'), '#title' => $this->t('Event Instance Items'),
'#required' => TRUE, '#required' => TRUE,
......
...@@ -67,7 +67,13 @@ class EventSeriesSettingsForm extends ConfigFormBase { ...@@ -67,7 +67,13 @@ class EventSeriesSettingsForm extends ConfigFormBase {
public function buildForm(array $form, FormStateInterface $form_state) { public function buildForm(array $form, FormStateInterface $form_state) {
$config = $this->config('recurring_events.eventseries.config'); $config = $this->config('recurring_events.eventseries.config');
$form['interval'] = [ $form['creation'] = [
'#type' => 'details',
'#title' => $this->t('Event Creation'),
'#open' => TRUE,
];
$form['creation']['interval'] = [
'#type' => 'number', '#type' => 'number',
'#title' => $this->t('Event Series Time Intervals'), '#title' => $this->t('Event Series Time Intervals'),
'#required' => TRUE, '#required' => TRUE,
...@@ -75,7 +81,7 @@ class EventSeriesSettingsForm extends ConfigFormBase { ...@@ -75,7 +81,7 @@ class EventSeriesSettingsForm extends ConfigFormBase {
'#default_value' => $config->get('interval'), '#default_value' => $config->get('interval'),
]; ];
$form['min_time'] = [ $form['creation']['min_time'] = [
'#type' => 'textfield', '#type' => 'textfield',
'#title' => $this->t('Event Series Minimum Time'), '#title' => $this->t('Event Series Minimum Time'),
'#required' => TRUE, '#required' => TRUE,
...@@ -83,7 +89,7 @@ class EventSeriesSettingsForm extends ConfigFormBase { ...@@ -83,7 +89,7 @@ class EventSeriesSettingsForm extends ConfigFormBase {
'#default_value' => $config->get('min_time'), '#default_value' => $config->get('min_time'),
]; ];
$form['max_time'] = [ $form['creation']['max_time'] = [
'#type' => 'textfield', '#type' => 'textfield',
'#title' => $this->t('Event Series Maximum Time'), '#title' => $this->t('Event Series Maximum Time'),
'#required' => TRUE, '#required' => TRUE,
...@@ -94,7 +100,7 @@ class EventSeriesSettingsForm extends ConfigFormBase { ...@@ -94,7 +100,7 @@ class EventSeriesSettingsForm extends ConfigFormBase {
$php_date_url = Url::fromUri('https://secure.php.net/manual/en/function.date.php'); $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); $php_date_link = Link::fromTextAndUrl($this->t('PHP date/time format'), $php_date_url);
$form['date_format'] = [ $form['creation']['date_format'] = [
'#type' => 'textfield', '#type' => 'textfield',
'#title' => $this->t('Event Series Date Format'), '#title' => $this->t('Event Series Date Format'),
'#required' => TRUE, '#required' => TRUE,
...@@ -104,7 +110,7 @@ class EventSeriesSettingsForm extends ConfigFormBase { ...@@ -104,7 +110,7 @@ class EventSeriesSettingsForm extends ConfigFormBase {
'#default_value' => $config->get('date_format'), '#default_value' => $config->get('date_format'),
]; ];
$form['time_format'] = [ $form['creation']['time_format'] = [
'#type' => 'textfield', '#type' => 'textfield',
'#title' => $this->t('Event Series Time Format'), '#title' => $this->t('Event Series Time Format'),
'#required' => TRUE, '#required' => TRUE,
...@@ -124,7 +130,7 @@ class EventSeriesSettingsForm extends ConfigFormBase { ...@@ -124,7 +130,7 @@ class EventSeriesSettingsForm extends ConfigFormBase {
'sunday' => t('Sunday'), 'sunday' => t('Sunday'),
]; ];
$form['days'] = [ $form['creation']['days'] = [
'#type' => 'checkboxes', '#type' => 'checkboxes',
'#title' => $this->t('Event Series Days'), '#title' => $this->t('Event Series Days'),
'#required' => TRUE, '#required' => TRUE,
...@@ -133,7 +139,13 @@ class EventSeriesSettingsForm extends ConfigFormBase { ...@@ -133,7 +139,13 @@ class EventSeriesSettingsForm extends ConfigFormBase {
'#default_value' => explode(',', $config->get('days')), '#default_value' => explode(',', $config->get('days')),
]; ];
$form['limit'] = [ $form['display'] = [
'#type' => 'details',
'#title' => $this->t('Event Display'),
'#open' => TRUE,
];
$form['display']['limit'] = [
'#type' => 'number', '#type' => 'number',
'#title' => $this->t('Event Series Items'), '#title' => $this->t('Event Series Items'),
'#required' => TRUE, '#required' => TRUE,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment