function _coder_i18n_drupal_set_title_without_t in Coder 6.2
Same name and namespace in other branches
- 6 includes/coder_i18n.inc \_coder_i18n_drupal_set_title_without_t()
1 string reference to '_coder_i18n_drupal_set_title_without_t'
- coder_i18n_reviews in includes/
coder_i18n.inc - Implementation of hook_reviews().
File
- includes/
coder_i18n.inc, line 275 - This include file implements coder functionality to check for Internationalization issues.
Code
function _coder_i18n_drupal_set_title_without_t() {
return array(
'#warning' => t('The $title argument to !drupal_set_title() should be enclosed within !t() so that it is translatable.', array(
'!drupal_set_title' => theme('drupalapi', 'drupal_set_title'),
'!t' => theme('drupalapi', 't'),
)),
);
}