ILIAS  release_7 Revision v7.30-3-g800a261c036
class.ilBiblField.php
Go to the documentation of this file.
1<?php
9{
10 const TABLE_NAME = 'il_bibl_field';
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 $identifier;
60 protected $data_type;
68 protected $position;
78
79
83 public function getId()
84 {
85 return $this->id;
86 }
87
88
92 public function setId($id)
93 {
94 $this->id = $id;
95 }
96
97
101 public function getIdentifier()
102 {
103 return $this->identifier;
104 }
105
106
110 public function setIdentifier($identifier)
111 {
112 $this->identifier = $identifier;
113 }
114
115
119 public function getPosition()
120 {
121 return $this->position;
122 }
123
124
128 public function setPosition($position)
129 {
130 $this->position = $position;
131 }
132
133
137 public function getisStandardField()
138 {
140 }
141
142
147 {
148 $this->is_standard_field = $is_standard_field;
149 }
150
151
155 public function getDataType()
156 {
157 return $this->data_type;
158 }
159
160
164 public function setDataType($data_type)
165 {
166 $this->data_type = $data_type;
167 }
168}
Class ActiveRecord.
An exception for terminatinating execution or to throw for unit testing.
Class ilField.
setIsStandardField($is_standard_field)
setPosition($position)
setDataType($data_type)
setIdentifier($identifier)
static returnDbTableName()
Interface ilBiblEntryInterface.