interface DeveloperAppStorageInterface in Apigee Edge 8
Defines an interface for developer app entity storage classes.
Hierarchy
- interface \Drupal\apigee_edge\Entity\Storage\EdgeEntityStorageInterface; interface \Drupal\Core\Entity\FieldableEntityStorageInterface; interface \Drupal\Core\Entity\DynamicallyFieldableEntityStorageInterface; interface \Drupal\Core\Entity\Schema\DynamicallyFieldableEntityStorageSchemaInterface
- interface \Drupal\apigee_edge\Entity\Storage\FieldableEdgeEntityStorageInterface
- interface \Drupal\apigee_edge\Entity\Storage\AttributesAwareFieldableEdgeEntityStorageInterface
- interface \Drupal\apigee_edge\Entity\Storage\DeveloperAppStorageInterface
- interface \Drupal\apigee_edge\Entity\Storage\AttributesAwareFieldableEdgeEntityStorageInterface
- interface \Drupal\apigee_edge\Entity\Storage\FieldableEdgeEntityStorageInterface
Expanded class hierarchy of DeveloperAppStorageInterface
All classes that implement DeveloperAppStorageInterface
File
- src/
Entity/ Storage/ DeveloperAppStorageInterface.php, line 25
Namespace
Drupal\apigee_edge\Entity\StorageView source
interface DeveloperAppStorageInterface extends AttributesAwareFieldableEdgeEntityStorageInterface {
/**
* Loads developer apps by developer.
*
* @param string $developer_id
* Developer id (UUID) or email address of a developer.
*
* @return \Drupal\apigee_edge\Entity\DeveloperApp[]
* The array of the developer apps of the given developer.
*/
public function loadByDeveloper(string $developer_id) : array;
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DeveloperAppStorageInterface:: |
public | function | Loads developer apps by developer. | 1 |
DynamicallyFieldableEntityStorageSchemaInterface:: |
public | function | Checks if existing data would be lost if the schema changes were applied. | 2 |
DynamicallyFieldableEntityStorageSchemaInterface:: |
public | function | Checks if the changes to the storage definition requires schema changes. | 2 |
EntityStorageInterface:: |
public | function | Constructs a new entity object, without permanently saving it. | 1 |
EntityStorageInterface:: |
public | function | Deletes permanently saved entities. | 1 |
EntityStorageInterface:: |
public | function | Delete a specific entity revision. | 4 |
EntityStorageInterface:: |
constant | Load the most recent version of an entity's field data. | ||
EntityStorageInterface:: |
constant | Load the version of an entity's field data specified in the entity. | ||
EntityStorageInterface:: |
public | function | Gets an aggregated query instance. | 1 |
EntityStorageInterface:: |
public | function | Gets the entity type definition. | 1 |
EntityStorageInterface:: |
public | function | Gets the entity type ID. | 1 |
EntityStorageInterface:: |
public | function | Gets an entity query instance. | 1 |
EntityStorageInterface:: |
public | function | Determines if the storage contains any data. | 1 |
EntityStorageInterface:: |
public | function | Loads one entity. | 1 |
EntityStorageInterface:: |
public | function | Load entities by their property values. | 1 |
EntityStorageInterface:: |
public | function | Loads one or more entities. | 1 |
EntityStorageInterface:: |
public | function | Load a specific entity revision. | 4 |
EntityStorageInterface:: |
public | function | Loads an unchanged entity from the database. | 1 |
EntityStorageInterface:: |
public | function | Resets the internal, static entity cache. | 1 |
EntityStorageInterface:: |
public | function | Restores a previously saved entity. | 1 |
EntityStorageInterface:: |
public | function | Saves the entity permanently. | 1 |
EntityStorageSchemaInterface:: |
public | function | Checks if existing data would be lost if the schema changes were applied. | 2 |
EntityStorageSchemaInterface:: |
public | function | Checks if the changes to the entity type requires storage schema changes. | 2 |
EntityTypeListenerInterface:: |
public | function | Reacts to the creation of the entity type. | 4 |
EntityTypeListenerInterface:: |
public | function | Reacts to the deletion of the entity type. | 4 |
EntityTypeListenerInterface:: |
public | function | Reacts to the update of the entity type. | 4 |
EntityTypeListenerInterface:: |
public | function | Reacts to the creation of the fieldable entity type. | 4 |
EntityTypeListenerInterface:: |
public | function | Reacts to the update of a fieldable entity type. | 4 |
FieldableEntityStorageInterface:: |
public | function | Determines the number of entities with values for a given field. | 2 |
FieldableEntityStorageInterface:: |
public | function | Performs final cleanup after all data of a field has been purged. | 1 |
FieldableEntityStorageInterface:: |
public | function | Purges a batch of field data. | 1 |
FieldDefinitionListenerInterface:: |
public | function | Reacts to the creation of a field. | 3 |
FieldDefinitionListenerInterface:: |
public | function | Reacts to the deletion of a field. | 3 |
FieldDefinitionListenerInterface:: |
public | function | Reacts to the update of a field. | 3 |
FieldStorageDefinitionListenerInterface:: |
public | function | Reacts to the creation of a field storage definition. | 4 |
FieldStorageDefinitionListenerInterface:: |
public | function | Reacts to the deletion of a field storage definition. | 4 |
FieldStorageDefinitionListenerInterface:: |
public | function | Reacts to the update of a field storage definition. | 4 |