function hosting_server_field_extra_fields in Hosting 7.4
Same name and namespace in other branches
- 7.3 server/hosting_server.module \hosting_server_field_extra_fields()
Implements hook_field_extra_fields().
File
- server/
hosting_server.module, line 748
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;
}