Squiz Matrix
4.12.2
|
Public Member Functions | |
CMIS_Common () | |
connect ($wsdl, $conn_info) | |
getRepositories () | |
getRepositoryInfo ($repositoryId) | |
getTypeDefinition ($repositoryId, $typeId) | |
getChildren ($repositoryId, $folderId) | |
getContentStream ($repositoryId, $objectId) | |
processSoapRequest () | |
Data Fields | |
$security_header = NULL | |
$ptr = NULL | |
Definition at line 30 of file cmis_common.inc.
CMIS_Common | ( | ) |
Constructor
Definition at line 52 of file cmis_common.inc.
connect | ( | $wsdl, | |
$conn_info | |||
) |
Connect to a CMIS SOAP server
string | $wsdl | the WSDL URL we need to use |
array | $conn_info | information used to create the SOAP connection, Array ( 'username' => the username used to connect to the CMIS server, 'password' => the password used to connect to the CMIS server, 'ws_security' => [0|1] whether to send WS-Security Headers, 'verify' => [0|1] whether to test the connection, 'service_name' => see CMIS_Bridge::getServices(), ) |
Definition at line 76 of file cmis_common.inc.
getChildren | ( | $repositoryId, | |
$folderId | |||
) |
Get Children using CMIS Navigation Service
string | $repositoryId | |
string | $folderId |
Definition at line 254 of file cmis_common.inc.
getContentStream | ( | $repositoryId, | |
$objectId | |||
) |
Get Content Stream using CMIS Object Service
string | $repositoryId | |
string | $objectId |
Definition at line 286 of file cmis_common.inc.
getRepositories | ( | ) |
Get Repositories using CMIS Repository Service
Definition at line 158 of file cmis_common.inc.
getRepositoryInfo | ( | $repositoryId | ) |
Get Repository Info using CMIS Repository Service
string | $repositoryId |
Definition at line 190 of file cmis_common.inc.
getTypeDefinition | ( | $repositoryId, | |
$typeId | |||
) |
Get Type Definition using CMIS Repository Service
string | $repositoryId | |
string | $typeId |
Definition at line 222 of file cmis_common.inc.
processSoapRequest | ( | ) |
Transform the last SOAP XML response into an object and binary string. This is because the response is multi-part and PHP Soap Client can't handle it. Will use Mail_mimeDecode Pear library to decode this response.
Definition at line 320 of file cmis_common.inc.