You are here

function site_data_provision_services in Hosting 7.4

Same name and namespace in other branches
  1. 7.3 example/site_data/drush/site_data.drush.inc \site_data_provision_services()

Implements hook_provision_services().

Expose the service type this extension defines to provision.

Return value

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

File

example/site_data/drush/site_data.drush.inc, line 35
Example code for the fictional site_data module.

Code

function site_data_provision_services() {
  site_data_provision_register_autoload();
  return array(
    'site_data' => NULL,
  );
}