View source
<?php
class CMISRepositoryWrapper {
var $url;
var $username;
var $password;
var $authenticated;
var $workspace;
var $last_request;
static $namespaces = array(
"cmis" => "http://docs.oasis-open.org/ns/cmis/core/200908/",
"cmisra" => "http://docs.oasis-open.org/ns/cmis/restatom/200908/",
"atom" => "http://www.w3.org/2005/Atom",
"app" => "http://www.w3.org/2007/app",
);
function __construct($url, $username = null, $password = null, $options = null) {
$this
->connect($url, $username, $password, $options);
}
static function getOpUrl($url, $options = null) {
if (is_array($options) && count($options) > 0) {
$needs_question = strstr($url, "?") === false;
return $url . ($needs_question ? "?" : "&") . http_build_query($options);
}
else {
return $url;
}
}
function connect($url, $username, $password, $options) {
$this->url = $url;
$this->username = $username;
$this->password = $password;
$this->auth_options = $options;
$this->authenticated = false;
$retval = $this
->doGet($this->url);
if ($retval->code == 200 || $retval->code == 201) {
$this->authenticated = true;
$this->workspace = CMISRepositoryWrapper::extractWorkspace($retval->body);
}
}
function doGet($url) {
return $this
->doRequest($url);
}
function doDelete($url) {
return $this
->doRequest($url, "DELETE");
}
function doPost($url, $content, $contentType, $charset = null) {
return $this
->doRequest($url, "POST", $content, $contentType);
}
function doPut($url, $content, $contentType, $charset = null) {
return $this
->doRequest($url, "PUT", $content, $contentType);
}
function doRequest($url, $method = "GET", $content = null, $contentType = null, $charset = null) {
if (is_array($this->auth_options)) {
$url = CMISRepositoryWrapper::getOpUrl($url, $this->auth_options);
}
$session = curl_init($url);
curl_setopt($session, CURLOPT_HEADER, false);
curl_setopt($session, CURLOPT_RETURNTRANSFER, true);
if ($this->username) {
curl_setopt($session, CURLOPT_USERPWD, $this->username . ":" . $this->password);
}
curl_setopt($session, CURLOPT_CUSTOMREQUEST, $method);
if ($contentType) {
$headers = array();
$headers["Content-Type"] = $contentType;
curl_setopt($session, CURLOPT_HTTPHEADER, $headers);
}
if ($content) {
curl_setopt($session, CURLOPT_POSTFIELDS, $content);
}
if ($method == "POST") {
curl_setopt($session, CURLOPT_HTTPHEADER, array(
"Content-Type: " . $contentType,
));
curl_setopt($session, CURLOPT_POST, true);
}
$retval = new stdClass();
$retval->url = $url;
$retval->method = $method;
$retval->content_sent = $content;
$retval->content_type_sent = $contentType;
$retval->body = curl_exec($session);
$retval->code = curl_getinfo($session, CURLINFO_HTTP_CODE);
$retval->content_type = curl_getinfo($session, CURLINFO_CONTENT_TYPE);
$retval->content_length = curl_getinfo($session, CURLINFO_CONTENT_LENGTH_DOWNLOAD);
curl_close($session);
$this->last_request = $retval;
return $retval;
}
function getLastRequest() {
return $this->last_request;
}
function getLastRequestBody() {
return $this->last_request->body;
}
function getLastRequestCode() {
return $this->last_request->code;
}
function getLastRequestContentType() {
return $this->last_request->content_type;
}
function getLastRequestContentLength() {
return $this->last_request->content_length;
}
function getLastRequestURL() {
return $this->last_request->url;
}
function getLastRequestMethod() {
return $this->last_request->method;
}
function getLastRequestContentTypeSent() {
return $this->last_request->content_type_sent;
}
function getLastRequestContentSent() {
return $this->last_request->content_sent;
}
static function processTemplate($template, $values = array()) {
$retval = $template;
if (is_array($values)) {
foreach ($values as $name => $value) {
$retval = str_replace("{" . $name . "}", $value, $retval);
}
}
return preg_replace("/{[a-zA-Z0-9_]+}/", "", $retval);
}
static function doXQuery($xmldata, $xquery) {
$doc = new DOMDocument();
$doc
->loadXML($xmldata);
return CMISRepositoryWrapper::doXQueryFromNode($doc, $xquery);
}
static function doXQueryFromNode($xmlnode, $xquery) {
$xpath = new DomXPath($xmlnode);
foreach (CMISRepositoryWrapper::$namespaces as $nspre => $nsuri) {
$xpath
->registerNamespace($nspre, $nsuri);
}
return $xpath
->query($xquery);
}
static function getLinksArray($xmlnode) {
$links = array();
$link_nodes = $xmlnode
->getElementsByTagName("link");
foreach ($link_nodes as $ln) {
if ($ln->attributes
->getNamedItem("rel")->nodeValue == "down" && $ln->attributes
->getNamedItem("type")->nodeValue == "application/cmistree+xml") {
$links["down-tree"] = $ln->attributes
->getNamedItem("href")->nodeValue;
}
else {
$links[$ln->attributes
->getNamedItem("rel")->nodeValue] = $ln->attributes
->getNamedItem("href")->nodeValue;
}
}
return $links;
}
static function extractObject($xmldata) {
$doc = new DOMDocument();
$doc
->loadXML($xmldata);
return CMISRepositoryWrapper::extractObjectFromNode($doc);
}
static function extractObjectFromNode($xmlnode) {
$retval = new stdClass();
$retval->links = CMISRepositoryWrapper::getLinksArray($xmlnode);
$retval->properties = array();
$prop_nodes = $xmlnode
->getElementsByTagName("object")
->item(0)
->getElementsByTagName("properties")
->item(0)->childNodes;
foreach ($prop_nodes as $pn) {
if ($pn->attributes) {
$retval->properties[$pn->attributes
->getNamedItem("propertyDefinitionId")->nodeValue] = $pn
->getElementsByTagName("value")
->item(0)->nodeValue;
}
}
$retval->uuid = $xmlnode
->getElementsByTagName("id")
->item(0)->nodeValue;
$retval->id = $retval->properties["cmis:objectId"];
return $retval;
}
static function extractTypeDef($xmldata) {
$doc = new DOMDocument();
$doc
->loadXML($xmldata);
return CMISRepositoryWrapper::extractTypeDefFromNode($doc);
}
static function extractTypeDefFromNode($xmlnode) {
$retval = new stdClass();
$retval->links = CMISRepositoryWrapper::getLinksArray($xmlnode);
$retval->properties = array();
$retval->attributes = array();
$result = CMISRepositoryWrapper::doXQueryFromNode($xmlnode, "//cmisra:type/*");
foreach ($result as $node) {
if (substr($node->nodeName, 0, 13) == "cmis:property" && substr($node->nodeName, -10) == "Definition") {
$id = $node
->getElementsByTagName("id")
->item(0)->nodeValue;
$cardinality = $node
->getElementsByTagName("cardinality")
->item(0)->nodeValue;
$propertyType = $node
->getElementsByTagName("propertyType")
->item(0)->nodeValue;
$retval->properties[$id] = array(
"cmis:propertyType" => $propertyType,
"cmis:cardinality" => $cardinality,
);
}
else {
$retval->attributes[$node->nodeName] = $node->nodeValue;
}
$retval->id = $retval->attributes["cmis:id"];
}
return $retval;
}
static function extractObjectFeed($xmldata) {
$doc = new DOMDocument();
$doc
->loadXML($xmldata);
return CMISRepositoryWrapper::extractObjectFeedFromNode($doc);
}
static function extractObjectFeedFromNode($xmlnode) {
$retval = new stdClass();
$retval->objectList = array();
$retval->objectsById = array();
$result = CMISRepositoryWrapper::doXQueryFromNode($xmlnode, "//atom:entry");
foreach ($result as $node) {
$obj = CMISRepositoryWrapper::extractObjectFromNode($node);
$retval->objectsById[$obj->id] = $obj;
$retval->objectList[] =& $retval->objectsById[$obj->id];
}
return $retval;
}
static function extractWorkspace($xmldata) {
$doc = new DOMDocument();
$doc
->loadXML($xmldata);
return CMISRepositoryWrapper::extractWorkspaceFromNode($doc);
}
static function extractWorkspaceFromNode($xmlnode) {
$retval = new stdClass();
$retval->links = CMISRepositoryWrapper::getLinksArray($xmlnode);
$retval->uritemplates = array();
$retval->collections = array();
$retval->capabilities = array();
$retval->repositoryInfo = array();
$result = CMISRepositoryWrapper::doXQueryFromNode($xmlnode, "//cmisra:uritemplate");
foreach ($result as $node) {
$retval->uritemplates[$node
->getElementsByTagName("type")
->item(0)->nodeValue] = $node
->getElementsByTagName("template")
->item(0)->nodeValue;
}
$result = CMISRepositoryWrapper::doXQueryFromNode($xmlnode, "//app:collection");
foreach ($result as $node) {
$retval->collections[$node
->getElementsByTagName("collectionType")
->item(0)->nodeValue] = $node->attributes
->getNamedItem("href")->nodeValue;
}
$result = CMISRepositoryWrapper::doXQueryFromNode($xmlnode, "//cmis:capabilities/*");
foreach ($result as $node) {
$retval->capabilities[$node->nodeName] = $node->nodeValue;
}
$result = CMISRepositoryWrapper::doXQueryFromNode($xmlnode, "//cmisra:repositoryInfo/*");
foreach ($result as $node) {
if ($node->nodeName != "cmis:capabilities") {
$retval->repositoryInfo[$node->nodeName] = $node->nodeValue;
}
}
return $retval;
}
}
define("OPT_MAX_ITEMS", "maxItems");
define("OPT_SKIP_COUNT", "skipCount");
define("OPT_FILTER", "filter");
define("OPT_INCLUDE_PROPERTY_DEFINITIONS", "includePropertyDefinitions");
define("OPT_INCLUDE_RELATIONSHIPS", "includeRelationships");
define("OPT_INCLUDE_POLICY_IDS", "includePolicyIds");
define("OPT_RENDITION_FILTER", "renditionFilter");
define("OPT_INCLUDE_ACL", "includeACL");
define("OPT_INCLUDE_ALLOWABLE_ACTIONS", "includeAllowableActions");
define("OPT_DEPTH", "depth");
define("OPT_CHANGE_LOG_TOKEN", "changeLogToken");
define("LINK_ALLOWABLE_ACTIONS", "http://docs.oasis-open.org/ns/cmis/link/200908/allowableactions");
define("MIME_ATOM_XML", 'application/atom+xml');
define("MIME_ATOM_XML_ENTRY", 'application/atom+xml;type=entry');
define("MIME_ATOM_XML_FEED", 'application/atom+xml;type=feed');
define("MIME_CMIS_TREE", 'application/cmistree+xml');
define("MIME_CMIS_QUERY", 'application/cmisquery+xml');
class CMISService extends CMISRepositoryWrapper {
var $_link_cache;
function __construct($url, $username, $password, $options = null) {
parent::__construct($url, $username, $password, $options);
$this->_link_cache = array();
$this->_title_cache = array();
$this->_objTypeId_cache = array();
$this->_type_cache = array();
}
function cacheEntryInfo($obj) {
$this->_link_cache[$obj->id] = $obj->links;
$this->_title_cache[$obj->id] = $obj->properties["cmis:name"];
$this->_objTypeId_cache[$obj->id] = $obj->properties["cmis:objectTypeId"];
}
function cacheFeedInfo($objs) {
foreach ($objs->objectList as $obj) {
$this
->cacheEntryInfo($obj);
}
}
function cacheTypeInfo($tDef) {
$this->_type_cache[$tDef->id] = $tDef;
}
function getPropertyType($typeId, $propertyId) {
if ($this->_type_cache[$typeId]) {
return $this->_type_cache[$typeId]->properties[$propertyId]["cmis:propertyType"];
}
$obj = $this
->getTypeDefinition($typeId);
return $obj->properties[$propertyId]["cmis:propertyType"];
}
function getObjectType($objectId) {
if ($this->_objTypeId_cache[$objectId]) {
return $this->_objTypeId_cache[$objectId];
}
$obj = $this
->getObject($objectId);
return $obj->properties["cmis:objectTypeId"];
}
function getTitle($objectId) {
if ($this->_title_cache[$objectId]) {
return $this->_title_cache[$objectId];
}
$obj = $this
->getObject($objectId);
return $obj->properties["cmis:name"];
}
function getLink($objectId, $linkName) {
if ($this->_link_cache[$objectId][$linkName]) {
return $this->_link_cache[$objectId][$linkName];
}
$obj = $this
->getObject($objectId);
return $obj->links[$linkName];
}
function getRepositories() {
throw Exception("Not Implemented");
}
function getRepositoryInfo() {
return $this->workspace;
}
function getTypeChildren() {
throw Exception("Not Implemented");
}
function getTypeDescendants() {
throw Exception("Not Implemented");
}
function getTypeDefinition($typeId, $options = array()) {
$varmap = $options;
$varmap["id"] = $typeId;
$myURL = $this
->processTemplate($this->workspace->uritemplates['typebyid'], $varmap);
$ret = $this
->doGet($myURL);
$obj = $this
->extractTypeDef($ret->body);
$this
->cacheTypeInfo($obj);
return $obj;
}
function getObjectTypeDefinition($objectId) {
$myURL = $this
->getLink($objectId, "describedby");
$ret = $this
->doGet($myURL);
$obj = $this
->extractTypeDef($ret->body);
$this
->cacheTypeInfo($obj);
return $obj;
}
function getFolderTree() {
throw Exception("Not Implemented");
}
function getDescendants() {
throw Exception("Not Implemented");
}
function getChildren($objectId, $options = array()) {
$myURL = $this
->getLink($objectId, "down");
$ret = $this
->doGet($myURL);
$objs = $this
->extractObjectFeed($ret->body);
$this
->cacheFeedInfo($objs);
return $objs;
}
function getFolderParent($objectId, $options = array()) {
$myURL = $this
->getLink($objectId, "up");
$ret = $this
->doGet($myURL);
$obj = $this
->extractObjectFeed($ret->body);
$this
->cacheEntryInfo($obj);
return $obj;
}
function getObjectParents($objectId, $options = array()) {
$myURL = $this
->getLink($objectId, "up");
$ret = $this
->doGet($myURL);
$objs = $this
->extractObjectFeed($ret->body);
$this
->cacheFeedInfo($objs);
return $objs;
}
function getCheckedOutDocs($options = array()) {
$obj_url = $this->workspace->collections['checkedout'];
$ret = $this
->doGet($obj_url);
$objs = $this
->extractObjectFeed($ret->body);
$this
->cacheFeedInfo($objs);
return $objs;
}
static function getQueryTemplate() {
ob_start();
echo '<?xml version="1.0" encoding="UTF-8" standalone="yes"?>' . "\n";
?>
<cmis:query xmlns:cmis="http://docs.oasis-open.org/ns/cmis/core/200908/"
xmlns:cmism="http://docs.oasis-open.org/ns/cmis/messaging/200908/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:app="http://www.w3.org/2007/app"
xmlns:cmisra="http://docs.oasisopen.org/ns/cmis/restatom/200908/">
<cmis:statement><![CDATA[{q}]]></cmis:statement>
<cmis:searchAllVersions>{searchAllVersions}</cmis:searchAllVersions>
<cmis:includeAllowableActions>{includeAllowableActions}</cmis:includeAllowableActions>
<cmis:includeRelationships>{includeRelationships}</cmis:includeRelationships>
<cmis:renditionFilter>{renditionFilter}</cmis:renditionFilter>
<cmis:maxItems>{maxItems}</cmis:maxItems>
<cmis:skipCount>{skipCount}</cmis:skipCount>
</cmis:query>
<?php
return ob_get_clean();
}
function query($q, $options = array()) {
static $query_template;
if (!isset($query_template)) {
$query_template = CMISService::getQueryTemplate();
}
$hash_values = $options;
$hash_values['q'] = $q;
$post_value = CMISRepositoryWrapper::processTemplate($query_template, $hash_values);
$ret = $this
->doPost($this->workspace->collections['query'], $post_value, MIME_CMIS_QUERY);
$objs = $this
->extractObjectFeed($ret->body);
$this
->cacheFeedInfo($objs);
return $objs;
}
function getContentChanges() {
throw Exception("Not Implemented");
}
static function getEntryTemplate() {
ob_start();
echo '<?xml version="1.0" encoding="UTF-8" standalone="yes"?>' . "\n";
?>
<atom:entry xmlns:cmis="http://docs.oasis-open.org/ns/cmis/core/200908/"
xmlns:cmism="http://docs.oasis-open.org/ns/cmis/messaging/200908/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:app="http://www.w3.org/2007/app"
xmlns:cmisra="http://docs.oasis-open.org/ns/cmis/restatom/200908/">
<atom:title>{title}</atom:title>
{SUMMARY}
{CONTENT}
<cmisra:object><cmis:properties>{PROPERTIES}</cmis:properties></cmisra:object>
</atom:entry>
<?php
return ob_get_clean();
}
static function getPropertyTemplate() {
ob_start();
?>
<cmis:property{propertyType} propertyDefinitionId="{propertyId}">
<cmis:value>{properties}</cmis:value>
</cmis:property{propertyType}>
<?php
return ob_get_clean();
}
function processPropertyTemplates($objectType, $propMap) {
static $propTemplate;
static $propertyTypeMap;
if (!isset($propTemplate)) {
$propTemplate = CMISService::getPropertyTemplate();
}
if (!isset($propertyTypeMap)) {
$propertyTypeMap = array(
"integer" => "Integer",
"boolean" => "Boolean",
"datetime" => "DateTime",
"decimal" => "Decimal",
"html" => "Html",
"id" => "Id",
"string" => "String",
"url" => "Url",
"xml" => "Xml",
);
}
$propertyContent = "";
$hash_values = array();
foreach ($propMap as $propId => $propValue) {
$hash_values['propertyType'] = $propertyTypeMap[$this
->getPropertyType($objectType, $propId)];
$hash_values['propertyId'] = $propId;
if (is_array($propValue)) {
$first_one = true;
$hash_values['properties'] = "";
foreach ($propValue as $val) {
if ($first_one) {
$first_one = false;
}
else {
$hash_values['properties'] .= "</cmis:values>\n<cmis:values>";
}
$hash_values['properties'] .= $val;
}
}
else {
$hash_values['properties'] = $propValue;
}
$propertyContent .= CMISRepositoryWrapper::processTemplate($propTemplate, $hash_values);
}
return $propertyContent;
}
static function getContentEntry($content, $content_type = "application/octet-stream") {
static $contentTemplate;
if (!isset($contentTemplate)) {
$contentTemplate = CMISService::getContentTemplate();
}
if ($content) {
return CMISRepositoryWrapper::processTemplate($contentTemplate, array(
"content" => base64_encode($content),
"content_type" => $content_type,
));
}
else {
return "";
}
}
static function getSummaryTemplate() {
ob_start();
?>
<atom:summary>{summary}</atom:summary>
<?php
return ob_get_clean();
}
static function getContentTemplate() {
ob_start();
?>
<cmisra:content>
<cmisra:mediatype>
{content_type}
</cmisra:mediatype>
<cmisra:base64>
{content}
</cmisra:base64>
</cmisra:content>
<?php
return ob_get_clean();
}
static function createAtomEntry($name, $properties) {
}
function getObject($objectId, $options = array()) {
$varmap = $options;
$varmap["id"] = $objectId;
$obj_url = $this
->processTemplate($this->workspace->uritemplates['objectbyid'], $varmap);
$ret = $this
->doGet($obj_url);
$obj = $this
->extractObject($ret->body);
$this
->cacheEntryInfo($obj);
return $obj;
}
function getObjectByPath($path, $options = array()) {
$varmap = $options;
$varmap["path"] = $path;
$obj_url = $this
->processTemplate($this->workspace->uritemplates['objectbypath'], $varmap);
$ret = $this
->doGet($obj_url);
$obj = $this
->extractObject($ret->body);
$this
->cacheEntryInfo($obj);
return $obj;
}
function getProperties($objectId, $options = array()) {
return $this
->getObject($objectId, $options);
}
function getAllowableActions($objectId, $options = array()) {
throw Exception("Not Implemented");
}
function getRenditions($objectId, $options = array(
OPT_RENDITION_FILTER => "*",
)) {
return getObject($objectId, $options);
}
function getContentStream($objectId, $options = array()) {
$myURL = $this
->getLink($objectId, "edit-media");
$ret = $this
->doGet($myURL);
return $ret->body;
}
function postObject($folderId, $objectName, $objectType, $properties = array(), $content = null, $content_type = "application/octet-stream", $options = array()) {
$myURL = $this
->getLink($folderId, "down");
$myURL = CMISRepositoryWrapper::getOpUrl($myURL, $options);
static $entry_template;
if (!isset($entry_template)) {
$entry_template = CMISService::getEntryTemplate();
}
if (is_array($properties)) {
$hash_values = $properties;
}
else {
$hash_values = array();
}
if (!isset($hash_values["cmis:objectTypeId"])) {
$hash_values["cmis:objectTypeId"] = $objectType;
}
$properties_xml = $this
->processPropertyTemplates($objectType, $hash_values);
if (is_array($options)) {
$hash_values = $options;
}
else {
$hash_values = array();
}
$hash_values["PROPERTIES"] = $properties_xml;
$hash_values["SUMMARY"] = CMISService::getSummaryTemplate();
if ($content) {
$hash_values["CONTENT"] = CMISService::getContentEntry($content, $content_type);
}
if (!isset($hash_values['title'])) {
$hash_values['title'] = $objectName;
}
if (!isset($hash_values['summary'])) {
$hash_values['summary'] = $objectName;
}
$post_value = CMISRepositoryWrapper::processTemplate($entry_template, $hash_values);
$ret = $this
->doPost($myURL, $post_value, MIME_ATOM_XML_ENTRY);
$obj = $this
->extractObject($ret->body);
$this
->cacheEntryInfo($obj);
return $obj;
}
function createDocument($folderId, $fileName, $properties = array(), $content = null, $content_type = "application/octet-stream", $options = array()) {
return $this
->postObject($folderId, $fileName, "cmis:document", $properties, $content, $content_type, $options);
}
function createDocumentFromSource() {
throw Exception("Not Implemented in This Binding");
}
function createFolder($folderId, $folderName, $properties = array(), $options = array()) {
return $this
->postObject($folderId, $folderName, "cmis:folder", $properties, null, null, $options);
}
function createRelationship() {
throw Exception("Not Implemented");
}
function createPolicy() {
throw Exception("Not Implemented");
}
function updateProperties($objectId, $properties = array(), $options = array()) {
$varmap = $options;
$varmap["id"] = $objectId;
$objectName = $this
->getTitle($objectId);
$objectType = $this
->getObjectType($objectId);
$obj_url = $this
->getLink($objectId, "edit");
$obj_url = CMISRepositoryWrapper::getOpUrl($obj_url, $options);
static $entry_template;
if (!isset($entry_template)) {
$entry_template = CMISService::getEntryTemplate();
}
if (is_array($properties)) {
$hash_values = $properties;
}
else {
$hash_values = array();
}
$properties_xml = $this
->processPropertyTemplates($objectType, $hash_values);
if (is_array($options)) {
$hash_values = $options;
}
else {
$hash_values = array();
}
$hash_values["PROPERTIES"] = $properties_xml;
$hash_values["SUMMARY"] = CMISService::getSummaryTemplate();
if (!isset($hash_values['title'])) {
$hash_values['title'] = $objectName;
}
if (!isset($hash_values['summary'])) {
$hash_values['summary'] = $objectName;
}
$put_value = CMISRepositoryWrapper::processTemplate($entry_template, $hash_values);
$ret = $this
->doPut($obj_url, $put_value, MIME_ATOM_XML_ENTRY);
$obj = $this
->extractObject($ret->body);
$this
->cacheEntryInfo($obj);
return $obj;
}
function moveObject($objectId, $targetFolderId, $sourceFolderId, $options = array()) {
$options['sourceFolderId'] = $sourceFolderId;
return $this
->postObject($targetFolderId, $this
->getTitle($objectId), $this
->getObjectType($objectId), array(
"cmis:objectId" => $objectId,
), null, null, $options);
}
function deleteObject($objectId, $options = array()) {
$varmap = $options;
$varmap["id"] = $objectId;
$obj_url = $this
->getLink($objectId, "edit");
$ret = $this
->doDelete($obj_url);
return;
}
function deleteTree() {
throw Exception("Not Implemented");
}
function setContentStream($objectId, $content, $content_type, $options = array()) {
$myURL = $this
->getLink($objectId, "edit-media");
$ret = $this
->doPut($myURL, $content, $content_type);
}
function deleteContentStream($objectId, $options = array()) {
$myURL = $this
->getLink($objectId, "edit-media");
$ret = $this
->doDelete($myURL);
return;
}
function getPropertiesOfLatestVersion($objectId, $options = array()) {
throw Exception("Not Implemented");
}
function getObjectOfLatestVersion($objectId, $options = array()) {
throw Exception("Not Implemented");
}
function getAllVersions() {
throw Exception("Not Implemented");
}
function checkOut() {
throw Exception("Not Implemented");
}
function checkIn() {
throw Exception("Not Implemented");
}
function cancelCheckOut() {
throw Exception("Not Implemented");
}
function deleteAllVersions() {
throw Exception("Not Implemented");
}
function getObjectRelationships() {
throw Exception("Not Implemented");
}
function addObjectToFolder() {
throw Exception("Not Implemented");
}
function removeObjectFromFolder() {
throw Exception("Not Implemented");
}
function getAppliedPolicies() {
throw Exception("Not Implemented");
}
function applyPolicy() {
throw Exception("Not Implemented");
}
function removePolicy() {
throw Exception("Not Implemented");
}
function getACL() {
throw Exception("Not Implemented");
}
function applyACL() {
throw Exception("Not Implemented");
}
}