You are here

function bricks_default_eck_entity_type_info in Bricks​ 7.5

Implements hook_eck_entity_type_info().

File

bricks_default/bricks_default.features.inc, line 56
bricks_default.features.inc

Code

function bricks_default_eck_entity_type_info() {
  $items = array(
    'brick' => array(
      'name' => 'brick',
      'label' => 'Brick',
      'properties' => array(),
    ),
  );
  return $items;
}