public function StringBase::setPlurals in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/locale/src/StringBase.php \Drupal\locale\StringBase::setPlurals()
Sets this string using array of plural values.
Serializes plural variants in one string glued by LOCALE_PLURAL_DELIMITER.
Parameters
array $plurals: Array of strings with plural variants.
Return value
$this
Overrides StringInterface::setPlurals
File
- core/
modules/ locale/ src/ StringBase.php, line 109 - Contains \Drupal\locale\StringBase.
Class
- StringBase
- Defines the locale string base class.
Namespace
Drupal\localeCode
public function setPlurals($plurals) {
$this
->setString(implode(LOCALE_PLURAL_DELIMITER, $plurals));
return $this;
}