You are here

public function EckEntity::save in Entity Construction Kit (ECK) 7

Same name and namespace in other branches
  1. 7.3 eck.classes.inc \ECKEntity::save()

Permanently saves the entity.

Overrides Entity::save

See also

entity_save()

File

./eck.module, line 418
ENTITY CONSTRUCTION KIT

Class

EckEntity
Base class for ECK entites.

Code

public function save() {

  // Update changed timestamp
  $this->changed = REQUEST_TIME;
  return parent::save();
}