You are here

fac.api.php in Fast Autocomplete 7

This file contains the API of the Fast Autocomplete module.

File

fac.api.php
View source
<?php

/**
 * @file
 * This file contains the API of the Fast Autocomplete module.
 */

/**
 * Implements hook_fac_service_info().
 *
 * Use this hook to add search service backends.
 * See fac_fac_service_info for more information.
 */
function hook_fac_service_info() {
}

/**
 * Implements hook_fac_basic_title_search_query_alter().
 *
 * Use this hook to alter the query that is used to get the results using the
 * Basic title search backend service.
 */
function hook_fac_basic_title_search_query_alter(&$query) {
}

/**
 * Implements hook_fac_search_api_query_alter().
 *
 * Use this hook to alter the query that is used to get the results using the
 * Search API backend service.
 */
function hook_fac_search_api_query_alter(&$query) {
}

/**
 * Implements hook_fac_empty_result_alter().
 *
 * Use this hook to alter the empty result HTML. You can set the empty result
 * in the module settings form, but you can use this hook if you want to use a
 * quick links menu for instance.
 */
function hook_fac_empty_result_alter($empty_result) {
}