You are here

function server_data_provision_services in Hosting 7.3

Same name and namespace in other branches
  1. 7.4 example/server_data/drush/server_data.drush.inc \server_data_provision_services()

Implements hook_provision_services().

Expose the service type this extension defines to provision.

Return value

An array with the service type the key, and the default implementation the value.

File

example/server_data/drush/server_data.drush.inc, line 29

Code

function server_data_provision_services() {
  server_data_provision_register_autoload();
  return array(
    'server_data' => NULL,
  );
}