You are here

public function Entity::export in Entity API 7

Exports the entity.

Overrides EntityInterface::export

See also

entity_export()

File

includes/entity.inc, line 350
Provides a base class for entities.

Class

Entity
A common class for entities.

Code

public function export($prefix = '') {
  return entity_get_controller($this->entityType)
    ->export($this, $prefix);
}