function StringBase::getValues
Same name in other branches
- 9 core/modules/locale/src/StringBase.php \Drupal\locale\StringBase::getValues()
- 8.9.x core/modules/locale/src/StringBase.php \Drupal\locale\StringBase::getValues()
- 11.x core/modules/locale/src/StringBase.php \Drupal\locale\StringBase::getValues()
Overrides StringInterface::getValues
File
-
core/
modules/ locale/ src/ StringBase.php, line 141
Class
- StringBase
- Defines the locale string base class.
Namespace
Drupal\localeCode
public function getValues(array $fields) {
$values = [];
foreach ($fields as $field) {
if (isset($this->{$field})) {
$values[$field] = $this->{$field};
}
}
return $values;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.