You are here

function prod_check_get_settings in Production check & Production monitor 6

Same name and namespace in other branches
  1. 7 prod_check.module \prod_check_get_settings()

XMLRPC version of _prod_check_functions() Returnes a keyed array of functions that can be parsed by the reciever into a form or status page.

1 string reference to 'prod_check_get_settings'
prod_check_xmlrpc in ./prod_check.module
Implementation of hook_xmlrpc http://api.drupal.org/api/drupal/developer--hooks--core.php/function/hoo...

File

./prod_check.module, line 263

Code

function prod_check_get_settings($ping_key) {
  $data = FALSE;
  if (_prod_check_valid_key($ping_key)) {
    $data = _prod_check_functions();
  }
  return $data;
}