You are here

function facetapi_test_current_search_default_items in Facet API 7.2

Same name and namespace in other branches
  1. 7 tests/facetapi_test.current_search.inc \facetapi_test_current_search_default_items()

Implements hook_current_search_default_items().

File

tests/facetapi_test.current_search.inc, line 11
Current Search default hooks.

Code

function facetapi_test_current_search_default_items() {
  $items = array();
  $item = new stdClass();
  $item->disabled = FALSE;
  $item->api_version = 1;
  $item->name = 'second';
  $item->label = 'Second';
  $item->settings = array(
    'items' => array(
      'results' => array(
        'id' => 'text',
        'label' => 'Results',
        'text' => 'Second current search block',
        'plural' => 0,
        'text_plural' => '',
        'plural_condition' => 'facetapi_results:result-count',
        'wrapper' => 1,
        'element' => 'h3',
        'css' => 0,
        'classes' => '',
        'weight' => '-50',
      ),
    ),
    'advanced' => array(
      'empty_searches' => 0,
    ),
  );
  $items[$item->name] = $item;
  return $items;
}