You are here

function casetracker_xmlrpc_xmlrpc in Case Tracker 5

Implementation of hook_xmlrpc().

File

./casetracker_xmlrpc.module, line 23
Enables Case Tracker cases to be created via XML-RPC.

Code

function casetracker_xmlrpc_xmlrpc() {
  return array(
    array(
      'casetracker.newCase',
      'casetracker_xmlrpc_new_case',
      array(
        'string',
        'string',
        'string',
        'struct',
      ),
      t('Open a new case assigned to a particular project.'),
    ),
  );
}