You are here

public function StringBase::setPlurals in Drupal 8

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

Parameters

array $plurals: Array of strings with plural variants.

Return value

$this

Overrides StringInterface::setPlurals

File

core/modules/locale/src/StringBase.php, line 106

Class

StringBase
Defines the locale string base class.

Namespace

Drupal\locale

Code

public function setPlurals($plurals) {
  $this
    ->setString(implode(PoItem::DELIMITER, $plurals));
  return $this;
}