public function ILT::setPlace in Opigno Instructor-led Trainings 8
Same name and namespace in other branches
- 3.x src/Entity/ILT.php \Drupal\opigno_ilt\Entity\ILT::setPlace()
Sets the ILT place.
Parameters
string $place: The ILT place.
Return value
$this
Overrides ILTInterface::setPlace
File
- src/
Entity/ ILT.php, line 150
Class
- ILT
- Defines the ILT entity.
Namespace
Drupal\opigno_ilt\EntityCode
public function setPlace($place) {
$this
->set('place', $place);
return $this;
}