You are here

function computing_site_info in Drupal Computing 7.2

Expose site info through Services.module.

1 string reference to 'computing_site_info'
computing_services_resources in ./computing.services.inc
Implements hook_services_resources().

File

./computing.module, line 504

Code

function computing_site_info() {
  return array(
    'drupal_version' => VERSION,
    'drupal_time' => time(),
  );
}