75 if (!self::$clone_mapping) {
76 self::initCloneMapping();
78 self::$clone_mapping[
$type][$old] = $new;
83 self::$clone_mapping = array(
84 self::TYPE_DATACOLLECTION => array(),
85 self::TYPE_TABLE => array(),
86 self::TYPE_FIELD => array(),
87 self::TYPE_RECORD => array(),
88 self::TYPE_TABLEVIEW => array(),
94 $type_cache = self::$clone_mapping[
$type];
97 if (!is_array($type_cache)) {
101 if (isset($type_cache[$id])) {
102 $clone_id = $type_cache[
$id];
104 foreach ($type_cache as
$key => $mapping) {
105 if ($mapping == $id) {
116 case self::TYPE_DATACOLLECTION:
118 case self::TYPE_FIELD:
119 return self::getFieldCache($clone_id);
120 case self::TYPE_TABLE:
121 return self::getTableCache($clone_id);
122 case self::TYPE_RECORD:
123 return self::getRecordCache($clone_id);
131 if (is_null($table_id) ===
true || $table_id === 0) {
134 $tables_cache = &self::$tables_cache;
135 if (!isset($tables_cache[$table_id])) {
136 $tables_cache[$table_id] =
new ilDclTable($table_id);
139 return $tables_cache[$table_id];
144 $fields_cache = &self::$fields_cache;
145 if (!isset($fields_cache[$field_id])) {
149 return $fields_cache[$field_id];
154 $records_cache = &self::$records_cache;
155 if (!$record_id || !isset($records_cache[$record_id])) {
159 return $records_cache[$record_id];
166 $fid = $field->
getId();
167 $rid = $record->getId();
168 if (!isset(self::$record_field_cache[$rid])) {
169 self::$record_field_cache[$rid] = [];
171 } elseif (!isset(self::$record_field_cache[$rid][$fid])) {
175 return self::$record_field_cache[$rid][$fid];
183 if (!isset(self::$field_representation_cache[$field->
getId()])) {
187 return self::$field_representation_cache[$field->
getId()];
197 if ($record_field == null) {
198 throw new ilDclException(
"Cannot get Representation of null object!");
201 if (!isset(self::$record_representation_cache[$record_field->
getId()])) {
205 return self::$record_representation_cache[$record_field->
getId()];
215 if (!isset(self::$field_properties_cache[$field_id])) {
216 self::$field_properties_cache[$field_id] = array();
218 foreach ($result as $prop) {
219 self::$field_properties_cache[$field_id][$prop->getName()] = $prop;
223 return self::$field_properties_cache[$field_id];
232 foreach ($fields as $field_key => $field) {
233 if (isset(self::$field_properties_cache[$field->getId()])) {
234 unset($fields[$field_key]);
238 if (count($fields) > 0) {
239 $field_ids = array();
240 foreach ($fields as $field) {
241 $field_ids[] = $field->getId();
244 foreach ($result as $prop) {
245 if (!isset(self::$field_properties_cache[$prop->getFieldId()])) {
246 self::$field_properties_cache[$prop->getFieldId()] = array();
248 self::$field_properties_cache[$prop->getFieldId()][$prop->getName()] = $prop;
259 if (self::$datatype_cache == null) {
263 if (!isset(self::$datatype_cache[$datatyp_id])) {
267 return self::$datatype_cache[$datatyp_id];
272 $fields_cache = &self::$fields_cache;
273 if (isset($fields_cache[$rec[
"id"]])) {
274 return $fields_cache[$rec[
"id"]];
277 $field->setId($rec[
"id"]);
278 $field->setTableId($rec[
"table_id"]);
279 if (null !== $rec[
"title"]) {
280 $field->setTitle($rec[
"title"]);
282 if (null !== $rec[
"description"]) {
283 $field->setDescription($rec[
"description"]);
285 $field->setDatatypeId($rec[
"datatype_id"]);
286 $field->setUnique($rec[
"is_unique"]);
287 $fields_cache[$rec[
"id"]] = $field;
297 self::$fields_cache = array();
298 self::$record_field_cache = array();
299 self::$records_cache = array();
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const TYPE_DATACOLLECTION
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getFieldProperties($field_id)
Cache Field properties.
static array $records_cache
static preloadFieldProperties(array $fields)
Preloads field properties.
static getFieldRepresentationInstance(ilDclBaseFieldModel $field)
static array $record_field_cache
static initCloneMapping()
static getFieldCache(int $field_id=0)
static array $tables_cache
static getRecordModelInstance(?int $record_id)
static array $field_properties_cache
static array $field_representation_cache
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static where($where, $operator=null)
static array $fields_cache
static resetCache()
Resets all the cache fields.
static getFieldRepresentation(ilDclBaseFieldModel $field)
static getDatatype(int $datatyp_id)
Get cached datatypes.
static getFieldModelInstanceByClass(ilDclBaseFieldModel $field, ?int $field_id=null)
Gets the correct instance of a fieldModel class Checks if a field is a plugin a replaces the fieldMod...
static getTableCache(int $table_id=null)
static getFieldModelInstance(int $field_id, ?int $datatype=null)
Get FieldModel from field-id and datatype.
static getAllDatatype(bool $force=false)
Get all possible Datatypes.
static getRecordRepresentation(ilDclBaseRecordFieldModel $record_field)
Returns a record representation.
static setCloneOf(int $old, int $new, string $type)
static getRecordFieldInstance(object $field, object $record)
Creates a RecordField instance and loads the field and record representation.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static array $clone_mapping
static getRecordRepresentationInstance(ilDclBaseRecordFieldModel $record_field)
Get RecordRepresentation from RecordFieldModel.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getRecordCache(?int $record_id)
static array $datatype_cache
static buildFieldFromRecord(array $rec)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getCloneOf(int $id, string $type)
static getRecordFieldCache(object $record, object $field)
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...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static array $record_representation_cache