uchicago-library / vufind

A library resource discovery portal designed and developed for libraries by libraries
GNU General Public License v2.0
1 stars 0 forks source link

Add series to results view and volume number to titles #156

Closed bbusenius closed 2 years ago

bbusenius commented 2 years ago

Fixes issue #155

Changes in this request

See Bugzilla 26619

bbusenius commented 2 years ago

The entire default SolrMarc.php is just this:

namespace VuFind\RecordDriver;

class SolrMarc extends SolrDefault
{
    use Feature\IlsAwareTrait;
    use Feature\MarcReaderTrait;
    use Feature\MarcAdvancedTrait;
}

In reality there are different pieces of functionality that come from all those other files. The nice thing about how it works is that we only have to override SolrMarc.php and then we can override anything in any of those files.