facetapi_test.current_search.inc in Facet API 7.2
Same filename and directory in other branches
Current Search default hooks.
File
tests/facetapi_test.current_search.incView source
<?php
/**
* @file
* Current Search default hooks.
*/
/**
* Implements hook_current_search_default_items().
*/
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;
}
Functions
Name | Description |
---|---|
facetapi_test_current_search_default_items | Implements hook_current_search_default_items(). |