ILIAS  release_8 Revision v8.24
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}
Class ActiveRecord.
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...