class LogRescheduleActionForm in Log entity 2.x
Provides a log reschedule confirmation form.
Hierarchy
- class \Drupal\Core\Form\FormBase implements ContainerInjectionInterface, FormInterface uses DependencySerializationTrait, LoggerChannelTrait, MessengerTrait, RedirectDestinationTrait, StringTranslationTrait
- class \Drupal\Core\Form\ConfirmFormBase implements ConfirmFormInterface
- class \Drupal\log\Form\LogActionFormBase
- class \Drupal\log\Form\LogRescheduleActionForm
- class \Drupal\log\Form\LogActionFormBase
- class \Drupal\Core\Form\ConfirmFormBase implements ConfirmFormInterface
Expanded class hierarchy of LogRescheduleActionForm
1 string reference to 'LogRescheduleActionForm'
File
- src/
Form/ LogRescheduleActionForm.php, line 11
Namespace
Drupal\log\FormView source
class LogRescheduleActionForm extends LogActionFormBase {
/**
* The action id.
*
* @var string
*/
protected $actionId = 'log_reschedule_action';
/**
* {@inheritdoc}
*/
public function getFormId() {
return 'log_reschedule_action_form';
}
/**
* {@inheritdoc}
*/
public function getQuestion() {
return $this
->formatPlural(count($this->logs), 'Are you sure you want to reschedule this log?', 'Are you sure you want to reschedule these logs?');
}
/**
* {@inheritdoc}
*/
public function getConfirmText() {
return $this
->t('Reschedule');
}
/**
* {@inheritdoc}
*/
public function buildForm(array $form, FormStateInterface $form_state) {
$form = parent::buildForm($form, $form_state);
$form['type_of_date'] = [
'#type' => 'checkbox',
'#title' => $this
->t('Reschedule by a relative date'),
'#weight' => -10,
];
$form['title'] = [
'#type' => 'html_tag',
'#tag' => 'h4',
'#value' => $form['date']['#title'],
'#weight' => -9,
];
// Datetime fields need to be wrapped for #states to work.
// @see https://www.drupal.org/project/drupal/issues/2419131
$form['absolute'] = [
'#type' => 'container',
'#states' => [
'visible' => [
':input[name="type_of_date"]' => [
'checked' => FALSE,
],
],
],
];
$form['absolute']['date'] = $form['date'];
unset($form['absolute']['date']['#title']);
$form['absolute']['date']['#required'] = FALSE;
unset($form['date']);
$form['relative'] = [
'#type' => 'container',
'#attributes' => [
'class' => [
'container-inline',
],
],
'#states' => [
'visible' => [
':input[name="type_of_date"]' => [
'checked' => TRUE,
],
],
],
];
$form['relative']['amount'] = [
'#type' => 'number',
'#size' => 4,
];
$form['relative']['time'] = [
'#type' => 'select',
'#options' => [
'hour' => $this
->t('Hours'),
'day' => $this
->t('Days'),
'week' => $this
->t('Weeks'),
'month' => $this
->t('Months'),
'year' => $this
->t('Years'),
],
];
return $form;
}
/**
* {@inheritdoc}
*/
public function validateForm(array &$form, FormStateInterface $form_state) {
$type_of_date = $form_state
->getValue('type_of_date');
if ($type_of_date) {
$amount = $form_state
->getValue('amount');
$time = $form_state
->getValue('time');
if (empty($amount)) {
$form_state
->setError($form['relative']['amount'], 'Please enter the amount of time for rescheduling.');
}
if (empty($time)) {
$form_state
->setError($form['relative']['amount'], 'Please enter the time units for rescheduling.');
}
}
}
/**
* {@inheritdoc}
*/
public function submitForm(array &$form, FormStateInterface $form_state) {
// Filter out logs the user doesn't have access to.
$inaccessible_logs = [];
$accessible_logs = [];
$current_user = $this
->currentUser();
foreach ($this->logs as $log) {
if (!$log
->get('timestamp')
->access('edit', $current_user) || !$log
->get('status')
->access('edit', $current_user) || !$log
->access('update', $current_user)) {
$inaccessible_logs[] = $log;
continue;
}
$accessible_logs[] = $log;
}
if ($form_state
->getValue('confirm') && !empty($accessible_logs)) {
$count = count($accessible_logs);
$type_of_date = $form_state
->getValue('type_of_date');
if ($type_of_date) {
$amount = $form_state
->getValue('amount');
$time = $form_state
->getValue('time');
$sign = $amount >= 0 ? '+' : '';
foreach ($accessible_logs as $log) {
$new_date = new DrupalDateTime();
$new_date
->setTimestamp($log
->get('timestamp')->value);
$new_date
->modify("{$sign}{$amount} {$time}");
if ($log
->get('status')
->first()
->isTransitionAllowed('to_pending')) {
$log
->get('status')
->first()
->applyTransitionById('to_pending');
}
$log
->set('timestamp', $new_date
->getTimestamp());
$log
->setNewRevision(TRUE);
$log
->save();
}
}
else {
/** @var \Drupal\Core\Datetime\DrupalDateTime $new_date */
$new_date = $form_state
->getValue('date');
foreach ($accessible_logs as $log) {
if ($log
->get('status')
->first()
->isTransitionAllowed('to_pending')) {
$log
->get('status')
->first()
->applyTransitionById('to_pending');
}
$log
->set('timestamp', $new_date
->getTimestamp());
$log
->setNewRevision(TRUE);
$log
->save();
}
}
$this
->messenger()
->addMessage($this
->formatPlural($count, 'Rescheduled 1 log.', 'Rescheduled @count logs.'));
}
// Add warning message if there were inaccessible logs.
if (!empty($inaccessible_logs)) {
$inaccessible_count = count($inaccessible_logs);
$this
->messenger()
->addWarning($this
->formatPlural($inaccessible_count, 'Could not reschedule @count log because you do not have the necessary permissions.', 'Could not reschedule @count logs because you do not have the necessary permissions.'));
}
parent::submitForm($form, $form_state);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ConfirmFormBase:: |
public | function |
Returns a caption for the link which cancels the action. Overrides ConfirmFormInterface:: |
2 |
ConfirmFormBase:: |
public | function |
Returns the internal name used to refer to the confirmation item. Overrides ConfirmFormInterface:: |
|
DependencySerializationTrait:: |
protected | property | ||
DependencySerializationTrait:: |
protected | property | ||
DependencySerializationTrait:: |
public | function | 2 | |
DependencySerializationTrait:: |
public | function | 2 | |
FormBase:: |
protected | property | The config factory. | 3 |
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. | 3 |
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. | |
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. | |
LogActionFormBase:: |
protected | property | The entity type manager. | |
LogActionFormBase:: |
protected | property | The logs to clone. | |
LogActionFormBase:: |
protected | property | The tempstore factory. | |
LogActionFormBase:: |
protected | property | The current user. | |
LogActionFormBase:: |
public static | function |
Instantiates a new instance of this class. Overrides FormBase:: |
|
LogActionFormBase:: |
public | function |
Returns the route to go to if the user cancels the action. Overrides ConfirmFormInterface:: |
|
LogActionFormBase:: |
public | function |
Returns additional text to display as a description. Overrides ConfirmFormBase:: |
|
LogActionFormBase:: |
public | function | Constructs a LogCloneActionForm form object. | |
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. | |
LogRescheduleActionForm:: |
protected | property | The action id. | |
LogRescheduleActionForm:: |
public | function |
Form constructor. Overrides LogActionFormBase:: |
|
LogRescheduleActionForm:: |
public | function |
Returns a caption for the button that confirms the action. Overrides LogActionFormBase:: |
|
LogRescheduleActionForm:: |
public | function |
Returns a unique string identifying the form. Overrides LogActionFormBase:: |
|
LogRescheduleActionForm:: |
public | function |
Returns the question to ask the user. Overrides LogActionFormBase:: |
|
LogRescheduleActionForm:: |
public | function |
Form submission handler. Overrides LogActionFormBase:: |
|
LogRescheduleActionForm:: |
public | function |
Form validation handler. Overrides FormBase:: |
|
MessengerTrait:: |
protected | property | The messenger. | 27 |
MessengerTrait:: |
public | function | Gets the messenger. | 27 |
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. | 4 |
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. |