You are here

protected function SubmissionsCompletedSinceLastSuccess::getSummary in Webform Scheduled Tasks 8.2

Get an optional summary for the plugin rendered in the settings form.

Return value

string|null A summary.

Overrides ResultSetPluginBase::getSummary

File

src/Plugin/WebformScheduledTasks/ResultSet/SubmissionsCompletedSinceLastSuccess.php, line 101

Class

SubmissionsCompletedSinceLastSuccess
Get all submissions completed since the last successful run of the task.

Namespace

Drupal\webform_scheduled_tasks\Plugin\WebformScheduledTasks\ResultSet

Code

protected function getSummary() {
  return $this
    ->t('All submissions since the last successful run of this task will be included.');
}