Skip to content

Instantly share code, notes, and snippets.

@bleeDev
bleeDev / gist:1223366
Last active September 27, 2015 06:08
Extending Facet API for Mime Type 2
<?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();
@bleeDev
bleeDev / gist:1223270
Last active September 27, 2015 06:08
Extending Facet API for Mime Type 1
<?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',