jonathangreen
13 years ago
8 changed files with 240 additions and 152 deletions
@ -1,35 +0,0 @@
|
||||
<?php |
||||
|
||||
/* |
||||
* islandora-basic-collection.tpl.php |
||||
* |
||||
* |
||||
* |
||||
* This file is part of Islandora. |
||||
* |
||||
* This program is free software: you can redistribute it and/or modify |
||||
* it under the terms of the GNU General Public License as published by |
||||
* the Free Software Foundation, either version 3 of the License, or |
||||
* (at your option) any later version. |
||||
* |
||||
* This program is distributed in the hope that it will be useful, |
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
* GNU General Public License for more details. |
||||
* |
||||
* You should have received a copy of the GNU General Public License |
||||
* along with the program. If not, see <http ://www.gnu.org/licenses/>. |
||||
*/ |
||||
?> |
||||
<?php drupal_set_title($islandora_object->label); ?> |
||||
|
||||
<div class="islandora-basic-collection-wrapper"> |
||||
<div class="islandora-basic-collection clearfix"> |
||||
<?php foreach($associated_objects_array as $key => $value): ?> |
||||
<dl class="islandora-basic-collection-object <?php print $value['class']; ?>">
|
||||
<dt class="islandora-basic-collection-thumb"><?php print $value['thumb_link']; ?></dt>
|
||||
<dd class="islandora-basic-collection-caption"><?php print $value['title_link']; ?></dd>
|
||||
</dl> |
||||
<?php endforeach; ?> |
||||
</div> |
||||
</div> |
@ -0,0 +1,53 @@
|
||||
<?php |
||||
|
||||
/* |
||||
* islandora-basic-collection.tpl.php |
||||
* |
||||
* |
||||
* |
||||
* This file is part of Islandora. |
||||
* |
||||
* This program is free software: you can redistribute it and/or modify |
||||
* it under the terms of the GNU General Public License as published by |
||||
* the Free Software Foundation, either version 3 of the License, or |
||||
* (at your option) any later version. |
||||
* |
||||
* This program is distributed in the hope that it will be useful, |
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
* GNU General Public License for more details. |
||||
* |
||||
* You should have received a copy of the GNU General Public License |
||||
* along with the program. If not, see <http ://www.gnu.org/licenses/>. |
||||
*/ |
||||
?> |
||||
<?php drupal_set_title($islandora_object->label); ?> |
||||
|
||||
<div class="islandora islandora-basic-collection-wrapper"> |
||||
<?php $row_field = 0; ?> |
||||
<?php foreach($associated_objects_array as $associated_object): ?> |
||||
<div class="islandora-basic-collection-object clearfix"> |
||||
<dl class="islandora-basic-collection-thumb <?php print $associated_object['class']; ?>">
|
||||
<dt><?php print $associated_object['thumb_link']; ?></dt>
|
||||
<dd></dd> |
||||
</dl> |
||||
<dl class="islandora-inline-metadata islandora-basic-collection-fields"> |
||||
<dt class="collection-label <?php print $associated_object['dc_array']['dc:title']['class']; ?> <?php print $row_field == 0 ? ' first' : ''; ?>">
|
||||
<?php print $associated_object['dc_array']['dc:title']['label']; ?> |
||||
</dt> |
||||
<dd class="collection-value <?php print $associated_object['dc_array']['dc:title']['class']; ?> <?php print $row_field == 0 ? ' first' : ''; ?>">
|
||||
<?php print $associated_object['title_link']; ?> |
||||
</dd> |
||||
<?php if ($associated_object['dc_array']['dc:description']['value']): ?> |
||||
<dt class="collection-label <?php print $associated_object['dc_array']['dc:description']['class']; ?>">
|
||||
<?php print $associated_object['dc_array']['dc:description']['label']; ?> |
||||
</dt> |
||||
<dd class="collection-value <?php print $associated_object['dc_array']['dc:description']['class']; ?>">
|
||||
<?php print $associated_object['dc_array']['dc:description']['value']; ?> |
||||
</dd> |
||||
<?php $row_field++; ?> |
||||
<?php endif; ?> |
||||
</dl> |
||||
</div> |
||||
<?php endforeach; ?> |
||||
</div> |
@ -0,0 +1,114 @@
|
||||
<?php |
||||
|
||||
/** |
||||
* list view preprocess |
||||
* currently just calls normal view preprocess as variables are the same |
||||
* @param type $variables |
||||
*/ |
||||
function islandora_basic_collection_preprocess_islandora_basic_collection_grid(&$variables) { |
||||
islandora_basic_collection_preprocess_islandora_basic_collection($variables); |
||||
} |
||||
|
||||
function islandora_basic_collection_preprocess_islandora_basic_collection_wrapper(&$variables) { |
||||
$page_number = (empty($_GET['page'])) ? 0 : $_GET['page']; |
||||
$page_size = (empty($_GET['pagesize'])) ? variable_get('islandora_basic_collection_page_size', '10') : $_GET['pagesize']; |
||||
$islandora_object = $variables['islandora_object']; |
||||
$results = islandora_basic_collection_get_objects($islandora_object, $page_number, $page_size); |
||||
$total_count = count($results); |
||||
pager_default_initialize($total_count, $page_size); |
||||
$variables['collection_pager'] = theme('pager', array('quantity' => 10)); |
||||
$display = (empty($_GET['display'])) ? 'list' : $_GET['display']; |
||||
if ($display == 'grid') { |
||||
$collection_content = theme('islandora_basic_collection_grid', array('islandora_object' => $islandora_object, 'collection_results' => $results)); |
||||
} |
||||
else { |
||||
$collection_content = theme('islandora_basic_collection', array('islandora_object' => $islandora_object, 'collection_results' => $results)); |
||||
} |
||||
$variables['collection_content'] = $collection_content; |
||||
} |
||||
|
||||
/** |
||||
* |
||||
* @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'); |
||||
} |
||||
$page_number = (empty($_GET['page'])) ? 0 : $_GET['page']; |
||||
$page_size = (empty($_GET['pagesize'])) ? variable_get('islandora_basic_collection_page_size', '10') : $_GET['pagesize']; |
||||
$results = $variables['collection_results']; //islandora_basic_collection_get_objects($islandora_object, $page_number, $page_size); |
||||
$total_count = count($results); |
||||
$variables['islandora_dublin_core'] = $dc_object; |
||||
$variables['islandora_object_label'] = $islandora_object->label; |
||||
$display = (empty($_GET['display'])) ? 'list' : $_GET['display']; |
||||
if ($display == 'grid') { |
||||
$variables['theme_hook_suggestions'][] = 'islandora_basic_collection_grid__' . str_replace(':', '_', $islandora_object->id); |
||||
} |
||||
else { |
||||
$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'] = '<img src="' . $full_size_url . '"/>'; |
||||
} |
||||
if (isset($islandora_object['TN'])) { |
||||
$thumbnail_size_url = $base_url . '/islandora/object/' . $islandora_object->id . '/datastream/TN/view'; |
||||
$variables['islandora_thumbnail_img'] = '<img src="' . $thumbnail_size_url . '"/>'; |
||||
} |
||||
if (isset($islandora_object['MEDIUM_SIZE'])) { |
||||
$medium_size_url = $base_url . '/islandora/object/' . $islandora_object->id . '/datastream/MEDIUM_SIZE/view'; |
||||
$variables['islandora_medium_img'] = '<img src="' . $medium_size_url . '"/>'; |
||||
} |
||||
|
||||
$associated_objects_array = array(); |
||||
$start = $page_size * ($page_number); |
||||
$end = min($start + $page_size, $total_count); |
||||
|
||||
for ($i = $start; $i < $end; $i++) { |
||||
$pid = $results[$i]['object']['value']; |
||||
$fc_object = islandora_basic_collection_get_object($pid); |
||||
if (!isset($fc_object)) { |
||||
continue; //null object so don't show in collection view; |
||||
} |
||||
$associated_objects_array[$pid]['object'] = $fc_object; |
||||
try { |
||||
$dc = $fc_object['DC']->content; |
||||
$dc_object = Dublin_Core::import_from_xml_string($dc); |
||||
$associated_objects_array[$pid]['dc_array'] = $dc_object->as_formatted_array(); |
||||
} catch (Exception $e) { |
||||
drupal_set_message(t('Error retrieving object %s %t', array('%s' => $islandora_object->id, '%t' => $e->getMessage())), 'error'); |
||||
} |
||||
$object_url = 'islandora/object/' . $pid; |
||||
$thumbnail_img = '<img src="' . $base_path . $object_url . '/datastream/TN/view"' . '/>'; |
||||
$title = $results[$i]['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)); |
||||
if (isset($fc_object['TN'])) { |
||||
$thumbnail_img = '<img src="' . $base_path . $object_url . '/datastream/TN/view"' . '/>'; |
||||
} |
||||
else { |
||||
//TODO: change this default image url |
||||
$thumbnail_img = '<img src="http://codesprint-centos.islandora.ca/islandora/object/islandora%3A52/datastream/TN"' . '/>'; |
||||
} |
||||
$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; |
||||
} |
||||
|
||||
?> |
Loading…
Reference in new issue