You are here

function _search_autocomplete_get_items in Search Autocomplete 6.4

Same name and namespace in other branches
  1. 6.2 search_autocomplete.form.treelist.inc \_search_autocomplete_get_items()
  2. 7.4 search_autocomplete.form.treelist.inc \_search_autocomplete_get_items()
  3. 7.2 search_autocomplete.form.treelist.inc \_search_autocomplete_get_items()
  4. 7.3 search_autocomplete.form.treelist.inc \_search_autocomplete_get_items()

Helper function: get the forms from database and render them hierarchically return the items sorted

1 call to _search_autocomplete_get_items()
search_autocomplete_treelist_form in ./search_autocomplete.form.treelist.inc
Menu Callback: create the form to list the searchforms

File

./search_autocomplete.form.treelist.inc, line 149
Search Autocomplete Display the list of form to autocomplete and themis it as a draggable table.

Code

function _search_autocomplete_get_items() {
  $items = array();

  // get data in database and fetch it
  $result = db_query('SELECT * FROM {search_autocomplete_forms} ORDER BY weight');
  while ($item = db_fetch_array($result)) {
    $items[] = $item;
  }

  // order the list
  return _search_autocomplete_get_ordered_list(0, $items);
}