ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
EmployeeTalkSerieSettings.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
22 
23 use ActiveRecord;
24 
29 {
31  protected string $connector_container_name = 'etal_serie';
32 
41  protected ?int $id = -1;
50  protected int $editing_locked = 0;
51 
52 
56  public function getId(): int
57  {
58  return intval($this->id);
59  }
60 
65  public function setId(int $id): EmployeeTalkSerieSettings
66  {
67  $this->id = $id;
68  return $this;
69  }
70 
74  public function getEditingLocked(): int
75  {
76  return $this->editing_locked;
77  }
78 
83  public function setEditingLocked(int $editing_locked): EmployeeTalkSerieSettings
84  {
85  $this->editing_locked = $editing_locked;
86  return $this;
87  }
88 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...