ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.ilBiblTranslation.php
Go to the documentation of this file.
1<?php
2
25{
26 public const TABLE_NAME = 'il_bibl_translation';
27
28 public static function returnDbTableName(): string
29 {
30 return self::TABLE_NAME;
31 }
32
33 #[\Override]
34 public function getConnectorContainerName(): string
35 {
36 return self::TABLE_NAME;
37 }
38
47 protected ?int $id = 0;
55 protected int $field_id = 0;
62 protected string $language_key = '';
68 protected string $translation = '';
73 protected string $description = '';
74
75 public function getId(): ?int
76 {
77 return $this->id;
78 }
79
80 public function setId(int $id): void
81 {
82 $this->id = $id;
83 }
84
85 public function getFieldId(): int
86 {
87 return $this->field_id;
88 }
89
90 public function setFieldId(int $field_id): void
91 {
92 $this->field_id = $field_id;
93 }
94
95 public function getLanguageKey(): string
96 {
98 }
99
100 public function setLanguageKey(string $language_key): void
101 {
102 $this->language_key = $language_key;
103 }
104
105 public function getTranslation(): string
106 {
107 return $this->translation;
108 }
109
110 public function setTranslation(string $translation): void
111 {
112 $this->translation = $translation;
113 }
114
115 public function getDescription(): string
116 {
117 return $this->description;
118 }
119
120 public function setDescription(string $description): void
121 {
122 $this->description = $description;
123 }
124}
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 $field_id
@con_has_field true @con_fieldtype integer @con_length 8 @con_is_notnull true @con_is_unique true
int $id
@con_has_field true @con_fieldtype integer @con_length 4 @con_is_notnull true @con_is_primary true @c...
setTranslation(string $translation)
string $description
@con_has_field true @con_fieldtype clob
string $translation
@con_has_field true @con_fieldtype text @con_length 256
setDescription(string $description)
setLanguageKey(string $language_key)
string $language_key
@con_has_field true @con_fieldtype text @con_length 2 @con_is_notnull true
getConnectorContainerName()
@description Return the Name of your Connector Table
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...