public function WebformInterface::invokeHandlers in Webform 8.5
Same name and namespace in other branches
- 6.x src/WebformInterface.php \Drupal\webform\WebformInterface::invokeHandlers()
Invoke a handlers method.
Parameters
string $method: The handler method to be invoked.
mixed $data: The argument to passed by reference to the handler method.
mixed $context1: (optional) An additional variable that is passed by reference.
mixed $context2: (optional) An additional variable that is passed by reference.
mixed $context3: (optional) An additional variable that is passed by reference.
Return value
\Drupal\Core\Access\AccessResult|null If 'access' method is invoked an AccessResult is returned.
1 method overrides WebformInterface::invokeHandlers()
- Webform::invokeHandlers in src/
Entity/ Webform.php - Invoke a handlers method.
File
- src/
WebformInterface.php, line 1005
Class
- WebformInterface
- Provides an interface defining a webform entity.
Namespace
Drupal\webformCode
public function invokeHandlers($method, &$data, &$context1 = NULL, &$context2 = NULL, &$context3 = NULL);