|
|
|
@ -540,6 +540,7 @@ $server->wsdl->addComplexType( |
|
|
|
|
'language' => array('name' => 'language', 'type' => 'xsd:string'), |
|
|
|
|
'phone' => array('name' => 'phone', 'type' => 'xsd:string'), |
|
|
|
|
'expiration_date' => array('name' => 'expiration_date', 'type' => 'xsd:string'), |
|
|
|
|
'official_code' => array('name' => 'official_code', 'type' => 'xsd:string'), |
|
|
|
|
'original_user_id_name' => array('name' => 'original_user_id_name', 'type' => 'xsd:string'), |
|
|
|
|
'original_user_id_value'=> array('name' => 'original_user_id_value', 'type' => 'xsd:string'), |
|
|
|
|
'extra' => array('name' => 'extra', 'type' => 'tns:extrasList') |
|
|
|
@ -635,7 +636,8 @@ function WSCreateUsersPasswordCrypted($params) { |
|
|
|
|
$email = $user_param['email']; |
|
|
|
|
$loginName = $user_param['loginname']; |
|
|
|
|
|
|
|
|
|
$official_code = ''; |
|
|
|
|
$official_code = $user_param['official_code']; |
|
|
|
|
|
|
|
|
|
$language = ''; |
|
|
|
|
$phone = ''; |
|
|
|
|
$picture_uri = ''; |
|
|
|
@ -833,6 +835,7 @@ $server->wsdl->addComplexType( |
|
|
|
|
'language' => array('name' => 'language', 'type' => 'xsd:string'), |
|
|
|
|
'phone' => array('name' => 'phone', 'type' => 'xsd:string'), |
|
|
|
|
'expiration_date' => array('name' => 'expiration_date', 'type' => 'xsd:string'), |
|
|
|
|
'official_code' => array('name' => 'official_code', 'type' => 'xsd:string'), |
|
|
|
|
'original_user_id_name' => array('name' => 'original_user_id_name', 'type' => 'xsd:string'), |
|
|
|
|
'original_user_id_value' => array('name' => 'original_user_id_value', 'type' => 'xsd:string'), |
|
|
|
|
'extra' => array('name' => 'extra', 'type' => 'tns:extrasList'), |
|
|
|
@ -856,6 +859,7 @@ function WSCreateUserPasswordCrypted($params) { |
|
|
|
|
global $_user, $_configuration, $debug; |
|
|
|
|
if ($debug) error_log('WSCreateUserPasswordCrypted'); |
|
|
|
|
if ($debug) error_log(print_r($params,1)); |
|
|
|
|
|
|
|
|
|
if (!WSHelperVerifyKey($params)) { |
|
|
|
|
return return_error(WS_ERROR_SECRET_KEY); |
|
|
|
|
} |
|
|
|
@ -873,7 +877,7 @@ function WSCreateUserPasswordCrypted($params) { |
|
|
|
|
$status = $params['status']; |
|
|
|
|
$email = $params['email']; |
|
|
|
|
$loginName = $params['loginname']; |
|
|
|
|
$official_code = ''; |
|
|
|
|
$official_code = $params['official_code']; |
|
|
|
|
$language = ''; |
|
|
|
|
$phone = ''; |
|
|
|
|
$picture_uri = ''; |
|
|
|
@ -911,7 +915,7 @@ function WSCreateUserPasswordCrypted($params) { |
|
|
|
|
if ($debug) error_log('Ready to create user'); |
|
|
|
|
|
|
|
|
|
if ($user_id > 0) { |
|
|
|
|
if ($debug) error_log('User found'); |
|
|
|
|
if ($debug) error_log('User found with id: '.$user_id); |
|
|
|
|
|
|
|
|
|
// Check whether user is not active |
|
|
|
|
//@todo why this condition exists?? |
|
|
|
@ -1000,7 +1004,6 @@ function WSCreateUserPasswordCrypted($params) { |
|
|
|
|
$result = Database::query($sql); |
|
|
|
|
|
|
|
|
|
if ($result) { |
|
|
|
|
//echo "id returned"; |
|
|
|
|
$return = Database::insert_id(); |
|
|
|
|
|
|
|
|
|
//Multiple URL |
|
|
|
|