You are here

function account_sync_xmlrpc in Account Sync 6

Same name and namespace in other branches
  1. 7.2 account_sync.module \account_sync_xmlrpc()

Implementation of hook_xmlrpc().

File

./account_sync.module, line 61

Code

function account_sync_xmlrpc() {
  module_load_include('inc', 'account_sync', 'account_sync.receiver');
  return array(
    array(
      'account_sync.updateUser',
      'account_sync_update_user',
      array(
        'struct',
        'string',
        'string',
        'struct',
        'struct',
        'string',
        'struct',
      ),
      t('Update the given user account'),
    ),
  );
}