You are here

function hosting_site_field_extra_fields in Hosting 7.3

Same name and namespace in other branches
  1. 7.4 site/hosting_site.nodeapi.inc \hosting_site_field_extra_fields()

Implements hook_field_extra_fields().

File

site/hosting_site.nodeapi.inc, line 124
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;
}