ILIAS  release_8 Revision v8.19-1-g4e8f2f9140c
All Data Structures Namespaces Files Functions Variables Modules Pages
EmployeeTalkSerieSettingsDto.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
22 
27 {
29  private int $objectId = -1;
31  private bool $lockedEditing = false;
32 
38  public function __construct(
39  int $objectId,
40  bool $lockedEditing
41  ) {
42  $this->objectId = $objectId;
43  $this->lockedEditing = $lockedEditing;
44  }
45 
49  public function getObjectId(): int
50  {
51  return $this->objectId;
52  }
53 
58  public function setObjectId(int $objectId): EmployeeTalkSerieSettingsDto
59  {
60  $this->objectId = $objectId;
61  return $this;
62  }
63 
67  public function isLockedEditing(): bool
68  {
69  return $this->lockedEditing;
70  }
71 
76  public function setLockedEditing(bool $lockedEditing): EmployeeTalkSerieSettingsDto
77  {
78  $this->lockedEditing = $lockedEditing;
79  return $this;
80  }
81 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(int $objectId, bool $lockedEditing)
EmployeeTalk constructor.