You are here

public function TranslationsStream::getDirectoryPath in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/locale/src/StreamWrapper/TranslationsStream.php \Drupal\locale\StreamWrapper\TranslationsStream::getDirectoryPath()

Gets the path that the wrapper is responsible for.

@todo Review this method name in D8 per https://www.drupal.org/node/701358.

Return value

string String specifying the path.

Overrides LocalStream::getDirectoryPath

File

core/modules/locale/src/StreamWrapper/TranslationsStream.php, line 39

Class

TranslationsStream
Defines a Drupal translations (translations://) stream wrapper class.

Namespace

Drupal\locale\StreamWrapper

Code

public function getDirectoryPath() {
  return \Drupal::config('locale.settings')
    ->get('translation.path');
}