hosting.feature.task.inc in Hosting 6.2
Same filename and directory in other branches
Expose the task feature to hostmaster.
File
task/hosting.feature.task.incView 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
Name | Description |
---|---|
hosting_task_hosting_feature | Implementation of hook_hosting_feature(). |