ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilBiblField.php
Go to the documentation of this file.
1 <?php
23 {
24  public const TABLE_NAME = 'il_bibl_field';
25 
26  public static function returnDbTableName(): string
27  {
28  return self::TABLE_NAME;
29  }
30 
31  #[\Override]
32  public function getConnectorContainerName(): string
33  {
34  return self::TABLE_NAME;
35  }
36 
46  protected ?int $id = null;
53  protected ?string $identifier = null;
60  protected int $data_type = 0;
66  protected ?int $position = null;
73  protected bool $is_standard_field = true;
74 
75  public function getId(): ?int
76  {
77  return $this->id;
78  }
79 
80  public function setId(int $id): void
81  {
82  $this->id = $id;
83  }
84 
85  public function getIdentifier(): string
86  {
87  return trim((string) $this->identifier);
88  }
89 
90  public function setIdentifier(string $identifier): void
91  {
92  $this->identifier = trim($identifier);
93  }
94 
95  public function getPosition(): ?int
96  {
97  return $this->position;
98  }
99 
100  public function setPosition(int $position): void
101  {
102  $this->position = $position;
103  }
104 
105  public function isStandardField(): bool
106  {
108  }
109 
110  public function setIsStandardField(bool $is_standard_field): void
111  {
112  $this->is_standard_field = $is_standard_field;
113  }
114 
115  public function getDataType(): int
116  {
117  return $this->data_type;
118  }
119 
120  public function setDataType(int $data_type): void
121  {
122  $this->data_type = $data_type;
123  }
124 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setPosition(int $position)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static returnDbTableName()
int $position
true integer 3
bool $is_standard_field
true integer 1 true
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setDataType(int $data_type)
setIdentifier(string $identifier)
string $identifier
true text 50 true
setIsStandardField(bool $is_standard_field)
int $id
true integer 4 true true true true
int $data_type
true integer 1 true