You are here

interface FieldStorageFormatManagerInterface in Apigee Edge 8

Field storage formatter plugin definition.

Hierarchy

Expanded class hierarchy of FieldStorageFormatManagerInterface

All classes that implement FieldStorageFormatManagerInterface

4 files declare their use of FieldStorageFormatManagerInterface
DeveloperAttributesSettingsForm.php in src/Form/DeveloperAttributesSettingsForm.php
FieldAttributeConverter.php in src/FieldAttributeConverter.php
UserDeveloperConverter.php in src/UserDeveloperConverter.php
UserDeveloperConverter.php in tests/modules/apigee_edge_test/src/UserDeveloperConverter.php

File

src/Plugin/FieldStorageFormatManagerInterface.php, line 29

Namespace

Drupal\apigee_edge\Plugin
View source
interface FieldStorageFormatManagerInterface extends PluginManagerInterface, CachedDiscoveryInterface {

  /**
   * Finds a plugin to format a given field type.
   *
   * @param string $field_type
   *   Field type.
   *
   * @return \Drupal\apigee_edge\Plugin\FieldStorageFormatInterface|null
   *   Storage formatter if found. NULL if not.
   */
  public function lookupPluginForFieldType(string $field_type) : ?FieldStorageFormatInterface;

}

Members

Namesort descending Modifiers Type Description Overrides
CachedDiscoveryInterface::clearCachedDefinitions public function Clears static and persistent plugin definition caches. 2
CachedDiscoveryInterface::useCaches public function Disable the use of caches. 2
DiscoveryInterface::getDefinition public function Gets a specific plugin definition. 4
DiscoveryInterface::getDefinitions public function Gets the definition of all plugins for this type. 3
DiscoveryInterface::hasDefinition public function Indicates if a specific plugin definition exists. 2
FactoryInterface::createInstance public function Creates a pre-configured instance of a plugin. 7
FieldStorageFormatManagerInterface::lookupPluginForFieldType public function Finds a plugin to format a given field type. 1
MapperInterface::getInstance public function Gets a preconfigured instance of a plugin. 4