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.
94 lines
2.8 KiB
94 lines
2.8 KiB
<?php |
|
|
|
/** |
|
* Returns a formatted table listing all members of the collection |
|
* defined by the $collection_pid parameter |
|
* @param string $collection_pid |
|
* @return array |
|
*/ |
|
|
|
|
|
function islandora_collection_table($collection_pid) { |
|
module_load_include('inc', 'fedora_repository', 'api/fedora_utils'); |
|
|
|
$query = "select \$object \$title from <#ri> |
|
where (\$object <info:fedora/fedora-system:def/relations-external#isMemberOf> <info:fedora/$collection_pid> |
|
or \$object <info:fedora/fedora-system:def/relations-external#isMemberOfCollection> <info:fedora/$collection_pid>) |
|
and \$object <dc:title> \$title"; |
|
$query = htmlentities(urlencode($query)); |
|
$content = ''; |
|
|
|
$url = variable_get('fedora_repository_url', 'http://localhost:8080/fedora/risearch'); |
|
$url .= "?type=tuples&flush=TRUE&format=csv&limit=$limit&offset=$offset&lang=itql&stream=on&query=" . $query; |
|
$content .= do_curl($url); |
|
$results = explode("\n", $content); |
|
$lines = preg_replace('/info:fedora\/|"object","title"/', '', $results); |
|
$lines = array_values(array_filter($lines)); |
|
$keys = array(); |
|
$object = array(); |
|
foreach ($lines as $line) { |
|
$line_parts = explode(',', $line); |
|
|
|
$objects[$line_parts[0]] = $line_parts[1]; |
|
$keys[] = $line_parts[0]; |
|
} |
|
|
|
$form['list'] = array( |
|
'#value' => $list, |
|
); |
|
|
|
$table = array( |
|
'#header' => array(theme('table_select_header_cell'), t('Select All'), ''), |
|
'#theme' => 'islandora_collection_management_form_table', |
|
'#tree' => TRUE, |
|
'rows' => array(), |
|
'selections' => array( |
|
'#type' => 'checkboxes', |
|
'#options' => array_fill_keys($keys, ''), |
|
), |
|
); |
|
$rows = &$table['rows']; |
|
if(empty($objects)){ |
|
return; |
|
} |
|
foreach ($objects as $key => $object) { |
|
$rows[] = array( |
|
'#pid' => $key, |
|
'pid' => array('#value' => l($key, 'fedora/repository/' . $key)), |
|
'title' => array('#value' => $object), |
|
); |
|
} |
|
|
|
return $table; |
|
} |
|
|
|
|
|
|
|
/** |
|
* themes the form table. |
|
* |
|
* @param array $element Drupal Form Element. |
|
* @return string |
|
*/ |
|
|
|
|
|
function theme_islandora_collection_management_form_table(array $element) { |
|
$rows = array(); |
|
foreach (element_children($element['rows']) as $child) { |
|
$setting = $element['rows'][$child]; |
|
$pid = $setting['#pid']; |
|
$fields = array( |
|
drupal_render($element['selections'][$pid]) // First field is a checkbox |
|
); |
|
foreach (element_children($setting) as $property) { |
|
$field = $setting[$property]; |
|
$fields[] = drupal_render($field); |
|
} |
|
$rows[] = array( |
|
'data' => $fields, |
|
'class' => isset($setting['#attributes']['class']) ? $setting['#attributes']['class'] : NULL |
|
); |
|
} |
|
$attributes = isset($element['#id']) ? array('id' => $element['#id']) : NULL; |
|
return theme_table($element['#header'], $rows, $attributes); |
|
} |