Zmiany pomiędzy wersją początkową i wersją 1 dla DeployerGuide/Others/eDokumentyApi/deactivateUserAccount

Pokaż
Ignoruj:
Data i czas:
08/12/14 13:28:55 (10 years temu)
Autor:
WN (IP: 213.227.67.33)
Komentarz:

--

Legend:

Bez zmian
Dodane
Usunięte
Zmienione
  • DeployerGuide/Others/eDokumentyApi/deactivateUserAccount

    v1 v1  
     1= Deaktywacja konta użytkownika = 
     2 
     3 
     4''' Definicja parametrów: ''' 
     5{{{ 
     6#!php 
     7<?php 
     8 
     9    /** 
     10     * Zwraca dane urządzenia. 
     11     * Wymagany jest tylko jeden z parametrów 
     12        (np. jeżeli podamy 'name__' to system będzie szukał po nazwie urządzenia). 
     13     * 
     14     * @param integer usr_id - Identyfikator użytkownika 
     15     * 
     16     * @access public 
     17     * @return boolean - true, jeżeli operacja zakończyła się sukcesem 
     18     */ 
     19array deactivateUserAccount(integer usr_id) 
     20 
     21?> 
     22}}} 
     23 
     24''' Przykłady wywołań: ''' 
     25{{{ 
     26#!php 
     27 
     28// Plik MyService.php umieszczony w apps/edokumenty. 
     29// MyService.php 
     30<?php 
     31 
     32define('EDOK_API_LOGIN', 'developer'); 
     33define('EDOK_API_PASSWORD', 'developer'); 
     34define('DEFAULT_ENTITY_SYMBOL', 'demo'); 
     35 
     36require_once('./classes/eDokumentyApi/EDokApiClient.inc'); 
     37 
     38$options = array( 
     39    'location' => 'http://{host}:{port}/eDokumentyApi.php', 
     40    "uri" => "eDokumentyAPI", 
     41    'encoding'=>'UTF-8' 
     42); 
     43         
     44$client = new EDokApiClient(NULL, $options); 
     45$client->setUser(EDOK_API_LOGIN); 
     46$client->setPass(md5(EDOK_API_PASSWORD)); 
     47$header = new SoapHeader('eDokumentyAPI', 'entity_symbol', DEFAULT_ENTITY_SYMBOL); 
     48$client->__setSoapHeaders($header); 
     49 
     50$depoid = NULL; 
     51 
     52try { 
     53    $usr_id = 13; 
     54    $result = $client->deactivateUserAccount($usr_id); 
     55    var_dump($result); 
     56} catch(SoapFault $fault) { 
     57    var_dump($fault); 
     58     
     59    if ($fault->faultcode < 100) { 
     60        trigger_error("SOAP Fault: (faultcode: {$fault->faultcode}, faultstring: {$fault->faultstring})", E_USER_ERROR); 
     61    } 
     62} 
     63 
     64?> 
     65}}} 
     66Powyższy kod udostępniony jest na licencji LGPL [http://www.gnu.org/licenses/lgpl-3.0.txt]