ILIAS  release_8 Revision v8.19-1-g4e8f2f9140c
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilBiblEntry.php
Go to the documentation of this file.
1 <?php
24 {
25  public const TABLE_NAME = 'il_bibl_entry';
26 
27  public static function returnDbTableName(): string
28  {
29  return self::TABLE_NAME;
30  }
31 
32  public function getConnectorContainerName(): string
33  {
34  return self::TABLE_NAME;
35  }
36 
46  protected ?int $id = null;
52  protected ?int $data_id = null;
59  protected ?string $type = null;
60 
61  protected string $overview = '';
62 
63  public function getId(): ?int
64  {
65  return $this->id;
66  }
67 
68  public function setId(int $id): void
69  {
70  $this->id = $id;
71  }
72 
73  public function getDataId(): int
74  {
75  return $this->data_id;
76  }
77 
78  public function setDataId(int $data_id): void
79  {
80  $this->data_id = $data_id;
81  }
82 
83  public function getType(): string
84  {
85  return $this->type;
86  }
87 
88  public function setType(string $type): void
89  {
90  $this->type = $type;
91  }
92 
93  public function getOverview(): string
94  {
95  return $this->overview;
96  }
97 }
setType(string $type)
int $id
true integer 4 true true true true
string $type
true text 50 true
static returnDbTableName()
int $data_id
true integer 4
setDataId(int $data_id)
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...