You are here

hosting_web_server.module in Hosting 7.3

Web server node type is defined here.

File

web_server/hosting_web_server.module
View source
<?php

/**
 * @file
 * Web server node type is defined here.
 */

/**
 * Implements hook_hosting_service().
 */
function hosting_web_server_hosting_service() {
  return array(
    'apache' => 'http',
  );
}

/**
 * @todo Please document this function.
 * @see http://drupal.org/node/1354
 */
function hosting_web_server_hosting_service_type() {
  return array(
    'http' => array(
      'title' => t('Web'),
    ),
  );
}

Functions

Namesort descending Description
hosting_web_server_hosting_service Implements hook_hosting_service().
hosting_web_server_hosting_service_type @todo Please document this function.