This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
Incam_SGD/webservice/classes/soap/config.php

28 lines
974 B
PHP

<?php
/* All the allowed webservice classes */
$WSClasses = array(
"contactManager",
"CMISService"
);
/* The classmap associative array. When you want to allow objects as a parameter for
* your webservice method. ie. saveObject($object). By default $object will now be
* a stdClass, but when you add a classname defined in the type description in the @param
* documentation tag and add your class to the classmap below, the object will be of the
* given type. Requires PHP 5.0.3+
*/
$WSStructures = array(
"contact" => "contact",
"address" => "address",
"cmisRepositoryEntryType" => "cmisRepositoryEntryType",
"cmisRepositoryInfoType" => "cmisRepositoryInfoType",
"cmisRepositoryCapabilitiesType" => "cmisRepositoryCapabilitiesType",
"cmisTypeDefinitionType" => "cmisTypeDefinitionType",
"cmisPropertyDefinitionType" => "cmisPropertyDefinitionType",
"cmisObjectType" => "cmisObjectType",
"cmisPropertiesType" => "cmisPropertiesType",
);
?>