public function EckEntity::save in Entity Construction Kit (ECK) 7
Same name and namespace in other branches
- 7.3 eck.classes.inc \ECKEntity::save()
Permanently saves the entity.
Overrides Entity::save
See also
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();
}