function hosting_site_field_extra_fields in Hosting 7.4
Same name and namespace in other branches
- 7.3 site/hosting_site.nodeapi.inc \hosting_site_field_extra_fields()
Implements hook_field_extra_fields().
File
- site/
hosting_site.nodeapi.inc, line 137 - Site nodeapi implementations.
Code
function hosting_site_field_extra_fields() {
$return['node']['site'] = array(
'display' => array(
'info' => array(
'label' => t('Aegir Site Information'),
'description' => t('Detailed information about this site.'),
'weight' => 0,
),
'tasks_view' => array(
'label' => t('Aegir Site Tasks'),
'description' => t('List of available tasks.'),
'weight' => 1,
),
),
);
return $return;
}