This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Learning e.V.
More...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Learning e.V.
ILIAS is licensed with the GPL-3.0, see https://www.gnu.org/licenses/gpl-3.0.en.html You should have received a copy of said license along with the source code, too.
If this is not the case or you just want to try ILIAS, you'll find us at: https://www.ilias.de https://github.com/ILIAS-eLearning
Definition at line 19 of file class.ilDclFieldFactory.php.
◆ getClassByInstance()
static ilDclFieldFactory::getClassByInstance |
( |
ilDclBaseFieldModel |
$field, |
|
|
string |
$class_pattern |
|
) |
| |
|
static |
Definition at line 238 of file class.ilDclFieldFactory.php.
240 $fieldtype = self::getFieldTypeByInstance($field);
242 return self::getFieldClass($fieldtype, $class_pattern);
◆ getClassPathByInstance()
static ilDclFieldFactory::getClassPathByInstance |
( |
ilDclBaseFieldModel |
$field, |
|
|
string |
$class_pattern |
|
) |
| |
|
static |
- Exceptions
-
Definition at line 250 of file class.ilDclFieldFactory.php.
References $DIC, ilDclBaseFieldModel\getDatatype(), ilDclBaseFieldModel\getId(), ilDclFieldTypePlugin\getPluginId(), and ilDclFieldTypePlugin\isPluginDatatype().
255 if ($field->
getId() != null && !empty(self::$class_path_cache[$field->
getId()][$class_pattern])) {
256 return self::$class_path_cache[$field->
getId()][$class_pattern];
261 if ($DIC[
"component.repository"]->hasActivatedPlugin($plugin_id)) {
262 $class_path = $DIC[
"component.repository"]->getPluginById($plugin_id)->getPath() .
'/classes/';
267 $class_path = sprintf(
268 self::$field_base_path_patter,
269 ucfirst(self::parseDatatypeTitle($datatype->getTitle()))
273 $return = $class_path . self::getFieldClassFile(self::getFieldTypeByInstance($field), $class_pattern);
275 if ($field->
getId() != null) {
276 self::$class_path_cache[$field->
getId()][$class_pattern] = $return;
static isPluginDatatype(string $datatype)
static getPluginId(string $datatype)
◆ getFieldClass()
static ilDclFieldFactory::getFieldClass |
( |
string |
$datatype, |
|
|
string |
$class_pattern |
|
) |
| |
|
static |
Concatenates Classname from datatype and pattern.
Definition at line 68 of file class.ilDclFieldFactory.php.
70 if (!empty(self::$field_class_cache[$datatype . $class_pattern])) {
71 return self::$field_class_cache[$datatype . $class_pattern];
74 $fieldtype = $datatype;
76 $class = sprintf($class_pattern, $fieldtype);
77 self::$field_class_cache[$datatype . $class_pattern] = $class;
◆ getFieldClassFile()
static ilDclFieldFactory::getFieldClassFile |
( |
string |
$datatype, |
|
|
string |
$class_pattern |
|
) |
| |
|
static |
◆ getFieldModelInstance()
static ilDclFieldFactory::getFieldModelInstance |
( |
int |
$field_id, |
|
|
?int |
$datatype = null |
|
) |
| |
|
static |
◆ getFieldModelInstanceByClass()
static ilDclFieldFactory::getFieldModelInstanceByClass |
( |
ilDclBaseFieldModel |
$field, |
|
|
?int |
$field_id = null |
|
) |
| |
|
static |
Gets the correct instance of a fieldModel class Checks if a field is a plugin a replaces the fieldModel with the necessary class.
- Exceptions
-
Definition at line 179 of file class.ilDclFieldFactory.php.
References ilDclBaseFieldModel\getDatatypeId(), and ilDclBaseFieldModel\getId().
Referenced by ilDclCache\buildFieldFromRecord(), ilDclFieldEditGUI\checkInput(), and ilDclFieldEditGUI\initForm().
183 if ($field->
getId() != null && !empty(self::$field_model_cache[$field->
getId()])) {
184 return self::$field_model_cache[$field->
getId()];
187 $path_type = self::getClassPathByInstance($field, self::$field_class_patter);
189 if (file_exists($path_type)) {
190 $class = self::getClassByInstance($field, self::$field_class_patter);
192 $class = self::getFieldClass(self::$default_prefix .
"Base", self::$field_class_patter);
196 $instance =
new $class($field_id);
198 $instance =
new $class();
201 if ($instance == null) {
202 throw new ilDclException(
"Could not create FieldModel of " . $class);
206 if ($field->
getId() != null) {
207 self::$field_model_cache[$field->
getId()] = $instance;
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...
getDatatypeId()
Get datatype_id.
◆ getFieldRepresentationInstance()
◆ getFieldTypeByInstance()
Definition at line 215 of file class.ilDclFieldFactory.php.
References $DIC, ilDclBaseFieldModel\getDatatype(), ilDclFieldTypePlugin\getPluginId(), and ilDclFieldTypePlugin\isPluginDatatype().
220 if (!empty(self::$field_type_cache[$datatype->getId()])) {
221 return self::$field_type_cache[$datatype->getId()];
226 if ($DIC[
"component.repository"]->hasActivatedPlugin($plugin_id)) {
227 $fieldtype =
'il' . $DIC[
"component.repository"]->getPluginById($plugin_id)->getName();
232 $fieldtype = self::$default_prefix . ucfirst(self::parseDatatypeTitle($datatype->getTitle()));
234 self::$field_type_cache[$datatype->getId()] = $fieldtype;
static isPluginDatatype(string $datatype)
static getPluginId(string $datatype)
◆ getPluginNameFromFieldModel()
Definition at line 304 of file class.ilDclFieldFactory.php.
306 $class_name = get_class($object);
307 $class_name = substr($class_name, 2, -(strlen(self::$field_class_patter) - 2));
◆ getRecordFieldInstance()
static ilDclFieldFactory::getRecordFieldInstance |
( |
object |
$field, |
|
|
object |
$record |
|
) |
| |
|
static |
Creates a RecordField instance and loads the field and record representation.
- Parameters
-
- Exceptions
-
Definition at line 36 of file class.ilDclFieldFactory.php.
References $path.
Referenced by ilDclCache\getRecordFieldCache().
38 if (!empty(self::$record_field_cache[$field->getId()][$record->getId()])) {
39 return self::$record_field_cache[$field->getId()][$record->getId()];
42 $path = self::getClassPathByInstance($field, self::$record_field_class_patter);
43 if (file_exists(
$path)) {
44 $class = self::getClassByInstance($field, self::$record_field_class_patter);
45 $instance =
new $class($record, $field);
47 if (!$instance->getFieldRepresentation()) {
48 $instance->setFieldRepresentation(self::getFieldRepresentationInstance($field));
51 if (!$instance->getRecordRepresentation()) {
52 $instance->setRecordRepresentation(self::getRecordRepresentationInstance($instance));
54 self::$record_field_cache[$field->getId()][$record->getId()] = $instance;
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
◆ getRecordModelInstance()
static ilDclFieldFactory::getRecordModelInstance |
( |
?int |
$record_id | ) |
|
|
static |
◆ getRecordRepresentationInstance()
Get RecordRepresentation from RecordFieldModel.
- Exceptions
-
Definition at line 123 of file class.ilDclFieldFactory.php.
References ilDclBaseRecordFieldModel\getField(), and ilDclBaseRecordFieldModel\getId().
Referenced by ilDclRecordEditGUI\cancelSave(), and ilDclCache\getRecordRepresentation().
127 if ($record_field->
getId() != null && !empty(self::$record_representation_cache[$record_field->
getId()])) {
128 return self::$record_representation_cache[$record_field->
getId()];
131 $class_path = self::getClassPathByInstance(
133 self::$record_representation_class_pattern
137 if (file_exists($class_path)) {
138 $class = self::getClassByInstance($record_field->
getField(), self::$record_representation_class_pattern);
140 $class = self::getFieldClass(self::$default_prefix .
"Base", self::$record_representation_class_pattern);
143 $instance =
new $class($record_field);
145 if ($instance == null) {
146 throw new ilDclException(
"Could not create RecordRepresentation of " . $class_path .
" " . $record_field->
getField()->getDatatype()->getTitle());
149 if ($record_field->
getId() != null) {
150 self::$record_representation_cache[$record_field->
getId()] = $instance;
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...
◆ parseDatatypeTitle()
static ilDclFieldFactory::parseDatatypeTitle |
( |
string |
$title | ) |
|
|
static |
Parse string to FieldClass format Replaces _ with camelcase-notation.
Definition at line 286 of file class.ilDclFieldFactory.php.
References $parts.
288 $parts = explode(
"_", $title);
289 $func =
function ($value) {
290 return ucfirst($value);
294 $title = implode(
"",
$parts);
if($clientAssertionType !='urn:ietf:params:oauth:client-assertion-type:jwt-bearer'|| $grantType !='client_credentials') $parts
◆ $class_path_cache
array ilDclFieldFactory::$class_path_cache = array() |
|
staticprotected |
◆ $default_prefix
string ilDclFieldFactory::$default_prefix = "ilDcl" |
|
static |
◆ $field_base_path_patter
string ilDclFieldFactory::$field_base_path_patter = "./Modules/DataCollection/classes/Fields/%s/" |
|
static |
◆ $field_class_cache
array ilDclFieldFactory::$field_class_cache = array() |
|
staticprotected |
◆ $field_class_patter
string ilDclFieldFactory::$field_class_patter = "%sFieldModel" |
|
static |
◆ $field_model_cache
array ilDclFieldFactory::$field_model_cache = array() |
|
staticprotected |
◆ $field_representation_cache
array ilDclFieldFactory::$field_representation_cache = array() |
|
staticprotected |
◆ $field_representation_class_pattern
string ilDclFieldFactory::$field_representation_class_pattern = "%sFieldRepresentation" |
|
static |
◆ $field_type_cache
array ilDclFieldFactory::$field_type_cache = array() |
|
staticprotected |
◆ $record_field_cache
array ilDclFieldFactory::$record_field_cache = array() |
|
staticprotected |
◆ $record_field_class_patter
string ilDclFieldFactory::$record_field_class_patter = "%sRecordFieldModel" |
|
static |
◆ $record_representation_cache
array ilDclFieldFactory::$record_representation_cache = array() |
|
staticprotected |
◆ $record_representation_class_pattern
string ilDclFieldFactory::$record_representation_class_pattern = "%sRecordRepresentation" |
|
static |
The documentation for this class was generated from the following file: