function account_sync_xmlrpc in Account Sync 7.2
Same name and namespace in other branches
- 6 account_sync.module \account_sync_xmlrpc()
Implements hook_xmlrpc().
File
- ./
account_sync.module, line 75 - Contains the base module code and hooks for the account sync module.
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'),
),
);
}