You are here

function search_api_live_results_element_info in Search API live results 7

Implements hook_element_info().

File

./search_api_live_results.module, line 173

Code

function search_api_live_results_element_info() {
  return array(
    'live_results_search' => array(
      '#input' => TRUE,
      '#size' => 60,
      '#maxlength' => 128,
      '#autocomplete_path' => FALSE,
      '#process' => array(
        'ajax_process_form',
      ),
      '#theme' => 'live_results_search',
    ),
  );
}