public function LocaleConfigManager::getStringNames in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/locale/src/LocaleConfigManager.php \Drupal\locale\LocaleConfigManager::getStringNames()
Gets configuration names associated with strings.
Parameters
array $lids: Array with string identifiers.
Return value
array Array of configuration object names.
File
- core/
modules/ locale/ src/ LocaleConfigManager.php, line 317 - Contains \Drupal\locale\LocaleConfigManager.
Class
- LocaleConfigManager
- Manages configuration supported in part by interface translation.
Namespace
Drupal\localeCode
public function getStringNames(array $lids) {
$names = array();
$locations = $this->localeStorage
->getLocations(array(
'sid' => $lids,
'type' => 'configuration',
));
foreach ($locations as $location) {
$names[$location->name] = $location->name;
}
return $names;
}