You are here

function support_pm_support_solr_info in Support Ticketing System 6

Implementation of hook_support_solr_info().

File

support_pm/support_pm.module, line 1077
Support Project Management. @author Jeremy Andrews <jeremy@tag1consulting.com> @package Support

Code

function support_pm_support_solr_info() {
  return array(
    'support_pm_project' => array(
      'facet' => array(
        'info' => t('Support: Filter by project'),
        'facet_field' => 'is_support_project',
      ),
      'filter_by' => t('Filter by Support Project'),
      'facet_callback' => '_support_pm_project_name',
      'block' => array(
        'info' => t('Support: Project'),
        'cache' => BLOCK_CACHE_PER_PAGE,
      ),
    ),
  );
}