You are here

public function WebformHandlerBase::supportsTokens in Webform 8.5

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

Determine if webform handler supports tokens.

Return value

bool TRUE if the webform handler supports tokens.

Overrides WebformHandlerInterface::supportsTokens

File

src/Plugin/WebformHandlerBase.php, line 259

Class

WebformHandlerBase
Provides a base class for a webform handler.

Namespace

Drupal\webform\Plugin

Code

public function supportsTokens() {
  return $this->pluginDefinition['tokens'];
}