function locale_string_search in Drupal 4
Same name and namespace in other branches
- 5 modules/locale/locale.module \locale_string_search()
Page handler for the string search.
1 string reference to 'locale_string_search'
- locale_menu in modules/
locale.module - Implementation of hook_menu().
File
- modules/
locale.module, line 394 - Enables administrators to manage the site interface languages.
Code
function locale_string_search() {
include_once './includes/locale.inc';
$output = _locale_string_seek();
$output .= _locale_string_seek_form();
return $output;
}