ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilBiblLibrary.php
Go to the documentation of this file.
1 <?php
2 
25 {
26  public const TABLE_NAME = 'il_bibl_settings';
27 
28 
29  public static function returnDbTableName(): string
30  {
31  return self::TABLE_NAME;
32  }
33 
34 
35  #[\Override]
36  public function getConnectorContainerName(): string
37  {
38  return self::TABLE_NAME;
39  }
40 
41 
52  protected ?int $id = null;
60  protected ?string $name = null;
68  protected ?string $url = null;
75  protected ?string $img = null;
82  protected ?bool $show_in_list = null;
83 
84 
85  public function getId(): ?int
86  {
87  return $this->id;
88  }
89 
90 
91  public function setId(int $id): void
92  {
93  $this->id = $id;
94  }
95 
96 
97  public function getImg(): ?string
98  {
99  return $this->img;
100  }
101 
102 
103  public function setImg(string $img): void
104  {
105  $this->img = $img;
106  }
107 
108 
109  public function getName(): string
110  {
111  return $this->name;
112  }
113 
114 
115  public function setName(string $name): void
116  {
117  $this->name = $name;
118  }
119 
120 
121  public function isShownInList(): bool
122  {
123  return $this->show_in_list;
124  }
125 
126 
127  public function setShowInList(bool $show_in_list): void
128  {
129  $this->show_in_list = $show_in_list;
130  }
131 
132 
133  public function getUrl(): string
134  {
135  return $this->url;
136  }
137 
138 
139  public function setUrl(string $url): void
140  {
141  $this->url = $url;
142  }
143 }
bool $show_in_list
true integer 1
static returnDbTableName()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
string $name
true text 50 true
string $img
true text 128
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
int $id
true integer 4 true true true true
setName(string $name)
setShowInList(bool $show_in_list)
string $url
true text 128 true