public function PluralTranslation::__construct

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'];
  }
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Annotation!PluralTranslation.php/function/PluralTranslation::__construct/8.1.x