You are here

public function WebformInterface::getHandlers in Webform 8.5

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

Returns the webform handlers for this webform.

Parameters

string $plugin_id: (optional) Plugin id used to return specific plugin instances (i.e. handlers).

bool $status: (optional) Status used to return enabled or disabled plugin instances (i.e. handlers).

int $results: (optional) Value indicating if webform submissions are saved to internal or external system.

int $submission: (optional) Value indicating if webform submissions must be saved to the database.

Return value

\Drupal\webform\Plugin\WebformHandlerPluginCollection|\Drupal\webform\Plugin\WebformHandlerInterface[] The webform handler plugin collection.

1 method overrides WebformInterface::getHandlers()
Webform::getHandlers in src/Entity/Webform.php
Returns the webform handlers for this webform.

File

src/WebformInterface.php, line 955

Class

WebformInterface
Provides an interface defining a webform entity.

Namespace

Drupal\webform

Code

public function getHandlers($plugin_id = NULL, $status = NULL, $results = NULL, $submission = NULL);