ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables 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  public function getConnectorContainerName(): string
36  {
37  return self::TABLE_NAME;
38  }
39 
40 
51  protected ?int $id = null;
59  protected ?string $name = null;
67  protected ?string $url = null;
74  protected ?string $img = null;
81  protected ?bool $show_in_list = null;
82 
83 
84  public function getId(): ?int
85  {
86  return $this->id;
87  }
88 
89 
90  public function setId(int $id): void
91  {
92  $this->id = $id;
93  }
94 
95 
96  public function getImg(): ?string
97  {
98  return $this->img;
99  }
100 
101 
102  public function setImg(string $img): void
103  {
104  $this->img = $img;
105  }
106 
107 
108  public function getName(): string
109  {
110  return $this->name;
111  }
112 
113 
114  public function setName(string $name): void
115  {
116  $this->name = $name;
117  }
118 
119 
120  public function isShownInList(): bool
121  {
122  return $this->show_in_list;
123  }
124 
125 
126  public function setShowInList(bool $show_in_list): void
127  {
128  $this->show_in_list = $show_in_list;
129  }
130 
131 
132  public function getUrl(): string
133  {
134  return $this->url;
135  }
136 
137 
138  public function setUrl(string $url): void
139  {
140  $this->url = $url;
141  }
142 }
bool $show_in_list
true integer 1
static returnDbTableName()
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...
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