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.
57 lines
1.6 KiB
57 lines
1.6 KiB
<?php |
|
|
|
/** |
|
* @file |
|
* |
|
*/ |
|
|
|
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() { |
|
global $user; |
|
$objectHelper = new ObjectHelper(); |
|
$tabset = array(); |
|
$show_purge_tab = (!empty($_POST['form_id']) && $_POST['form_id'] == 'fedora_repository_purge_object_form'); |
|
$purge_form = drupal_get_form('fedora_repository_purge_object_form', $this->pid, check_plain(substr(request_uri(), strlen(base_path())))); |
|
|
|
$tabset['fedora_object_details'] = array( |
|
'#type' => 'tabpage', |
|
'#title' => t('Object Details'), |
|
'#selected' => $show_purge_tab, |
|
); |
|
$tabset['fedora_object_details']['tabset'] = array( |
|
'#type' => 'tabset', |
|
); |
|
$dc_html = $objectHelper->getFormattedDC($this->item); |
|
|
|
$ds_list = $objectHelper->get_formatted_datastream_list($this->pid, NULL, $this->item); |
|
|
|
|
|
$tabset['fedora_object_details']['tabset']['view'] = array( |
|
'#type' => 'tabpage', |
|
'#title' => t('View'), |
|
'#content' => $dc_html . $ds_list . $purge_form, |
|
); |
|
|
|
if (fedora_repository_access(OBJECTHELPER :: $EDIT_FEDORA_METADATA, $this->pid, $user)) { |
|
$editform = drupal_get_form('fedora_repository_edit_qdc_form', $this->pid, 'DC'); |
|
$tabset['fedora_object_details']['tabset']['edit'] = array( |
|
'#type' => 'tabpage', |
|
'#title' => t('Edit'), |
|
'#content' => $editform, |
|
); |
|
} |
|
|
|
return $tabset; |
|
} |
|
|
|
} |