You are here

public function ResultSetPluginBase::label in Webform Scheduled Tasks 8.2

Get the label of the result plugin.

Return value

string The label of the task.

Overrides ResultSetPluginInterface::label

File

src/Plugin/WebformScheduledTasks/ResultSetPluginBase.php, line 109

Class

ResultSetPluginBase
A base class for result set plugins.

Namespace

Drupal\webform_scheduled_tasks\Plugin\WebformScheduledTasks

Code

public function label() {
  return $this
    ->getPluginDefinition()['label'];
}