You are here

function hosting_server_field_extra_fields in Hosting 7.3

Same name and namespace in other branches
  1. 7.4 server/hosting_server.module \hosting_server_field_extra_fields()

Implements hook_field_extra_fields().

File

server/hosting_server.module, line 752

Code

function hosting_server_field_extra_fields() {
  $return['node']['server'] = array(
    'display' => array(
      'info' => array(
        'label' => t('Aegir Server Information'),
        'description' => t('Detailed information about this server.'),
        'weight' => 0,
      ),
      'tasks_view' => array(
        'label' => t('Aegir Server Tasks'),
        'description' => t('List of available tasks.'),
        'weight' => 1,
      ),
    ),
  );
  return $return;
}