You are here

public function EntityType::__construct in Entity Construction Kit (ECK) 7.3

Same name and namespace in other branches
  1. 7.2 eck.classes.inc \EntityType::__construct()

Constructor.

Overrides DBObject::__construct

File

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

Class

EntityType

Code

public function __construct() {
  parent::__construct('eck_entity_type');
  $this->properties = array();
  $this->changes = array();
}