interface EntityBlockControllerInterface in Entity Blocks 7
Interface for Entity Block.
Hierarchy
- interface \DrupalEntityControllerInterface
- interface \EntityBlockControllerInterface
Expanded class hierarchy of EntityBlockControllerInterface
All classes that implement EntityBlockControllerInterface
File
- ./
entity_block.controller.inc, line 11 - The controller for the EntityBlock entity.
View source
interface EntityBlockControllerInterface extends DrupalEntityControllerInterface {
/**
* Creates an entity.
*/
public function create();
/**
* Saves an entity.
*
* @param object $entity
* The entity to save.
*/
public function save($entity);
/**
* Deletes an entity.
*
* @param object $entity
* The entity to delete.
*/
public function delete($entity);
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DrupalEntityControllerInterface:: |
public | function | Loads one or more entities. | 1 |
DrupalEntityControllerInterface:: |
public | function | Resets the internal, static entity cache. | 1 |
EntityBlockControllerInterface:: |
public | function | Creates an entity. | 1 |
EntityBlockControllerInterface:: |
public | function | Deletes an entity. | 1 |
EntityBlockControllerInterface:: |
public | function | Saves an entity. | 1 |