You are here

wsdata_solr_facet_processor.inc in Web Service Data 7

File

modules/wsdata_solr/wsdata_solr_facet_processor.inc
View source
<?php

/**
 * WSData Processor for Solr Facets
 *  Get the names and counts of the facets returned
 */
class wsdata_solr_facet_processor extends WsData {
  public function parse($data) {
    if (!isset($data) || empty($data)) {
      return;
    }
    $data = trim($data);
    $data = json_decode($data, TRUE);
    return $data['facet_counts'];
  }
  public function accepts() {
    return array(
      'json',
    );
  }

}

Classes

Namesort descending Description
wsdata_solr_facet_processor WSData Processor for Solr Facets Get the names and counts of the facets returned