class SchedulerCronForm in Scheduler 8
Same name and namespace in other branches
- 2.x src/Form/SchedulerCronForm.php \Drupal\scheduler\Form\SchedulerCronForm
Scheduler Lightweight Cron form.
Hierarchy
- class \Drupal\Core\Form\FormBase implements ContainerInjectionInterface, FormInterface uses DependencySerializationTrait, LoggerChannelTrait, MessengerTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTrait
- class \Drupal\Core\Form\ConfigFormBase uses ConfigFormBaseTrait
- class \Drupal\scheduler\Form\SchedulerCronForm
- class \Drupal\Core\Form\ConfigFormBase uses ConfigFormBaseTrait
Expanded class hierarchy of SchedulerCronForm
1 string reference to 'SchedulerCronForm'
File
- src/
Form/ SchedulerCronForm.php, line 16
Namespace
Drupal\scheduler\FormView source
class SchedulerCronForm extends ConfigFormBase {
/**
* The module handler service.
*
* @var \Drupal\Core\Extension\ModuleHandlerInterface
*/
protected $moduleHandler;
/**
* The scheduler manager service.
*
* @var \Drupal\scheduler\SchedulerManager
*/
protected $schedulerManager;
/**
* Creates a SchedulerCronForm instance.
*
* @var \Drupal\Core\Config\ConfigFactoryInterface $config_factory
* The factory for configuration objects.
* @var \Drupal\Core\Extension\ModuleHandlerInterface $module_handler
* The module handler service.
* @var \Drupal\scheduler\SchedulerManager $scheduler_manager
* The scheduler manager service.
*/
public function __construct(ConfigFactoryInterface $config_factory, ModuleHandlerInterface $module_handler, SchedulerManager $scheduler_manager) {
parent::__construct($config_factory);
$this->moduleHandler = $module_handler;
$this->schedulerManager = $scheduler_manager;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container) {
return new static($container
->get('config.factory'), $container
->get('module_handler'), $container
->get('scheduler.manager'));
}
/**
* {@inheritdoc}
*/
public function getFormId() {
return 'scheduler_cron_form';
}
/**
* {@inheritdoc}
*/
protected function getEditableConfigNames() {
return [
'scheduler.settings',
];
}
/**
* {@inheritdoc}
*/
public function buildForm(array $form, FormStateInterface $form_state) {
$config = $this
->config('scheduler.settings');
$form['cron_settings'] = [
'#type' => 'fieldset',
'#title' => $this
->t('Lightweight cron settings'),
];
$form['cron_settings']['lightweight_log'] = [
'#type' => 'checkbox',
'#title' => $this
->t('Log every activation and completion message.'),
'#default_value' => $config
->get('log'),
'#description' => $this
->t('When this option is checked, Scheduler will write an entry to the log every time the lightweight cron process is started and completed. This is useful during set up and testing, but can result in a large number of log entries. Any actions performed during the lightweight cron run will always be logged regardless of this setting.'),
];
$form['cron_settings']['lightweight_access_key'] = [
'#type' => 'textfield',
'#title' => $this
->t('Lightweight cron access key'),
'#default_value' => $config
->get('lightweight_cron_access_key'),
'#required' => TRUE,
'#size' => 25,
'#description' => $this
->t("Similar to Drupal's cron key this acts as a security token to prevent unauthorised calls to scheduler/cron. The key should be passed as scheduler/cron/{access key}"),
];
// Add a submit handler function for the key generation.
$form['cron_settings']['create_key'][] = [
'#type' => 'submit',
'#value' => $this
->t('Generate new random key'),
'#submit' => [
'::generateRandomKey',
],
// No validation at all is required in the equivocate case, so
// we include this here to make it skip the form-level validator.
'#validate' => [],
];
// Add a submit handler function for the form.
$form['buttons']['submit_cron'][] = [
'#type' => 'submit',
'#prefix' => $this
->t("You can test Scheduler's lightweight cron process interactively"),
'#value' => $this
->t("Run Scheduler's lightweight cron now"),
'#submit' => [
'::runLightweightCron',
],
// No validation at all is required in the equivocate case, so
// we include this here to make it skip the form-level validator.
'#validate' => [],
];
return parent::buildForm($form, $form_state);
}
/**
* {@inheritdoc}
*/
public function submitForm(array &$form, FormStateInterface $form_state) {
$config = $this
->config('scheduler.settings');
$config
->set('log', $form_state
->getValue('lightweight_log'));
$config
->set('lightweight_cron_access_key', $form_state
->getValue('lightweight_access_key'));
$config
->save();
parent::submitForm($form, $form_state);
}
/**
* Form submission handler for the random key generation.
*
* This only fires when the 'Generate new random key' button is clicked.
*
* @param array $form
* An associative array containing the structure of the form.
* @param \Drupal\Core\Form\FormStateInterface $form_state
* The current state of the form.
*/
public function generateRandomKey(array &$form, FormStateInterface $form_state) {
$config = $this
->config('scheduler.settings');
$config
->set('lightweight_cron_access_key', substr(md5(rand()), 0, 20));
$config
->save();
parent::submitForm($form, $form_state);
}
/**
* Form submission handler to run the lightweight cron.
*
* This only fires when "Run Scheduler's lightweight cron now" is clicked.
*
* @param array $form
* An associative array containing the structure of the form.
* @param \Drupal\Core\Form\FormStateInterface $form_state
* The current state of the form.
*/
public function runLightweightCron(array &$form, FormStateInterface $form_state) {
$this->schedulerManager
->runLightweightCron([
'admin_form' => TRUE,
]);
if ($this->moduleHandler
->moduleExists('dblog')) {
$url = Url::fromRoute('dblog.overview')
->toString();
$message = $this
->t('Lightweight cron run completed. See the <a href="@url">log</a> for details.', [
'@url' => $url,
]);
}
else {
// If the Database Logging module is not enabled the route to the log
// overview does not exist. Show a simple status message.
$message = $this
->t('Lightweight cron run completed.');
}
$this
->messenger()
->addMessage($message);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ConfigFormBaseTrait:: |
protected | function | Retrieves a configuration object. | |
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 | 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 |
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. | |
SchedulerCronForm:: |
protected | property | The module handler service. | |
SchedulerCronForm:: |
protected | property | The scheduler manager service. | |
SchedulerCronForm:: |
public | function |
Form constructor. Overrides ConfigFormBase:: |
|
SchedulerCronForm:: |
public static | function |
Instantiates a new instance of this class. Overrides ConfigFormBase:: |
|
SchedulerCronForm:: |
public | function | Form submission handler for the random key generation. | |
SchedulerCronForm:: |
protected | function |
Gets the configuration names that will be editable. Overrides ConfigFormBaseTrait:: |
|
SchedulerCronForm:: |
public | function |
Returns a unique string identifying the form. Overrides FormInterface:: |
|
SchedulerCronForm:: |
public | function | Form submission handler to run the lightweight cron. | |
SchedulerCronForm:: |
public | function |
Form submission handler. Overrides ConfigFormBase:: |
|
SchedulerCronForm:: |
public | function |
Creates a SchedulerCronForm instance. Overrides ConfigFormBase:: |
|
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. |