You are here

class ApigeeFieldStorageFormat in Apigee Edge 8

Defines an Apigee Edge field storage formatter annotation object.

Hierarchy

Expanded class hierarchy of ApigeeFieldStorageFormat

1 file declares its use of ApigeeFieldStorageFormat
FieldStorageFormatManager.php in src/Plugin/FieldStorageFormatManager.php
1 class is annotated with ApigeeFieldStorageFormat
JSON in src/Plugin/ApigeeFieldStorageFormat/JSON.php
JSON formatter for Apigee Edge field storage.

File

src/Annotation/ApigeeFieldStorageFormat.php, line 29

Namespace

Drupal\apigee_edge\Annotation
View source
class ApigeeFieldStorageFormat extends Plugin {

  /**
   * The ID of the formatter.
   *
   * @var string
   */
  public $id;

  /**
   * The label of the formatter.
   *
   * @var string
   */
  public $label;

  /**
   * List of field types where this plugin is appropriate.
   *
   * If one item is '*' then it will be applied on any field type.
   *
   * @var array
   */
  public $fields;

  /**
   * Weight of this plugin.
   *
   * The plugins will be sorted by weight and will be tried to be applied in
   * that order.
   *
   * @var int
   */
  public $weight;

}

Members

Namesort descending Modifiers Type Description Overrides
ApigeeFieldStorageFormat::$fields public property List of field types where this plugin is appropriate.
ApigeeFieldStorageFormat::$id public property The ID of the formatter.
ApigeeFieldStorageFormat::$label public property The label of the formatter.
ApigeeFieldStorageFormat::$weight public property Weight of this plugin.
Plugin::$definition protected property The plugin definition read from the class annotation. 1
Plugin::get public function Gets the value of an annotation. Overrides AnnotationInterface::get 5
Plugin::getClass public function Gets the class of the annotated class. Overrides AnnotationInterface::getClass
Plugin::getId public function Gets the unique ID for this annotated class. Overrides AnnotationInterface::getId
Plugin::getProvider public function Gets the name of the provider of the annotated class. Overrides AnnotationInterface::getProvider
Plugin::parse protected function Parses an annotation into its definition.
Plugin::setClass public function Sets the class of the annotated class. Overrides AnnotationInterface::setClass
Plugin::setProvider public function Sets the name of the provider of the annotated class. Overrides AnnotationInterface::setProvider
Plugin::__construct public function Constructs a Plugin object. 2