. */ /** * Theme registry function * We supply a pattern so we can overide templates at the theme level if needed. * we can append a pid to a template and the new template file will be called (the pids * colon should be replaced with a dash) * @return array */ function islandora_basic_collection_theme($existing, $type, $theme, $path) { return array( 'islandora_basic_collection' => array( 'template' => 'islandora-basic-collection', 'pattern' => 'islandora_basic_collection__', //we can add pids to the end of this pattern in our preprocess function // and templates will be able to have have a pid appended to the template name to overide a template on a per object basis //an example template would be named islandora-basic-image--islandora-27.tpl.phps 'variables' => array('islandora_object' => NULL), ) ); } /** * tells the main module what types of objects we support. This is used to determine whether or not * this module should attempt to respond. * @return array * array of content model pids that this module supports */ function islandora_basic_collection_islandora_get_types() { $types = array(); $types['islandora:collectionCModel'][ISLANDORA_VIEW_HOOK] = TRUE; $types['islandora:collectionCModel'][ISLANDORA_EDIT_HOOK] = FALSE; return $types; } /** * this modules implentation of view_object hook will handle objects of type islandora:basicImageCModel and info:fedora/islandora:sp_basic_image * as registered in its return types * Other modules would handle objects of other types. * @param Object $object * a tuque fedora object * @param object $user * @param string $page_number * @param string $page_size * @return string * themed html */ function islandora_basic_collection_islandora_view_object($object, $user, $page_number, $page_size) { //global $user; $cmodel_list = islandora_basic_collection_islandora_get_types(); $models = $object->models; foreach ($object->models as $model) { if (isset($cmodel_list[$model][ISLANDORA_VIEW_HOOK]) && $cmodel_list[$model][ISLANDORA_VIEW_HOOK] == TRUE) { $output = theme('islandora_basic_collection', array('islandora_object' => $object)); return array('' => $output); } } return NULL; } /** * * @global type $base_url * @param array $variables * an array of variables that will be passed to the theme function */ function islandora_basic_collection_preprocess_islandora_basic_collection(&$variables) { // base url global $base_url; // base path global $base_path; $islandora_object = $variables['islandora_object']; module_load_include('inc', 'islandora', 'includes/islandora_dublin_core'); try { $dc = $islandora_object['DC']->content; $dc_object = Dublin_Core::import_from_xml_string($dc); } catch (Exception $e) { drupal_set_message(t('Error retrieving object %s %t', array('%s' => $islandora_object->id, '%t' => $e->getMessage())), 'error'); } $variables['islandora_associated_objects'] = islandora_basic_collection_get_objects($islandora_object); $variables['islandora_dublin_core'] = $dc_object; $variables['islandora_object_label'] = $islandora_object->label; $variables['theme_hook_suggestions'][] = 'islandora_basic_collection__' . str_replace(':', '_', $islandora_object->id); if (isset($islandora_object['OBJ'])) { $full_size_url = $base_url . '/islandora/object/' . $islandora_object->id . '/datastream/OBJ/view'; $variables['islandora_full_img'] = ''; } if (isset($islandora_object['TN'])) { $thumbnail_size_url = $base_url . '/islandora/object/' . $islandora_object->id . '/datastream/TN/view'; $variables['islandora_thumbnail_img'] = ''; } if (isset($islandora_object['MEDIUM_SIZE'])) { $medium_size_url = $base_url . '/islandora/object/' . $islandora_object->id . '/datastream/MEDIUM_SIZE/view'; $variables['islandora_medium_img'] = ''; } $associated_objects_array = array(); foreach($variables['islandora_associated_objects'] as $key => $value) { $pid = $variables['islandora_associated_objects'][$key]['object']['value']; $object_url = 'islandora/object/' . $pid; $thumbnail_img = ''; $title = $variables['islandora_associated_objects'][$key]['title']['value']; $associated_objects_array[$pid]['pid'] = $pid; $associated_objects_array[$pid]['path'] = $object_url; $associated_objects_array[$pid]['title'] = $title; $associated_objects_array[$pid]['class'] = strtolower( preg_replace('/[^A-Za-z0-9]/', '-', $pid)); $associated_objects_array[$pid]['thumbnail'] = $thumbnail_img; $associated_objects_array[$pid]['title_link'] = l($title, $object_url, array('html' => TRUE, 'attributes' => array('title' => $title))); $associated_objects_array[$pid]['thumb_link'] = l($thumbnail_img, $object_url, array('html' => TRUE, 'attributes' => array('title' => $title))); } $variables['associated_objects_array'] = $associated_objects_array; } function islandora_basic_collection_get_objects($object) { $query = 'select $object $title $content from <#ri> where ($object $title and $object $content and ($object id . '> or $object id . '>) and $object ) minus $content order by $title'; $page_number = (empty($_GET['page'])) ? '1' : $_GET['page']; $page_size = (empty($_GET['pagesize'])) ? '10' : $_GET['pagesize']; module_load_include('inc', 'islandora', 'RestConnection'); $query_array = array('query' => $query, 'type' => 'itql', 'pid' => $object->id, 'page_size' => $page_size, 'page_number' => $page_number); drupal_alter('islandora_basic_collection_query', $query_array); global $user; try { $restConnection = new RestConnection($user); $queryObject = new RepositoryQuery($restConnection->connection); $results = $queryObject->query($query_array['query'], $query_array['type']); } catch (Exception $e) { drupal_set_message(t('Islandora Error getting related objects for %s', array('%s' => $object->id)), 'error'); return""; } return $results; } function islandora_basic_collection_islandora_ingest_get_information($models, $object) { if (in_array('islandora:collectionCModel', $models) && isset($object['COLLECTION_POLICY'])) { try { module_load_include('inc', 'islandora_basic_collection', 'includes/CollectionPolicy'); $return = array(); $policy = new CollectionPolicy($object['COLLECTION_POLICY']->content); $return['models'] = $policy->getContentModels(); $return['relationship'] = $policy->getRelationship(); return $return; } catch (Exception $e) { drupal_set_message(t('Islandora Error getting collection info for %s', array('%s' => $object->id)), 'error'); } } }