You are here

hosting_web_server.module in Hosting 6.2

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.
 */

/**
 * Implementation of hook_hosting_service()
 */
function hosting_web_server_hosting_service() {
  return array(
    'apache' => 'http',
  );
}
function hosting_web_server_hosting_service_type() {
  return array(
    'http' => array(
      'title' => t('Web'),
    ),
  );
}

Functions

Namesort descending Description
hosting_web_server_hosting_service Implementation of hook_hosting_service()
hosting_web_server_hosting_service_type