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

Sort callnumber browse results on callnumber/dewey when viewed.

parent 26345cb0
No related merge requests found
......@@ -356,7 +356,7 @@ class BrowseController extends AbstractBase
'query_field' => 'callnumber-first',
'facet_field' => 'callnumber-subject'
];
$view->searchParams = [];
$view->searchParams = ['sort' => 'callnumber-sort'];
return $this->performSearch($view);
}
......@@ -378,6 +378,7 @@ class BrowseController extends AbstractBase
];
}
$view->categoryList = $categoryList;
$view->query_field = 'dewey';
if ($this->params()->fromQuery('findby')) {
$secondaryList = $this->quoteValues(
$this->getFacetList(
......@@ -397,6 +398,7 @@ class BrowseController extends AbstractBase
'query_field' => 'dewey-tens',
'facet_field' => 'dewey-ones'
];
$view->searchParams = ['sort' => 'dewey-sort'];
}
return $this->performSearch($view);
}
......
......@@ -61,7 +61,7 @@
<? endif; ?>
</a>
<? if($viewRecord): ?>
<a class="list-group-item view-record" href="<?=$SEARCH_BASE ?>?lookfor=<? if ($this->filter): ?>&filter[]=<?=urlencode($this->filter) ?>%3A<?=str_replace('+AND+','&filter[]=', urlencode($secondary['value'])) ?><? endif; ?>&filter[]=<?=$this->browse()->getSolrField($this->currentAction) ?>%3A[* TO *]"><?=$this->transEsc('View Records') ?></a>
<a class="list-group-item view-record" href="<?=$SEARCH_BASE ?>?lookfor=<? if ($this->filter): ?>&filter[]=<?=urlencode($this->filter) ?>%3A<?=str_replace('+AND+','&filter[]=', urlencode($secondary['value'])) ?><? endif; ?>&filter[]=<?=$this->browse()->getSolrField($this->currentAction) ?>%3A[* TO *]<? if($this->query_field == 'dewey'):?>&sort=dewey-sort<?endif;?>"><?=$this->transEsc('View Records') ?></a>
<? endif; ?>
<? endforeach; ?>
</div>
......
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