You are here

interface EntityBlockControllerInterface in Entity Blocks 7

Interface for Entity Block.

Hierarchy

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

Namesort descending Modifiers Type Description Overrides
DrupalEntityControllerInterface::load public function Loads one or more entities. 1
DrupalEntityControllerInterface::resetCache public function Resets the internal, static entity cache. 1
EntityBlockControllerInterface::create public function Creates an entity. 1
EntityBlockControllerInterface::delete public function Deletes an entity. 1
EntityBlockControllerInterface::save public function Saves an entity. 1