class InviteWithdrawForm in Invite 8
Class InviteWithdrawForm.
@package Drupal\invite\Form
Hierarchy
- class \Drupal\Core\Form\FormBase implements ContainerInjectionInterface, FormInterface uses DependencySerializationTrait, LoggerChannelTrait, MessengerTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTrait
- class \Drupal\invite\Form\InviteWithdrawForm
Expanded class hierarchy of InviteWithdrawForm
1 string reference to 'InviteWithdrawForm'
File
- src/
Form/ InviteWithdrawForm.php, line 20
Namespace
Drupal\invite\FormView source
class InviteWithdrawForm extends FormBase {
/**
* The node storage.
*
* @var \Drupal\Core\Entity\EntityStorageInterface
*/
protected $inviteStorage;
/**
* The entity type manager.
*
* @var \Drupal\Core\Entity\EntityTypeManager
*/
protected $entityTypeManager;
/**
* The Messenger service.
*
* @var \Drupal\Core\Messenger\MessengerInterface
*/
protected $messenger;
/**
* Constructs a InviteAcceptController object.
*
* @param \Drupal\Core\Entity\EntityStorageInterface $invite_storage
* Invite storage.
* @param \Drupal\Core\Entity\EntityTypeManager $entityTypeManager
* The entity type manager.
* @param \Drupal\Core\Messenger\MessengerInterface $messenger
* The messenger service.
*/
public function __construct(EntityStorageInterface $invite_storage, EntityTypeManager $entityTypeManager, MessengerInterface $messenger) {
$this->entityTypeManager = $entityTypeManager;
$this->inviteStorage = $invite_storage;
$this->messenger = $messenger;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container) {
$entity_type_manager = $container
->get('entity_type.manager');
return new static($entity_type_manager
->getStorage('invite'), $container
->get('entity_type.manager'), $container
->get('messenger'));
}
/**
* {@inheritdoc}
*/
public function getFormId() {
return 'invite_withdraw_form';
}
/**
* {@inheritdoc}
*/
public function buildForm(array $form, FormStateInterface $form_state, InviteInterface $invite = NULL) {
/** @var \Drupal\invite\InviteInterface $invite */
$form['#title'] = $this
->t('Withdraw invite for @field_invite_email_address', [
'@field_invite_email_address' => $invite->field_invite_email_address->value,
]);
$this->inviteStorage = $invite;
$form['actions']['#type'] = 'actions';
$form['withdraw_invite'] = [
'#type' => 'submit',
'#title' => $this
->t('Withdraw Invite'),
'#description' => $this
->t('Withdraw current invite.'),
'#button_type' => 'primary',
'#value' => $this
->t('Withdraw Invite'),
];
return $form;
}
/**
* {@inheritdoc}
*/
public function submitForm(array &$form, FormStateInterface $form_state) {
/** @var \Drupal\invite\InviteInterface $invite */
$invite = $this->inviteStorage;
$invite
->setStatus(InviteConstants::INVITE_WITHDRAWN);
$invite
->save();
$this->messenger
->addStatus($this
->t('The invitation has been withdrawn'));
$url = Url::fromRoute('invite.invite_list');
$form_state
->setRedirectUrl($url);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
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 | |
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. | |
FormBase:: |
public | function |
Form validation handler. Overrides FormInterface:: |
62 |
InviteWithdrawForm:: |
protected | property | The entity type manager. | |
InviteWithdrawForm:: |
protected | property | The node storage. | |
InviteWithdrawForm:: |
protected | property |
The Messenger service. Overrides MessengerTrait:: |
|
InviteWithdrawForm:: |
public | function |
Form constructor. Overrides FormInterface:: |
|
InviteWithdrawForm:: |
public static | function |
Instantiates a new instance of this class. Overrides FormBase:: |
|
InviteWithdrawForm:: |
public | function |
Returns a unique string identifying the form. Overrides FormInterface:: |
|
InviteWithdrawForm:: |
public | function |
Form submission handler. Overrides FormInterface:: |
|
InviteWithdrawForm:: |
public | function | Constructs a InviteAcceptController object. | |
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:: |
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. | |
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. |