ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
class.ilBiblTranslation.php
Go to the documentation of this file.
1<?php
10{
11 const TABLE_NAME = 'il_bibl_translation';
12
13
17 public static function returnDbTableName()
18 {
19 return self::TABLE_NAME;
20 }
21
22
26 public function getConnectorContainerName()
27 {
28 return self::TABLE_NAME;
29 }
30
31
42 protected $id = 0;
52 protected $field_id = 0;
61 protected $language_key = '';
69 protected $translation = '';
76 protected $description = '';
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 getFieldId()
101 {
102 return $this->field_id;
103 }
104
105
109 public function setFieldId($field_id)
110 {
111 $this->field_id = $field_id;
112 }
113
114
118 public function getLanguageKey()
119 {
120 return $this->language_key;
121 }
122
123
128 {
129 $this->language_key = $language_key;
130 }
131
132
136 public function getTranslation()
137 {
138 return $this->translation;
139 }
140
141
146 {
147 $this->translation = $translation;
148 }
149
150
154 public function getDescription()
155 {
156 return $this->description;
157 }
158
159
164 {
165 $this->description = $description;
166 }
167}
Class ActiveRecord.
An exception for terminatinating execution or to throw for unit testing.
Class ilBiblTranslation.
Interface ilBiblTranslationInterface.