Browse Source

Merge pull request #208 from willtp87/ISLANDORA-782

ISLANDORA-782
pull/236/merge
Jonathan Green 12 years ago
parent
commit
ba1443c757
  1. 16
      api/fedora_item.inc

16
api/fedora_item.inc

@ -671,13 +671,19 @@ RDF;
/** /**
* Get datastream dissemination * Get datastream dissemination
* *
* @param type $dsid * @param string $dsid
* @param type $as_of_date_time * The DSID of the datastream to get the dissemination of.
* @param string $as_of_date_time
* We can get old versions of versioned datastreams.
* Defaults to now.
* @param type $quiet * @param type $quiet
* Squash errors? defaults to FALSE.
* *
* @return null * @return mixed
* NULL if the DS is not present in Fedora Item's datastream list.
* The content of the DS (NULL if empty)
*/ */
function get_datastream_dissemination($dsid, $as_of_date_time = "", $quiet=TRUE) { function get_datastream_dissemination($dsid, $as_of_date_time = "", $quiet = FALSE) {
if (!array_key_exists($dsid, $this->datastreams)) { if (!array_key_exists($dsid, $this->datastreams)) {
return NULL; return NULL;
} }
@ -688,7 +694,7 @@ RDF;
'asOfDateTime' => $as_of_date_time, 'asOfDateTime' => $as_of_date_time,
); );
// Make soap call with quite // Make soap call.
$object = self::soap_call('getDataStreamDissemination', $params, $quiet); $object = self::soap_call('getDataStreamDissemination', $params, $quiet);
if (!empty($object)) { if (!empty($object)) {
$content = $object->dissemination->stream; $content = $object->dissemination->stream;

Loading…
Cancel
Save