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

Pokaż
Ignoruj:
Data i czas:
10/24/13 09:38:47 (11 years temu)
Autor:
TS (IP: 213.227.67.33)
Komentarz:

--

Legend:

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

    v1 v1  
     1= [wiki:DeployerGuide Przewodnik wdrożeniowca] > Dodaj pracownika do uprawnionych w sprawie = 
     2 
     3 
     4''' Definicja parametrów: ''' 
     5{{{ 
     6#!php 
     7<?php 
     8 
     9/** 
     10 *  Dodaje pracownika do uprawnionych w sprawie 
     11 *    
     12 *  @param prc_id Int    - id dokumentu (processes:prc_id) 
     13 *  @param usr_id Int    - id pracownika (users:usr_id) 
     14 *  @param rights String - poziom uprawnień (r - odczyt, w - zapis, m - zarządzanie, d - dokumenty, n - powiadomienia) 
     15 *    
     16 *  @return Int - 1 jeśli sukces , 0 w razie niepowodzenia 
     17 *    
     18 *  @throws Exception - SoapFault 
     19 */ 
     20Int grantUserAccessToProcess(Int prc_id, Int usr_id, String rights) 
     21 
     22?> 
     23}}} 
     24 
     25''' Przykłady wywołań: ''' 
     26{{{ 
     27#!php 
     28 
     29// Plik MyService.php umieszczony w apps/edokumenty. 
     30// MyService.php 
     31<?php 
     32 
     33define('EDOK_API_LOGIN', 'developer'); 
     34define('EDOK_API_PASSWORD', 'developer'); 
     35define('DEFAULT_ENTITY_SYMBOL', 'demo'); 
     36 
     37require_once('./classes/eDokumentyApi/EDokApiClient.inc'); 
     38 
     39$options = array( 
     40    'location' => 'http://{host}:{port}/eDokumentyApi.php', 
     41    "uri" => "eDokumentyAPI", 
     42    'encoding'=>'UTF-8' 
     43); 
     44         
     45$client = new EDokApiClient(NULL, $options); 
     46$client->setUser(EDOK_API_LOGIN); 
     47$client->setPass(md5(EDOK_API_PASSWORD)); 
     48$header = new SoapHeader('eDokumentyAPI', 'entity_symbol', DEFAULT_ENTITY_SYMBOL); 
     49$client->__setSoapHeaders($header); 
     50 
     51$doc_id = 987; 
     52$usr_id = 2; 
     53$rights = 'rwm'; 
     54$out = NULL; 
     55 
     56try { 
     57    $out = $client->grantUserAccessToProcess($prc_id, $usr_id, $rights); 
     58    var_dump($out); 
     59} catch(SoapFault $fault) { 
     60    var_dump($fault); 
     61 
     62    if ($fault->faultcode < 100) { 
     63        trigger_error("SOAP Fault: (faultcode: {$fault->faultcode}, faultstring: {$fault->faultstring})", E_USER_ERROR); 
     64    } 
     65} 
     66 
     67?> 
     68}}}