Skip to content
Snippets Groups Projects
Commit a5063d24 authored by Chris Hallberg's avatar Chris Hallberg
Browse files

Added optional sort fields to Solr connection in VuDL.

parent 8bbb56fa
No related merge requests found
......@@ -206,19 +206,24 @@ class Solr extends AbstractBase
/**
* Returns file contents of the structmap, our most common call
*
* @param string $id record id
* @param string $id record id
* @param array $extra_sort extra fields to sort on
*
* @return string $id
*/
public function getOrderedMembers($id)
public function getOrderedMembers($id, $extra_sort = array())
{
// Try to find members in order
$seqField = 'sequence_'.str_replace(':', '_', $id).'_str';
$sort = array($seqField.' asc');
foreach ($extra_sort as $sf) {
$sort[] = $sf;
}
$response = $this->search(
new ParamBag(
array(
'q' => 'relsext.isMemberOf:"'.$id.'"',
'sort' => $seqField.' asc,fgs.label asc',
'sort' => implode(',', $sort),
'fl' => 'id',
'rows' => 99999,
)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment