public function WebformHandlerBase::isApplicable in Webform 8.5
Same name and namespace in other branches
- 6.x src/Plugin/WebformHandlerBase.php \Drupal\webform\Plugin\WebformHandlerBase::isApplicable()
Determine if this handle is applicable to the webform.
Parameters
\Drupal\webform\WebformInterface $webform: A webform.
Return value
bool TRUE if this handler is applicable to the webform.
Overrides WebformHandlerInterface::isApplicable
File
- src/
Plugin/ WebformHandlerBase.php, line 393
Class
- WebformHandlerBase
- Provides a base class for a webform handler.
Namespace
Drupal\webform\PluginCode
public function isApplicable(WebformInterface $webform) {
return TRUE;
}