You are here

function hosting_task_hosting_feature in Hosting 6.2

Same name and namespace in other branches
  1. 7.4 task/hosting.feature.task.inc \hosting_task_hosting_feature()
  2. 7.3 task/hosting.feature.task.inc \hosting_task_hosting_feature()

Implementation of hook_hosting_feature().

File

task/hosting.feature.task.inc, line 10
Expose the task feature to hostmaster.

Code

function hosting_task_hosting_feature() {
  $features['task'] = array(
    'title' => t('Tasks'),
    'description' => t('API to provide support for tasks.'),
    'status' => HOSTING_FEATURE_REQUIRED,
    'module' => 'hosting_task',
    'node' => 'task',
    'group' => 'required',
  );
  return $features;
}