ILIAS  release_8 Revision v8.24
EmployeeTalkSerieSettings.php
Go to the documentation of this file.
1<?php
2
3declare(strict_types=1);
4
22
23use 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 {
77 }
78
84 {
85 $this->editing_locked = $editing_locked;
86 return $this;
87 }
88}
Class ActiveRecord.
int $editing_locked
@con_has_field true @con_fieldtype integer @con_length 1 @con_is_notnull true
int $id
@con_has_field true @con_is_primary true @con_fieldtype integer @con_length 8 @con_is_notnull true
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...