You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
395 B
18 lines
395 B
<?php |
|
|
|
class FedoraObject { |
|
function __construct($pid = '') { |
|
module_load_include('inc', 'fedora_repository', 'api/fedora_item'); |
|
if (!empty($pid)) { |
|
|
|
$this->pid = $pid; |
|
$this->item = new Fedora_Item($pid); |
|
} |
|
} |
|
|
|
public function showFieldSets() { |
|
$objHelper = new ObjectHelper(); |
|
|
|
return $objHelper->getFormattedDatastreamList($this->pid, NULL); |
|
} |
|
} |