ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator 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  #[\Override]
33  public function getConnectorContainerName(): string
34  {
35  return self::TABLE_NAME;
36  }
37 
47  protected ?int $id = null;
53  protected ?int $data_id = null;
60  protected ?string $type = null;
61 
62  protected string $overview = '';
63 
64  public function getId(): ?int
65  {
66  return $this->id;
67  }
68 
69  public function setId(int $id): void
70  {
71  $this->id = $id;
72  }
73 
74  public function getDataId(): int
75  {
76  return $this->data_id;
77  }
78 
79  public function setDataId(int $data_id): void
80  {
81  $this->data_id = $data_id;
82  }
83 
84  public function getType(): string
85  {
86  return $this->type;
87  }
88 
89  public function setType(string $type): void
90  {
91  $this->type = $type;
92  }
93 
94  public function getOverview(): string
95  {
96  return $this->overview;
97  }
98 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setType(string $type)
int $id
true integer 4 true true true true
string $type
true text 50 true
static returnDbTableName()
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
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...