You are here

function farm_ui_farm_ui_entity_view_groups in farmOS 7

Implements hook_farm_ui_groups().

File

modules/farm/farm_ui/farm_ui.farm_ui.inc, line 9

Code

function farm_ui_farm_ui_entity_view_groups() {
  $groups = array(
    'assets' => array(
      'title' => t('Assets'),
      'weight' => 100,
    ),
    'logs' => array(
      'title' => t('Logs by type'),
      'weight' => 110,
    ),
    'logs_special' => array(
      'title' => t('Logs with special purpose'),
      'weight' => 111,
      'collapse' => TRUE,
    ),
    'other' => array(
      'weight' => 200,
    ),
  );
  return $groups;
}