You are here

public function PoItem::setContext in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Component/Gettext/PoItem.php \Drupal\Component\Gettext\PoItem::setContext()

Set the context this translation belongs to.

Parameters

string $context:

1 call to PoItem::setContext()
PoItem::setFromArray in core/lib/Drupal/Component/Gettext/PoItem.php
Create the PoItem from a structured array.

File

core/lib/Drupal/Component/Gettext/PoItem.php, line 99

Class

PoItem
PoItem handles one translation.

Namespace

Drupal\Component\Gettext

Code

public function setContext($context) {
  $this->context = $context;
}