function taxonomy_manager_autocomplete_load in Taxonomy Manager 7
Same name and namespace in other branches
- 6.2 taxonomy_manager.admin.inc \taxonomy_manager_autocomplete_load()
- 6 taxonomy_manager.admin.inc \taxonomy_manager_autocomplete_load()
Retrieve a pipe delimited string of autocomplete suggestions (+synonyms)
1 string reference to 'taxonomy_manager_autocomplete_load'
- taxonomy_manager_menu in ./
taxonomy_manager.module - Implements hook_menu().
File
- ./
taxonomy_manager.admin.inc, line 2805
Code
function taxonomy_manager_autocomplete_load($vid, $tags_typed = '') {
// If the request has a '/' in the search text, then the menu system will have
// split it into multiple arguments, recover the intended $tags_typed.
$args = func_get_args();
// Shift off the $field_name argument.
array_shift($args);
$tags_typed = implode('/', $args);
// The user enters a comma-separated list of tags. We only autocomplete the last tag.
$tags_typed = drupal_explode_tags($tags_typed);
$last_string = drupal_strtolower(array_pop($tags_typed));
$matches = array();
if ($last_string != '') {
$query = db_select('taxonomy_term_data', 't');
$query
->addTag('translatable');
$query
->addTag('term_access');
// Do not select already entered terms.
if (!empty($tags_typed)) {
$query
->condition('t.name', $tags_typed, 'NOT IN');
}
// Select rows that match by term name.
$tags_return = $query
->fields('t', array(
'tid',
'name',
))
->condition('t.vid', $vid)
->condition('t.name', '%' . db_like($last_string) . '%', 'LIKE')
->range(0, 30)
->execute()
->fetchAllKeyed();
$prefix = count($tags_typed) ? drupal_implode_tags($tags_typed) . ', ' : '';
$matches = array();
foreach ($tags_return as $tid => $name) {
$n = $name;
// Term names containing commas or quotes must be wrapped in quotes.
if (strpos($name, ',') !== FALSE || strpos($name, '"') !== FALSE) {
$n = '"' . str_replace('"', '""', $name) . '"';
}
// Add term name to list of matches.
$matches[$prefix . $n] = check_plain($name);
}
}
drupal_json_output($matches);
}