function PluralFormula::loadFormulae
Same name in other branches
- 8.9.x core/modules/locale/src/PluralFormula.php \Drupal\locale\PluralFormula::loadFormulae()
- 10 core/modules/locale/src/PluralFormula.php \Drupal\locale\PluralFormula::loadFormulae()
- 11.x core/modules/locale/src/PluralFormula.php \Drupal\locale\PluralFormula::loadFormulae()
Loads the formulae and stores them on the PluralFormula object if not set.
Return value
array
3 calls to PluralFormula::loadFormulae()
- PluralFormula::getFormula in core/
modules/ locale/ src/ PluralFormula.php - Gets the plural formula for a langcode.
- PluralFormula::getNumberOfPlurals in core/
modules/ locale/ src/ PluralFormula.php - Returns the number of plurals supported by a given language.
- PluralFormula::setPluralFormula in core/
modules/ locale/ src/ PluralFormula.php
File
-
core/
modules/ locale/ src/ PluralFormula.php, line 99
Class
- PluralFormula
- Manages the storage of plural formula per language in state.
Namespace
Drupal\localeCode
protected function loadFormulae() {
if (!isset($this->formulae)) {
$this->formulae = $this->state
->get('locale.translation.formulae', []);
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.