function 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\localeCode
public function setPlurals($plurals) {
  $this->setString(implode(PoItem::DELIMITER, $plurals));
  return $this;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.