ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
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}
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...
setName(string $name)
bool $show_in_list
@con_has_field true @con_fieldtype integer @con_length 1
static returnDbTableName()
string $img
@con_has_field true @con_fieldtype text @con_length 128
setShowInList(bool $show_in_list)
getConnectorContainerName()
@description Return the Name of your Connector Table
string $url
@con_has_field true @con_fieldtype text @con_length 128 @con_is_notnull true
string $name
@con_has_field true @con_fieldtype text @con_length 50 @con_is_notnull true
int $id
@con_has_field true @con_fieldtype integer @con_length 4 @con_is_notnull true @con_is_primary true @c...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...