hosting_web_server.module in Hosting 7.4
Same filename and directory in other branches
Web server node type is defined here.
File
web_server/hosting_web_server.moduleView 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
Name | Description |
---|---|
hosting_web_server_hosting_service | Implements hook_hosting_service(). |
hosting_web_server_hosting_service_type | @todo Please document this function. |