You are here

public function Subscriber::getLangcode in Simplenews 8

Same name and namespace in other branches
  1. 8.2 src/Entity/Subscriber.php \Drupal\simplenews\Entity\Subscriber::getLangcode()
  2. 3.x src/Entity/Subscriber.php \Drupal\simplenews\Entity\Subscriber::getLangcode()

Returns the lang code.

Return value

string The subscribers lang code.

Overrides SubscriberInterface::getLangcode

File

src/Entity/Subscriber.php, line 137

Class

Subscriber
Defines the simplenews subscriber entity.

Namespace

Drupal\simplenews\Entity

Code

public function getLangcode() {
  return $this
    ->get('langcode')->value;
}