You are here

hosting.feature.hosting.inc in Hosting 6.2

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

Expose the hosting feature to hostmaster.

File

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

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

/**
 * Implementation of hook_hosting_feature().
 */
function hosting_hosting_feature() {
  $features['hosting'] = array(
    'title' => t('Hosting system'),
    'description' => t('API to provide support for servers, platforms and sites.'),
    'status' => HOSTING_FEATURE_REQUIRED,
    'module' => 'hosting',
    'group' => 'required',
  );
  return $features;
}

Functions

Namesort descending Description
hosting_hosting_feature Implementation of hook_hosting_feature().