function dt
8.0.x output.inc | dt($string, $args = array()) |
6.x output.inc | dt($string, $args = array()) |
7.x output.inc | dt($string, $args = array()) |
3.x drush.inc | dt($string, $args = array()) |
4.x drush.inc | dt($string, $args = array()) |
5.x output.inc | dt($string, $args = array()) |
master output.inc | dt($string, $args = array()) |
Rudimentary replacement for Drupal API t() function.
Parameters
string: String to process, possibly with replacement item.
array: An associative array of replacement items.
Return value
The processed string.
See also
t()
120 calls to dt()
- core_drush_command in commands/
core/ core.drush.inc - Implementation of hook_drush_command().
- core_drush_help in commands/
core/ core.drush.inc - Implementation of hook_drush_help().
- core_watchdog_format_result in commands/
core/ watchdog.drush.inc - Format a watchdog database row.
- core_watchdog_query in commands/
core/ watchdog.drush.inc - Build a WHERE snippet based on given parameters.
- drush_backend_fork in includes/
backend.inc - A small utility function to call a drush command in the background.
File
- includes/
drush.inc, line 612 - The drush API implementation and helpers.
Code
function dt($string, $args = array()) {
if (function_exists('t')) {
return t($string, $args);
}
else {
if (!empty($args)) {
return strtr($string, $args);
}
else {
return $string;
}
}
}