function StringTranslationTrait::formatPlural
Same name in other branches
- 9 core/lib/Drupal/Core/StringTranslation/StringTranslationTrait.php \Drupal\Core\StringTranslation\StringTranslationTrait::formatPlural()
- 10 core/lib/Drupal/Core/StringTranslation/StringTranslationTrait.php \Drupal\Core\StringTranslation\StringTranslationTrait::formatPlural()
- 11.x core/lib/Drupal/Core/StringTranslation/StringTranslationTrait.php \Drupal\Core\StringTranslation\StringTranslationTrait::formatPlural()
Formats a string containing a count of items.
See also
\Drupal\Core\StringTranslation\TranslationInterface::formatPlural()
52 calls to StringTranslationTrait::formatPlural()
- AddFormBase::buildForm in core/
modules/ media_library/ src/ Form/ AddFormBase.php - Form constructor.
- AggregatorController::adminOverview in core/
modules/ aggregator/ src/ Controller/ AggregatorController.php - Displays the aggregator administration page.
- BlockContentDeleteForm::getDescription in core/
modules/ block_content/ src/ Form/ BlockContentDeleteForm.php - Returns additional text to display as a description.
- BlockContentTypeDeleteForm::buildForm in core/
modules/ block_content/ src/ Form/ BlockContentTypeDeleteForm.php - Form constructor.
- CommentLinkBuilder::buildCommentedEntityLinks in core/
modules/ comment/ src/ CommentLinkBuilder.php - Builds links for the given entity.
File
-
core/
lib/ Drupal/ Core/ StringTranslation/ StringTranslationTrait.php, line 79
Class
- StringTranslationTrait
- Wrapper methods for \Drupal\Core\StringTranslation\TranslationInterface.
Namespace
Drupal\Core\StringTranslationCode
protected function formatPlural($count, $singular, $plural, array $args = [], array $options = []) {
return new PluralTranslatableMarkup($count, $singular, $plural, $args, $options, $this->getStringTranslation());
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.