You are here

WebformHandlerManagerInterface.php in Webform 6.x

Same filename and directory in other branches
  1. 8.5 src/Plugin/WebformHandlerManagerInterface.php

File

src/Plugin/WebformHandlerManagerInterface.php
View source
<?php

namespace Drupal\webform\Plugin;

use Drupal\Component\Plugin\Discovery\CachedDiscoveryInterface;
use Drupal\Component\Plugin\PluginManagerInterface;
use Drupal\Component\Plugin\FallbackPluginManagerInterface;
use Drupal\Component\Plugin\CategorizingPluginManagerInterface;

/**
 * Collects available webform handlers.
 */
interface WebformHandlerManagerInterface extends PluginManagerInterface, CachedDiscoveryInterface, FallbackPluginManagerInterface, CategorizingPluginManagerInterface, WebformPluginManagerExcludedInterface {

}

Interfaces

Namesort descending Description
WebformHandlerManagerInterface Collects available webform handlers.