-
Notifications
You must be signed in to change notification settings - Fork 2
/
atualizarUsuario.php
69 lines (54 loc) · 1.95 KB
/
atualizarUsuario.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Teste de WebService Moodle</title>
</head>
<body>
<?php
require 'Zend/Soap/Client.php';
$host = "http://192.168.0.38/";
$install = "moodlerooms/";
$service = "webservice/soap/server.php";
$url = "$host$install$service";
$token = "99b30439d03a76ec2383601c3174cb5d";
$soapAction = "sistemaaula_user_update_users";
$user1 = new stdClass();
$user1->id = 2; // Int
$user1->password = 'Senha_1235r'; //
/*
$user1->username = 'admin'; // String
$user1->firstname = 'Primeiro2'; //
$user1->lastname = 'Ultimo'; //
$user1->email = '[email protected]'; // String
$user1->auth = 'manual'; // String, metodo de autenticação,
// usar sempre "manual",
// podemos criar um metodo de
// autenticação padrão para o SistemaAula.
$user1->lang = 'pt_br'; // String, Observe que está fora do padrão
$user1->theme = 'standard'; // String, padrão para "starndard"
$user1->timezone = '-3'; // String, usar sempre -3, ou "America/Brazil"
$user1->mailformat = 1; // Int, usar 0 para formato plano, ou 1 para formato HTML
$user1->description = 'Sou o cara migrado do Sistema Aula para aqui e não onde estou.';
// Descrição do usuário.
//$user1->city = 'Belo Horizonte';
$user1->country = 'br';
$preferencename1 = array('type' => 'turma', 'value' => 'T-451');
$preferencename2 = array('type' => 'unidade', 'value' => 'U-4');
$user1->preferences = array(
$preferencename1,
$preferencename2
);
*/
$params = array($user1);
$serverurl = "$url?wstoken=$token&wsdl=1";
$client = new SoapClient($serverurl);
try {
$resp = $client->__soapCall($soapAction, array($params));
} catch (Exception $e) {
print_r($e);
}
print_r($resp);
?>
</body>
</html>