public StringBase::addLocation($type, $name)
Adds a location for this string.
Parameters
string $type: Location type that may be any arbitrary string. Types used in Drupal core are: 'javascript', 'path', 'code', 'configuration'.
string $name: Location name. Drupal path in case of online discovered translations, file path in case of imported strings, configuration name for strings that come from configuration, etc.
Return value
$this
Overrides StringInterface::addLocation
File
- core/modules/locale/src/StringBase.php, line 165
Class
- StringBase
- Defines the locale string base class.
Namespace
Drupal\locale
Code
1 2 3 4 | public function addLocation( $type , $name ) { $this ->locations[ $type ][ $name ] = TRUE; return $this ; } |
Please login to continue.