public PluralTranslation::__construct(array $values)
Constructs a new class instance.
Parameters
array $values: An associative array with the following keys:
- singular: The string for the singular case.
- plural: The string for the plural case.
- context: The context the source strings belong to.
Throws
\InvalidArgumentException Thrown when the keys 'singular' or 'plural' are missing from the $values array.
File
- core/lib/Drupal/Core/Annotation/PluralTranslation.php, line 79
Class
- PluralTranslation
- Defines an annotation object for strings that require plural forms.
Namespace
Drupal\Core\Annotation
Code
public function __construct(array $values) { if (!isset($values['singular'])) { throw new \InvalidArgumentException('Missing "singular" value in the PluralTranslation annotation'); } if (!isset($values['plural'])) { throw new \InvalidArgumentException('Missing "plural" value in the PluralTranslation annotation'); } $this->singular = $values['singular']; $this->plural = $values['plural']; if (isset($values['context'])) { $this->context = $values['context']; } }
Please login to continue.