You are here

hosting.feature.task.inc in Hosting 6.2

Same filename and directory in other branches
  1. 7.4 task/hosting.feature.task.inc
  2. 7.3 task/hosting.feature.task.inc

Expose the task feature to hostmaster.

File

task/hosting.feature.task.inc
View source
<?php

/**
 * @file
 *   Expose the task feature to hostmaster.
 */

/**
 * Implementation of hook_hosting_feature().
 */
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;
}

Functions

Namesort descending Description
hosting_task_hosting_feature Implementation of hook_hosting_feature().