abstract class SubscriptionsFormBase in Simplenews 8
Same name and namespace in other branches
- 8.2 src/Form/SubscriptionsFormBase.php \Drupal\simplenews\Form\SubscriptionsFormBase
- 3.x src/Form/SubscriptionsFormBase.php \Drupal\simplenews\Form\SubscriptionsFormBase
Entity form for Subscriber with common routines.
Hierarchy
- class \Drupal\Core\Form\FormBase implements ContainerInjectionInterface, FormInterface uses DependencySerializationTrait, LoggerChannelTrait, MessengerTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTrait
- class \Drupal\Core\Entity\EntityForm implements EntityFormInterface
- class \Drupal\Core\Entity\ContentEntityForm implements ContentEntityFormInterface
- class \Drupal\simplenews\Form\SubscriptionsFormBase
- class \Drupal\Core\Entity\ContentEntityForm implements ContentEntityFormInterface
- class \Drupal\Core\Entity\EntityForm implements EntityFormInterface
Expanded class hierarchy of SubscriptionsFormBase
File
- src/
Form/ SubscriptionsFormBase.php, line 13
Namespace
Drupal\simplenews\FormView source
abstract class SubscriptionsFormBase extends ContentEntityForm {
/**
* Submit button ID for creating new subscriptions.
*
* @var string
*/
const SUBMIT_SUBSCRIBE = 'subscribe';
/**
* Submit button ID for removing existing subscriptions.
*
* @var string
*/
const SUBMIT_UNSUBSCRIBE = 'unsubscribe';
/**
* Submit button ID for creating and removing subscriptions.
*
* @var string
*/
const SUBMIT_UPDATE = 'update';
/**
* The newsletters available to select from.
*
* @var \Drupal\simplenews\Entity\Newsletter[]
*/
protected $newsletters;
/**
* Allow delete button.
*
* @var bool
*/
protected $allowDelete = FALSE;
/**
* Set the newsletters available to select from.
*
* Unless called otherwise, all newsletters will be available.
*
* @param string[] $newsletters
* An array of Newsletter IDs.
*/
public function setNewsletterIds(array $newsletters) {
$this->newsletters = Newsletter::loadMultiple($newsletters);
}
/**
* Returns the newsletters available to select from.
*
* @return \Drupal\simplenews\Entity\Newsletter[]
* The newsletters available to select from, indexed by ID.
*/
public function getNewsletters() {
if (!isset($this->newsletters)) {
$this
->setNewsletterIds(array_keys(simplenews_newsletter_get_visible()));
}
return $this->newsletters;
}
/**
* Returns the newsletters available to select from.
*
* @return string[]
* The newsletter IDs available to select from, as an indexed array.
*/
public function getNewsletterIds() {
return array_keys($this
->getNewsletters());
}
/**
* Convenience method for the case of only one available newsletter.
*
* @see ::setNewsletterIds()
*
* @return string|null
* If there is exactly one newsletter available in this form, this method
* returns its ID. Otherwise it returns NULL.
*/
protected function getOnlyNewsletterId() {
$newsletters = $this
->getNewsletterIds();
if (count($newsletters) == 1) {
return array_shift($newsletters);
}
return NULL;
}
/**
* Returns a message to display to the user upon successful form submission.
*
* @param \Drupal\Core\Form\FormStateInterface $form_state
* Form state object.
* @param string $op
* A string equal to either ::SUBMIT_UPDATE, ::SUBMIT_SUBSCRIBE or
* ::SUBMIT_UNSUBSCRIBE.
* @param bool $confirm
* Whether a confirmation mail is sent or not.
*
* @return string
* A HTML message.
*/
protected abstract function getSubmitMessage(FormStateInterface $form_state, $op, $confirm);
/**
* Returns the renderer for the 'subscriptions' field.
*
* @param \Drupal\Core\Form\FormStateInterface $form_state
* The form state object.
*
* @return \Drupal\simplenews\SubscriptionWidgetInterface
* The widget.
*/
protected function getSubscriptionWidget(FormStateInterface $form_state) {
return $this
->getFormDisplay($form_state)
->getRenderer('subscriptions');
}
/**
* {@inheritdoc}
*/
public function form(array $form, FormStateInterface $form_state) {
$this
->getSubscriptionWidget($form_state)
->setAvailableNewsletterIds(array_keys($this
->getNewsletters()));
$form = parent::form($form, $form_state);
// Modify UI texts.
if ($mail = $this->entity
->getMail()) {
$form['subscriptions']['widget']['#title'] = t('Subscriptions for %mail', array(
'%mail' => $mail,
));
$form['subscriptions']['widget']['#description'] = t('Check the newsletters you want to subscribe to. Uncheck the ones you want to unsubscribe from.');
}
else {
$form['subscriptions']['widget']['#title'] = t('Manage your newsletter subscriptions');
$form['subscriptions']['widget']['#description'] = t('Select the newsletter(s) to which you want to subscribe or unsubscribe.');
}
return $form;
}
/**
* {@inheritdoc}
*/
protected function actions(array $form, FormStateInterface $form_state) {
// There are two main cases of subscriptions forms:
// - An authenticated subscriber updating existing subscriptions. The main
// case is a logged in user, but it could also be an anonymous
// subscription authenticated by means of a hash. In both cases, the
// email address is set.
// - An unauthenticated user who enters an email address in the form and
// requests to subscribe or unsubscribe. In this case the email address
// is not set.
$has_widget = !$this
->getSubscriptionWidget($form_state)
->isHidden();
$has_mail = (bool) $this->entity
->getMail();
$actions = parent::actions($form, $form_state);
if ($has_mail && $has_widget) {
// When authenticated with a widget, show a single update button. The
// user can check or uncheck newsletters then submit.
$actions[static::SUBMIT_UPDATE] = $actions['submit'];
$actions[static::SUBMIT_UPDATE]['#submit'][] = '::submitUpdate';
}
else {
// When not authenticated, show subscribe and unsubscribe buttons. The
// user can check which newsletters to alter.
//
// The final case is when authenticated with no widget which is for a
// form that applies to a single newsletter. In this case there will be a
// single button either subscribe or unsubscribe depending on the current
// subscription state.
if ($has_widget || !$this->entity
->isSubscribed($this
->getOnlyNewsletterId())) {
// Subscribe button.
$actions[static::SUBMIT_SUBSCRIBE] = $actions['submit'];
$actions[static::SUBMIT_SUBSCRIBE]['#value'] = t('Subscribe');
$actions[static::SUBMIT_SUBSCRIBE]['#submit'][] = '::submitSubscribe';
}
if ($has_widget || $this->entity
->isSubscribed($this
->getOnlyNewsletterId())) {
// Unsubscribe button.
$actions[static::SUBMIT_UNSUBSCRIBE] = $actions['submit'];
$actions[static::SUBMIT_UNSUBSCRIBE]['#value'] = t('Unsubscribe');
$actions[static::SUBMIT_UNSUBSCRIBE]['#submit'][] = '::submitUnsubscribe';
}
}
unset($actions['submit']);
if (!$this->allowDelete) {
unset($actions['delete']);
}
return $actions;
}
/**
* {@inheritdoc}
*/
public function validateForm(array &$form, FormStateInterface $form_state) {
$mail = $form_state
->getValue(array(
'mail',
0,
'value',
));
// Users should login to manage their subscriptions.
if (\Drupal::currentUser()
->isAnonymous() && ($user = user_load_by_mail($mail))) {
$message = $user
->isBlocked() ? $this
->t('The email address %mail belongs to a blocked user.', array(
'%mail' => $mail,
)) : $this
->t('There is an account registered for the e-mail address %mail. Please log in to manage your newsletter subscriptions.', array(
'%mail' => $mail,
));
$form_state
->setErrorByName('mail', $message);
}
// Unless the submit handler is 'update', if the newsletter checkboxes are
// available, at least one must be checked.
$update = in_array('::submitUpdate', $form_state
->getSubmitHandlers());
if (!$update && !$this
->getSubscriptionWidget($form_state)
->isHidden() && !count($form_state
->getValue('subscriptions'))) {
$form_state
->setErrorByName('subscriptions', t('You must select at least one newsletter.'));
}
parent::validateForm($form, $form_state);
}
/**
* {@inheritdoc}
*/
public function submitForm(array &$form, FormStateInterface $form_state) {
// Subclasses try to load an existing subscriber in different ways in
// buildForm. For anonymous user the email is unknown in buildForm, but here
// we can try again to load an existing subscriber.
$mail = $form_state
->getValue(array(
'mail',
0,
'value',
));
if ($this->entity
->isNew() && isset($mail) && ($subscriber = simplenews_subscriber_load_by_mail($mail))) {
$this
->setEntity($subscriber);
}
parent::submitForm($form, $form_state);
}
/**
* {@inheritdoc}
*/
protected function copyFormValuesToEntity(EntityInterface $entity, array $form, FormStateInterface $form_state) {
// Subscriptions are handled later, in the submit callbacks through
// ::getSelectedNewsletters(). Letting them be copied here would break
// subscription management.
$subsciptions_value = $form_state
->getValue('subscriptions');
$form_state
->unsetValue('subscriptions');
parent::copyFormValuesToEntity($entity, $form, $form_state);
$form_state
->setValue('subscriptions', $subsciptions_value);
}
/**
* Submit callback that subscribes to selected newsletters.
*
* @param array $form
* The form structure.
* @param \Drupal\Core\Form\FormStateInterface $form_state
* The form state object.
*/
public function submitSubscribe(array $form, FormStateInterface $form_state) {
/** @var \Drupal\simplenews\Subscription\SubscriptionManagerInterface $subscription_manager */
$subscription_manager = \Drupal::service('simplenews.subscription_manager');
foreach ($this
->extractNewsletterIds($form_state, TRUE) as $newsletter_id) {
$subscription_manager
->subscribe($this->entity
->getMail(), $newsletter_id, NULL, 'website');
}
$sent = $subscription_manager
->sendConfirmations();
$this
->messenger()
->addMessage($this
->getSubmitMessage($form_state, static::SUBMIT_SUBSCRIBE, $sent));
}
/**
* Submit callback that unsubscribes from selected newsletters.
*
* @param array $form
* The form structure.
* @param \Drupal\Core\Form\FormStateInterface $form_state
* The form state object.
*/
public function submitUnsubscribe(array $form, FormStateInterface $form_state) {
/** @var \Drupal\simplenews\Subscription\SubscriptionManagerInterface $subscription_manager */
$subscription_manager = \Drupal::service('simplenews.subscription_manager');
foreach ($this
->extractNewsletterIds($form_state, TRUE) as $newsletter_id) {
$subscription_manager
->unsubscribe($this->entity
->getMail(), $newsletter_id, NULL, 'website');
}
$sent = $subscription_manager
->sendConfirmations();
$this
->messenger()
->addMessage($this
->getSubmitMessage($form_state, static::SUBMIT_UNSUBSCRIBE, $sent));
}
/**
* Submit callback that (un)subscribes to newsletters based on selection.
*
* @param array $form
* The form structure.
* @param \Drupal\Core\Form\FormStateInterface $form_state
* The form state object.
*/
public function submitUpdate(array $form, FormStateInterface $form_state) {
// We first subscribe, then unsubscribe. This prevents deletion of
// subscriptions when unsubscribed from the newsletter.
/** @var \Drupal\simplenews\Subscription\SubscriptionManagerInterface $subscription_manager */
$subscription_manager = \Drupal::service('simplenews.subscription_manager');
foreach ($this
->extractNewsletterIds($form_state, TRUE) as $newsletter_id) {
$subscription_manager
->subscribe($this->entity
->getMail(), $newsletter_id, FALSE, 'website');
}
if (!$this->entity
->isNew()) {
foreach ($this
->extractNewsletterIds($form_state, FALSE) as $newsletter_id) {
$subscription_manager
->unsubscribe($this->entity
->getMail(), $newsletter_id, FALSE, 'website');
}
}
$this
->messenger()
->addMessage($this
->getSubmitMessage($form_state, static::SUBMIT_UPDATE, FALSE));
}
/**
* Extracts selected/deselected newsletters IDs from the subscriptions widget.
*
* @param \Drupal\Core\Form\FormStateInterface $form_state
* Form state object.
* @param bool $selected
* Whether to extract selected (TRUE) or deselected (FALSE) newsletter IDs.
*
* @return string[]
* IDs of selected/deselected newsletters.
*/
protected function extractNewsletterIds(FormStateInterface $form_state, $selected) {
return $this
->getSubscriptionWidget($form_state)
->extractNewsletterIds($form_state
->getValue('subscriptions'), $selected);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ContentEntityForm:: |
protected | property |
The entity being used by this form. Overrides EntityForm:: |
9 |
ContentEntityForm:: |
protected | property | The entity repository service. | |
ContentEntityForm:: |
protected | property | The entity type bundle info service. | |
ContentEntityForm:: |
protected | property | The time service. | |
ContentEntityForm:: |
protected | function | Add revision form fields if the entity enabled the UI. | |
ContentEntityForm:: |
public | function |
Builds an updated entity object based upon the submitted form values. Overrides EntityForm:: |
3 |
ContentEntityForm:: |
public static | function |
Instantiates a new instance of this class. Overrides FormBase:: |
9 |
ContentEntityForm:: |
protected | function | Flags violations for the current form. | 4 |
ContentEntityForm:: |
protected | function | Returns the bundle entity of the entity, or NULL if there is none. | |
ContentEntityForm:: |
protected | function | Gets the names of all fields edited in the form. | 4 |
ContentEntityForm:: |
public | function |
Gets the form display. Overrides ContentEntityFormInterface:: |
|
ContentEntityForm:: |
public | function |
Gets the code identifying the active form language. Overrides ContentEntityFormInterface:: |
|
ContentEntityForm:: |
protected | function | Should new revisions created on default. | |
ContentEntityForm:: |
protected | function |
Initializes the form state and the entity before the first form build. Overrides EntityForm:: |
1 |
ContentEntityForm:: |
protected | function | Initializes form language code values. | |
ContentEntityForm:: |
public | function |
Checks whether the current form language matches the entity one. Overrides ContentEntityFormInterface:: |
|
ContentEntityForm:: |
protected | function |
Prepares the entity object before the form is built first. Overrides EntityForm:: |
1 |
ContentEntityForm:: |
public | function |
Sets the form display. Overrides ContentEntityFormInterface:: |
|
ContentEntityForm:: |
protected | function | Checks whether the revision form fields should be added to the form. | |
ContentEntityForm:: |
public | function | Updates the changed time of the entity. | |
ContentEntityForm:: |
public | function | Updates the form language to reflect any change to the entity language. | |
ContentEntityForm:: |
public | function | Constructs a ContentEntityForm object. | 9 |
DependencySerializationTrait:: |
protected | property | An array of entity type IDs keyed by the property name of their storages. | |
DependencySerializationTrait:: |
protected | property | An array of service IDs keyed by property name used for serialization. | |
DependencySerializationTrait:: |
public | function | 1 | |
DependencySerializationTrait:: |
public | function | 2 | |
EntityForm:: |
protected | property | The entity type manager. | 3 |
EntityForm:: |
protected | property | The module handler service. | |
EntityForm:: |
protected | property | The name of the current operation. | |
EntityForm:: |
private | property | The entity manager. | |
EntityForm:: |
protected | function | Returns the action form element for the current entity form. | |
EntityForm:: |
public | function | Form element #after_build callback: Updates the entity with submitted data. | |
EntityForm:: |
public | function |
Form constructor. Overrides FormInterface:: |
10 |
EntityForm:: |
public | function |
Returns a string identifying the base form. Overrides BaseFormIdInterface:: |
5 |
EntityForm:: |
public | function |
Gets the form entity. Overrides EntityFormInterface:: |
|
EntityForm:: |
public | function |
Determines which entity will be used by this form from a RouteMatch object. Overrides EntityFormInterface:: |
1 |
EntityForm:: |
public | function |
Returns a unique string identifying the form. Overrides FormInterface:: |
10 |
EntityForm:: |
public | function |
Gets the operation identifying the form. Overrides EntityFormInterface:: |
|
EntityForm:: |
protected | function | Invokes the specified prepare hook variant. | |
EntityForm:: |
public | function | Process callback: assigns weights and hides extra fields. | |
EntityForm:: |
public | function |
Form submission handler for the 'save' action. Overrides EntityFormInterface:: |
41 |
EntityForm:: |
public | function |
Sets the form entity. Overrides EntityFormInterface:: |
|
EntityForm:: |
public | function |
Sets the entity manager for this form. Overrides EntityFormInterface:: |
|
EntityForm:: |
public | function |
Sets the entity type manager for this form. Overrides EntityFormInterface:: |
|
EntityForm:: |
public | function |
Sets the module handler for this form. Overrides EntityFormInterface:: |
|
EntityForm:: |
public | function |
Sets the operation for this form. Overrides EntityFormInterface:: |
|
EntityForm:: |
public | function | ||
EntityForm:: |
public | function | ||
FormBase:: |
protected | property | The config factory. | 1 |
FormBase:: |
protected | property | The request stack. | 1 |
FormBase:: |
protected | property | The route match. | |
FormBase:: |
protected | function | Retrieves a configuration object. | |
FormBase:: |
protected | function | Gets the config factory for this form. | 1 |
FormBase:: |
private | function | Returns the service container. | |
FormBase:: |
protected | function | Gets the current user. | |
FormBase:: |
protected | function | Gets the request object. | |
FormBase:: |
protected | function | Gets the route match. | |
FormBase:: |
protected | function | Gets the logger for a specific channel. | |
FormBase:: |
protected | function |
Returns a redirect response object for the specified route. Overrides UrlGeneratorTrait:: |
|
FormBase:: |
public | function | Resets the configuration factory. | |
FormBase:: |
public | function | Sets the config factory for this form. | |
FormBase:: |
public | function | Sets the request stack object to use. | |
LinkGeneratorTrait:: |
protected | property | The link generator. | 1 |
LinkGeneratorTrait:: |
protected | function | Returns the link generator. | |
LinkGeneratorTrait:: |
protected | function | Renders a link to a route given a route name and its parameters. | |
LinkGeneratorTrait:: |
public | function | Sets the link generator service. | |
LoggerChannelTrait:: |
protected | property | The logger channel factory service. | |
LoggerChannelTrait:: |
protected | function | Gets the logger for a specific channel. | |
LoggerChannelTrait:: |
public | function | Injects the logger channel factory. | |
MessengerTrait:: |
protected | property | The messenger. | 29 |
MessengerTrait:: |
public | function | Gets the messenger. | 29 |
MessengerTrait:: |
public | function | Sets the messenger. | |
RedirectDestinationTrait:: |
protected | property | The redirect destination service. | 1 |
RedirectDestinationTrait:: |
protected | function | Prepares a 'destination' URL query parameter for use with \Drupal\Core\Url. | |
RedirectDestinationTrait:: |
protected | function | Returns the redirect destination service. | |
RedirectDestinationTrait:: |
public | function | Sets the redirect destination service. | |
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. | |
SubscriptionsFormBase:: |
protected | property | Allow delete button. | 1 |
SubscriptionsFormBase:: |
protected | property | The newsletters available to select from. | |
SubscriptionsFormBase:: |
protected | function |
Returns an array of supported actions for the current entity form. Overrides EntityForm:: |
2 |
SubscriptionsFormBase:: |
protected | function |
Copies top-level form values to entity properties Overrides ContentEntityForm:: |
|
SubscriptionsFormBase:: |
protected | function | Extracts selected/deselected newsletters IDs from the subscriptions widget. | |
SubscriptionsFormBase:: |
public | function |
Gets the actual form array to be built. Overrides ContentEntityForm:: |
2 |
SubscriptionsFormBase:: |
public | function | Returns the newsletters available to select from. | |
SubscriptionsFormBase:: |
public | function | Returns the newsletters available to select from. | |
SubscriptionsFormBase:: |
protected | function | Convenience method for the case of only one available newsletter. | |
SubscriptionsFormBase:: |
abstract protected | function | Returns a message to display to the user upon successful form submission. | 4 |
SubscriptionsFormBase:: |
protected | function | Returns the renderer for the 'subscriptions' field. | |
SubscriptionsFormBase:: |
public | function | Set the newsletters available to select from. | |
SubscriptionsFormBase:: |
public | function |
This is the default entity object builder function. It is called before any
other submit handler to build the new entity object to be used by the
following submit handlers. At this point of the form workflow the entity is
validated and the form state… Overrides ContentEntityForm:: |
2 |
SubscriptionsFormBase:: |
public | function | Submit callback that subscribes to selected newsletters. | |
SubscriptionsFormBase:: |
public | function | Submit callback that unsubscribes from selected newsletters. | |
SubscriptionsFormBase:: |
public | function | Submit callback that (un)subscribes to newsletters based on selection. | |
SubscriptionsFormBase:: |
constant | Submit button ID for creating new subscriptions. | ||
SubscriptionsFormBase:: |
constant | Submit button ID for removing existing subscriptions. | ||
SubscriptionsFormBase:: |
constant | Submit button ID for creating and removing subscriptions. | ||
SubscriptionsFormBase:: |
public | function |
Button-level validation handlers are highly discouraged for entity forms,
as they will prevent entity validation from running. If the entity is going
to be saved during the form submission, this method should be manually
invoked from the button-level… Overrides ContentEntityForm:: |
|
UrlGeneratorTrait:: |
protected | property | The url generator. | |
UrlGeneratorTrait:: |
protected | function | Returns the URL generator service. | |
UrlGeneratorTrait:: |
public | function | Sets the URL generator service. | |
UrlGeneratorTrait:: |
protected | function | Generates a URL or path for a specific route based on the given parameters. |