function get_t in Drupal 7
Same name and namespace in other branches
- 5 includes/bootstrap.inc \get_t()
- 6 includes/bootstrap.inc \get_t()
Returns the name of the proper localization function.
get_t() exists to support localization for code that might run during the installation phase, when some elements of the system might not have loaded.
This would include implementations of hook_install(), which could run during the Drupal installation phase, and might also be run during non-installation time, such as while installing the module from the module administration page.
Example usage:
$t = get_t();
$translated = $t('translate this');
Use t() if your code will never run during the Drupal installation phase. Use st() if your code will only run during installation and never any other time. Use get_t() if your code could run in either circumstance.
See also
t()
st()
Related topics
19 calls to get_t()
- batch_process in includes/
form.inc - Processes the batch.
- batch_set in includes/
form.inc - Adds a new batch.
- form_pre_render_conditional_form_element in includes/
form.inc - Adds form element theming to an element if its title or description is set.
- hook_requirements in modules/
system/ system.api.php - Check installation requirements and do status reporting.
- menu_install in modules/
menu/ menu.install - Implements hook_install().
File
- includes/
bootstrap.inc, line 2959 - Functions that need to be loaded on every Drupal request.
Code
function get_t() {
static $t;
// This is not converted to drupal_static because there is no point in
// resetting this as it can not change in the course of a request.
if (!isset($t)) {
$t = drupal_installation_attempted() ? 'st' : 't';
}
return $t;
}