You are here

public function ILT::getPlace in Opigno Instructor-led Trainings 8

Same name and namespace in other branches
  1. 3.x src/Entity/ILT.php \Drupal\opigno_ilt\Entity\ILT::getPlace()

Returns the ILT place.

Return value

string|null The ILT place, or NULL in case place field has not been set on the entity.

Overrides ILTInterface::getPlace

File

src/Entity/ILT.php, line 143

Class

ILT
Defines the ILT entity.

Namespace

Drupal\opigno_ilt\Entity

Code

public function getPlace() {
  return $this
    ->get('place')->value;
}