You are here

hosting.feature.client.inc in Hosting 6.2

Expose the client feature to hostmaster.

File

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

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

/**
 * Implementation of hook_hosting_feature().
 */
function hosting_client_hosting_feature() {
  $features['client'] = array(
    'title' => t('Clients'),
    'description' => t('Track and manage ownership of hosted sites, and access to platforms.'),
    'status' => HOSTING_FEATURE_REQUIRED,
    'module' => 'hosting_client',
    'node' => 'client',
    'group' => 'required',
  );
  return $features;
}

Functions

Namesort descending Description
hosting_client_hosting_feature Implementation of hook_hosting_feature().