function Views::t

Same name and namespace in other branches
  1. 8.9.x core/modules/views/src/Views.php \Drupal\views\Views::t()
  2. 10 core/modules/views/src/Views.php \Drupal\views\Views::t()
  3. 11.x 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.

1 call to Views::t()
Views::getHandlerTypes in core/modules/views/src/Views.php
Provide a list of views handler types used in a view.

File

core/modules/views/src/Views.php, line 532

Class

Views
Static service container wrapper for views.

Namespace

Drupal\views

Code

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);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.