This file contains hidden or 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
<?php | |
function MYMODULE_map_mime(array $values) { | |
$map = $values; | |
$mimes = array( | |
'application/pdf'=>'PDF', | |
'application/msword'=>'Word Document', | |
'application/vnd.ms-excel'=>'Excel', | |
); | |
$map = array(); |
This file contains hidden or 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
<?php | |
function MYMODULE_facetapi_facet_info($searcher_info) { | |
$facets = array(); | |
$facets['mime'] = array( | |
'label' => t('Mime Type'), | |
'description' => t('Filter by mime type.'), | |
//indexed field from solr | |
'field' => 'ss_filemime', | |
'map callback' => 'MYMODULE_map_mime', |
NewerOlder