You are here

public function EntityBlockController::delete in Entity Blocks 7

Deletes an entity_block.

Overrides EntityBlockControllerInterface::delete

File

./entity_block.controller.inc, line 90
The controller for the EntityBlock entity.

Class

EntityBlockController
The controller class for Entity Block.

Code

public function delete($entity) {
  $this
    ->deleteMultiple(array(
    $entity,
  ));
}