You are here

function hook_eck_property_types in Entity Construction Kit (ECK) 7.3

Same name and namespace in other branches
  1. 7.2 eck.api.php \hook_eck_property_types()

Property types.

1 function implements hook_eck_property_types()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

eck_eck_property_types in ./eck.module
Implements hook_eck_property_types().
3 invocations of hook_eck_property_types()
eck_get_property_types in ./eck.property_type.inc
Get property types.
eck_modules_disabled in ./eck.module
Implements hook_modules_disabled().
eck_modules_enabled in ./eck.module
Implements hook_modules_enabled().

File

./eck.api.php, line 159
ECK's API documentation.

Code

function hook_eck_property_types() {
  $property_types['property_type_machine_name'] = array(
    'class' => "PropertyTypeClass",
  );
  return $property_types;
}