function eck_default_properties in Entity Construction Kit (ECK) 7
Returns all default properties for ECK controlled entities.
2 calls to eck_default_properties()
- eck__entity_type__form in ./
eck.entity_type.inc  - Callback for adding entity types functionality.
 - eck__entity_type__schema in ./
eck.entity_type.inc  - Create the default schema for an entity type.
 
File
- ./
eck.properties.inc, line 6  
Code
function eck_default_properties() {
  return array(
    'uuid' => t('UUID'),
    'uid' => t('Author'),
    'created' => t('Created'),
    'changed' => t('Changed'),
    'state' => t('State'),
  );
}