You are here

function bricks_default_eck_bundle_info in Bricks​ 7.5

Implements hook_eck_bundle_info().

File

bricks_default/bricks_default.features.inc, line 17
bricks_default.features.inc

Code

function bricks_default_eck_bundle_info() {
  $items = array(
    'brick_columns' => array(
      'machine_name' => 'brick_columns',
      'entity_type' => 'brick',
      'name' => 'columns',
      'label' => 'Columns',
    ),
    'brick_grid' => array(
      'machine_name' => 'brick_grid',
      'entity_type' => 'brick',
      'name' => 'grid',
      'label' => 'Grid',
    ),
    'brick_image' => array(
      'machine_name' => 'brick_image',
      'entity_type' => 'brick',
      'name' => 'image',
      'label' => 'Image',
    ),
    'brick_section' => array(
      'machine_name' => 'brick_section',
      'entity_type' => 'brick',
      'name' => 'section',
      'label' => 'Section',
    ),
    'brick_text' => array(
      'machine_name' => 'brick_text',
      'entity_type' => 'brick',
      'name' => 'text',
      'label' => 'Text',
    ),
  );
  return $items;
}