protected static function Views::t in Drupal 10
Same name and namespace in other branches
- 8 core/modules/views/src/Views.php \Drupal\views\Views::t()
- 9 core/modules/views/src/Views.php \Drupal\views\Views::t()
Translates a string to the current language or to a given language.
See the t() documentation for details.
File
- core/
modules/ views/ src/ Views.php, line 528
Class
- Views
- Static service container wrapper for views.
Namespace
Drupal\viewsCode
protected static function t($string, array $args = [], array $options = []) {
if (empty(static::$translationManager)) {
static::$translationManager = \Drupal::service('string_translation');
}
return static::$translationManager
->translate($string, $args, $options);
}