You are here

public function PluralFormula::setPluralFormula in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/locale/src/PluralFormula.php \Drupal\locale\PluralFormula::setPluralFormula()

Parameters

string $langcode: The language code to get the formula for.

int $plural_count: The number of plural forms.

array $formula: An array of formulae.

Return value

self The PluralFormula object.

Overrides PluralFormulaInterface::setPluralFormula

File

core/modules/locale/src/PluralFormula.php, line 60
Contains \Drupal\locale\PluralFormula.

Class

PluralFormula
Manages the storage of plural formula per language in state.

Namespace

Drupal\locale

Code

public function setPluralFormula($langcode, $plural_count, array $formula) {

  // Ensure that the formulae are loaded.
  $this
    ->loadFormulae();
  $this->formulae[$langcode] = [
    'plurals' => $plural_count,
    'formula' => $formula,
  ];
  $this->state
    ->set('locale.translation.formulae', $this->formulae);
  return $this;
}