public StringBase::setPlurals($plurals)
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 104
Class
- StringBase
- Defines the locale string base class.
Namespace
Drupal\locale
Code
1 2 3 4 | public function setPlurals( $plurals ) { $this ->setString(implode(LOCALE_PLURAL_DELIMITER, $plurals )); return $this ; } |
Please login to continue.