You are here

public function WebformScheduledTask::getTaskPlugin in Webform Scheduled Tasks 8.2

Get the task plugin.

Return value

\Drupal\webform_scheduled_tasks\Plugin\WebformScheduledTasks\TaskPluginInterface The task plugin.

Overrides WebformScheduledTaskInterface::getTaskPlugin

File

src/Entity/WebformScheduledTask.php, line 153

Class

WebformScheduledTask
Defines the webform schedule entity type.

Namespace

Drupal\webform_scheduled_tasks\Entity

Code

public function getTaskPlugin() {
  return $this
    ->getPluginCollections()['task_settings']
    ->get($this->task_type)
    ->setScheduledTask($this);
}