50 lines
1.7 KiB
PHP
50 lines
1.7 KiB
PHP
<?php
|
|
/**
|
|
* @file
|
|
* Islandora solr search primary results template file.
|
|
*
|
|
* Variables available:
|
|
* - $results: Primary profile results array
|
|
*
|
|
* @see template_preprocess_islandora_solr()
|
|
*/
|
|
|
|
?>
|
|
|
|
<?php //dpm(print_r($associated_objects_array_mods, true)); ?>
|
|
|
|
<div class="islandora islandora-arteleku-collection">
|
|
<div class="islandora-arteleku-collection-grid clearfix">
|
|
|
|
<div class="panel-pane pane-title-line panel-no-margin">
|
|
<?php $rows = array() ?>
|
|
<?php foreach($associated_objects_array_mods as $key => $value):
|
|
isset($value['mods_array']['abstract'])? $ab = views_trim_text(array('max_length'=> 150, 'word_boundary'=>true, 'ellipsis'=>true),$value['mods_array']['abstract']) : $ab ="";
|
|
isset($value['title_link'])? $title_link = $value['title_link'] : $title_link = '';
|
|
$rows[] = array(
|
|
array('data' => "<h3>{$title_link}</h3>", 'class' => array("title-cell")),
|
|
//array('data' => "<h3>{$value['title_link']}</h3>", 'class' => array("title-cell")),
|
|
$ab
|
|
);
|
|
endforeach; ?>
|
|
|
|
<?php
|
|
$table_element = array(
|
|
'#theme' => 'table',
|
|
'#header' => array('title' => t('Title'), 'abstract' => t('Abstract')),
|
|
'#rows' => $rows,
|
|
'#empty' =>t('Your table is empty'),
|
|
'#sticky' => false,
|
|
'#attributes' => array('id' => 'islandora-collection-table')
|
|
);
|
|
print drupal_render($table_element);
|
|
|
|
?>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|