function StringBase::getValues

Same name and namespace in other branches
  1. 9 core/modules/locale/src/StringBase.php \Drupal\locale\StringBase::getValues()
  2. 10 core/modules/locale/src/StringBase.php \Drupal\locale\StringBase::getValues()
  3. 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\locale

Code

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.