You are here

function hosting_task_gc_hosting_feature in Hosting 7.4

Same name and namespace in other branches
  1. 7.3 task_gc/hosting.feature.task_gc.inc \hosting_task_gc_hosting_feature()

Register a hosting feature with Aegir.

This will be used to generate the 'admin/hosting' page.

Return value

array associative array indexed by feature key.

File

task_gc/hosting.feature.task_gc.inc, line 17
The hosting feature definition for the task garbage collection.

Code

function hosting_task_gc_hosting_feature() {
  $features['task_gc'] = array(
    // Title to display in form.
    'title' => t('Task garbage collection'),
    'description' => t('Cleanup task records for deleted sites.'),
    // Initial status.
    'status' => HOSTING_FEATURE_DISABLED,
    // Module to enable/disable alongside feature.
    'module' => 'hosting_task_gc',
    // Which group to display in ( null , experimental ).
    'group' => 'experimental',
  );
  return $features;
}