You are here

protected function ScheduledUpdateTypeBaseForm::getSupportedRunnerDefinitions in Scheduled Updates 8

Get definitions for Runner Plugins that should be supported.

Return value

array|\mixed[]|null

2 calls to ScheduledUpdateTypeBaseForm::getSupportedRunnerDefinitions()
ScheduledUpdateTypeAddAsFieldForm::getSupportedRunnerDefinitions in src/Form/ScheduledUpdateTypeAddAsFieldForm.php
Override to only return runners that support embedded updates.
ScheduledUpdateTypeBaseForm::createRunnerElements in src/Form/ScheduledUpdateTypeBaseForm.php
Create form elements for runner selection and options.
1 method overrides ScheduledUpdateTypeBaseForm::getSupportedRunnerDefinitions()
ScheduledUpdateTypeAddAsFieldForm::getSupportedRunnerDefinitions in src/Form/ScheduledUpdateTypeAddAsFieldForm.php
Override to only return runners that support embedded updates.

File

src/Form/ScheduledUpdateTypeBaseForm.php, line 625
Contains \Drupal\scheduled_updates\Form\ScheduledUpdateTypeBaseForm.

Class

ScheduledUpdateTypeBaseForm

Namespace

Drupal\scheduled_updates\Form

Code

protected function getSupportedRunnerDefinitions() {
  return $this->runnerManager
    ->getDefinitions();
}