Permalink
Cannot retrieve contributors at this time
31 lines (30 sloc)
921 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Any changes made here will be lost! | |
| # | |
| # Copy this file to: | |
| # archives/[archiveid]/cfg/cfg.d/ | |
| # | |
| # And then make any changes. | |
| $c->{datasets}->{eprint}->{search}->{staff} = | |
| { | |
| search_fields => [ | |
| { meta_fields => [qw( eprintid )] }, | |
| { meta_fields => [qw( userid.username )] }, | |
| { meta_fields => [qw( userid.name )] }, | |
| { meta_fields => [qw( eprint_status )], default=>"archive buffer" }, | |
| { meta_fields => [qw( dir )] }, | |
| @{$c->{search}{advanced}{search_fields}}, | |
| ], | |
| preamble_phrase => "Plugin/Screen/Staff/EPrintSearch:description", | |
| title_phrase => "Plugin/Screen/Staff/EPrintSearch:title", | |
| citation => "result", | |
| page_size => 20, | |
| order_methods => { | |
| "byyear" => "-date/creators_name/title", | |
| "byyearoldest" => "date/creators_name/title", | |
| "byname" => "creators_name/-date/title", | |
| "bytitle" => "title/creators_name/-date" | |
| }, | |
| default_order => "byyear", | |
| show_zero_results => 1, | |
| staff => 1, | |
| }; |