You are here

function farm_group_farm_ui_theme_region_items in farmOS 2.x

Implements hook_farm_ui_theme_region_items().

File

modules/asset/group/farm_group.module, line 48
Contains farm_group.module.

Code

function farm_group_farm_ui_theme_region_items(string $entity_type) {
  $region_items = [];
  if ($entity_type == 'asset') {
    $region_items = [
      'top' => [],
      'first' => [],
      'second' => [
        'group',
      ],
      'bottom' => [],
    ];
  }
  return $region_items;
}