interface WebformExporterManagerInterface in Webform 8.5
Same name and namespace in other branches
- 6.x src/Plugin/WebformExporterManagerInterface.php \Drupal\webform\Plugin\WebformExporterManagerInterface
Collects available results exporters.
Hierarchy
- interface \Drupal\Component\Plugin\PluginManagerInterface; interface \Drupal\Component\Plugin\Discovery\CachedDiscoveryInterface; interface \Drupal\Component\Plugin\FallbackPluginManagerInterface; interface \Drupal\Component\Plugin\CategorizingPluginManagerInterface; interface \Drupal\webform\Plugin\WebformPluginManagerExcludedInterface
- interface \Drupal\webform\Plugin\WebformExporterManagerInterface
Expanded class hierarchy of WebformExporterManagerInterface
All classes that implement WebformExporterManagerInterface
2 files declare their use of WebformExporterManagerInterface
- WebformAdminConfigExportersForm.php in src/
Form/ AdminConfig/ WebformAdminConfigExportersForm.php - WebformSubmissionExporter.php in src/
WebformSubmissionExporter.php
File
- src/
Plugin/ WebformExporterManagerInterface.php, line 13
Namespace
Drupal\webform\PluginView source
interface WebformExporterManagerInterface extends PluginManagerInterface, CachedDiscoveryInterface, FallbackPluginManagerInterface, CategorizingPluginManagerInterface, WebformPluginManagerExcludedInterface {
/**
* Get all available webform element plugin instances.
*
* @param array $configuration
* Export configuration (aka export options).
*
* @return \Drupal\webform\Plugin\WebformExporterInterface[]
* An array of all available webform exporter plugin instances.
*/
public function getInstances(array $configuration = []);
/**
* Get exporter plugins as options.
*
* @return array
* An associative array of options keyed by plugin id.
*/
public function getOptions();
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
CachedDiscoveryInterface:: |
public | function | Clears static and persistent plugin definition caches. | 2 |
CachedDiscoveryInterface:: |
public | function | Disable the use of caches. | 2 |
CategorizingPluginManagerInterface:: |
public | function | Gets the names of all categories. | 1 |
CategorizingPluginManagerInterface:: |
public | function | Gets sorted plugin definitions grouped by category. | 1 |
CategorizingPluginManagerInterface:: |
public | function | Gets sorted plugin definitions. | 2 |
DiscoveryInterface:: |
public | function | Gets a specific plugin definition. | 4 |
DiscoveryInterface:: |
public | function | Gets the definition of all plugins for this type. | 3 |
DiscoveryInterface:: |
public | function | Indicates if a specific plugin definition exists. | 2 |
FactoryInterface:: |
public | function | Creates a pre-configured instance of a plugin. | 7 |
FallbackPluginManagerInterface:: |
public | function | Gets a fallback id for a missing plugin. | 5 |
MapperInterface:: |
public | function | Gets a preconfigured instance of a plugin. | 4 |
WebformExporterManagerInterface:: |
public | function | Get all available webform element plugin instances. | 1 |
WebformExporterManagerInterface:: |
public | function | Get exporter plugins as options. | 1 |
WebformPluginManagerExcludedInterface:: |
public | function | Remove excluded plugin definitions. | 4 |