pid = $pid; $this->item = new Fedora_Item($pid); } } /** * Show Field Sets * @global type $user * @return type */ public function showFieldSets() { global $user; drupal_set_title($this->item->objectProfile->objLabel); $objectHelper = new ObjectHelper(); $tabset = array(); $show_purge_tab = (!empty($_POST['form_id']) && $_POST['form_id'] == 'fedora_repository_purge_object_form'); $show_edit_tab = (!empty($_POST['form_id']) && $_POST['form_id'] == 'fedora_repository_edit_qdc_form'); $purge_form = drupal_get_form('fedora_repository_purge_object_form', $this->pid, check_plain(substr(request_uri(), strlen(base_path())))); $details_selected = ($show_purge_tab || $show_edit_tab); $tabset['fedora_object_details'] = array( '#type' => 'tabpage', '#title' => t('Object Details'), '#selected' => $details_selected, '#weight' => 100, //XXX: Make the weight configurable? ); $tabset['fedora_object_details']['tabset'] = array( '#type' => 'tabset', ); module_load_include('inc', 'fedora_repository', 'ObjectDetails'); $object_details_profile = variable_get('islandora_object_details_display_table', 'xslt_dc'); $profiles = module_invoke_all("islandora_object_details_display"); $profile = $profiles[$object_details_profile]; if (!isset($profile)) { // default behaviour drupal_set_message(t("There was an error reading the default object details display profile"), "error"); $dc_html = $objectHelper->getFormattedDC($this->item); } else { // invoke the requested display profile require_once(drupal_get_path('module', $profile['module']) ."/". $profile['file']); $details_function = $profile['function']; if (function_exists($details_function)) { $dc_html = $details_function($this->item); } else { // problem } } $i = 0; if (fedora_repository_access(OBJECTHELPER :: $VIEW_DETAILED_CONTENT_LIST, $this->pid, $user)) { $tabset['fedora_object_details']['tabset']['view'] = array( '#type' => 'tabpage', '#title' => t('View'), 'dc' => array( '#type' => 'markup', '#value' => $dc_html, //XXX: This could easily be done in Drupal, instead of using an XSL '#weight' => $i++ ), 'list' => array( '#type' => 'fieldset', '#title' => t('Detailed List of Content'), '#attributes' => array( 'class' => 'fedora_detailed_list', ), '#collapsible' => TRUE, '#collapsed' => TRUE, '#weight' => $i++, 'parents' => array( '#type' => 'markup', '#value' => $objectHelper->get_parent_objects_asHTML($this->pid), '#weight' => $i++, ), 'datastreams' => array( '#type' => 'markup', '#value' => $objectHelper->get_formatted_datastream_list($this->pid, NULL, $this->item), //XXX: The function called here could be cleaned up a fair bit as well... '#weight' => $i++, ), ), 'purge' => array( '#type' => 'markup', '#value' => $purge_form, '#weight' => $i++ ) ); } 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'), '#selected' => $show_edit_tab, '#content' => $editform, ); } $ts = $tabset['fedora_object_details']['tabset']; if (array_key_exists('view', $ts) || array_key_exists('edit', $ts)) { return $tabset; } else { return array(); } } }