You are here

public function ECKEntity::save in Entity Construction Kit (ECK) 7.3

Same name and namespace in other branches
  1. 7 eck.module \EckEntity::save()

Save.

Overrides Entity::save

File

./eck.classes.inc, line 878
Classes for all the different objects used in ECK.

Class

ECKEntity

Code

public function save() {

  // Going back to public properties.
  $this->ignoreValidation = TRUE;
  foreach ($this->PropertyValues as $property => $value) {
    $this->{$property} = $value;
  }
  return parent::save();
}