You are here

public function WebformHandlerBase::label in Webform 8.5

Same name and namespace in other branches
  1. 6.x src/Plugin/WebformHandlerBase.php \Drupal\webform\Plugin\WebformHandlerBase::label()

Returns the webform handler label.

Return value

string The webform handler label.

Overrides WebformHandlerInterface::label

7 calls to WebformHandlerBase::label()
ActionWebformHandler::displayDebug in src/Plugin/WebformHandler/ActionWebformHandler.php
Display debugging information about the current action.
EmailWebformHandler::buildDebugMessage in src/Plugin/WebformHandler/EmailWebformHandler.php
Build debug message.
EmailWebformHandler::sendMessage in src/Plugin/WebformHandler/EmailWebformHandler.php
Sends and logs a webform submission message.
RemotePostWebformHandler::debug in src/Plugin/WebformHandler/RemotePostWebformHandler.php
Display debugging information.
ScheduleEmailWebformHandler::scheduleMessage in modules/webform_scheduled_email/src/Plugin/WebformHandler/ScheduleEmailWebformHandler.php
Schedule the sending of an email.

... See full list

File

src/Plugin/WebformHandlerBase.php, line 231

Class

WebformHandlerBase
Provides a base class for a webform handler.

Namespace

Drupal\webform\Plugin

Code

public function label() {
  return $this
    ->getLabel();
}