ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
class.ilBiblLibrary.php
Go to the documentation of this file.
1<?php
2
9{
10 const TABLE_NAME = 'il_bibl_settings';
11
12
16 public static function returnDbTableName()
17 {
18 return self::TABLE_NAME;
19 }
20
21
25 public function getConnectorContainerName()
26 {
27 return self::TABLE_NAME;
28 }
29
30
42 protected $id;
51 protected $name;
60 protected $url;
68 protected $img;
76 protected $show_in_list;
77
78
82 public function getId()
83 {
84 return $this->id;
85 }
86
87
91 public function setId($id)
92 {
93 $this->id = $id;
94 }
95
96
100 public function getImg()
101 {
102 return $this->img;
103 }
104
105
109 public function setImg($img)
110 {
111 $this->img = $img;
112 }
113
114
118 public function getName()
119 {
120 return $this->name;
121 }
122
123
127 public function setName($name)
128 {
129 $this->name = $name;
130 }
131
132
136 public function getShowInList()
137 {
138 return $this->show_in_list;
139 }
140
141
146 {
147 $this->show_in_list = $show_in_list;
148 }
149
150
154 public function getUrl()
155 {
156 return $this->url;
157 }
158
159
163 public function setUrl($url)
164 {
165 $this->url = $url;
166 }
167}
Class ActiveRecord.
An exception for terminatinating execution or to throw for unit testing.
Class ilBiblLibrary.
static returnDbTableName()
setShowInList($show_in_list)
Interface ilBiblLibraryInterface.