50 protected static array
$key_maps = [self::FIELDTYPE =>
'type', self::IS_NOTNULL =>
'notnull'];
59 public static function mapKey(
string $key): string
61 return self::$key_maps[$key] ?? $key;
69 return self::$allowed_connector_fields;
77 return self::$allowed_description_fields;
82 $self =
new self($activeRecord);
94 $self =
new self($activeRecord);
107 foreach ($this->
getFields() as $arField) {
108 $return[$arField->getName()] = $arField->getAttributesForConnector();
116 foreach ($this->
getRawFields() as $fieldname => $attributes) {
117 if (self::checkAttributes($attributes)) {
119 $arField->loadFromArray($fieldname, $attributes);
120 $this->fields[] = $arField;
121 if ($arField->getPrimary()) {
132 $field_key = $this->activeRecord->getConnectorContainerName() .
'.' . $field_name;
133 if (is_array($field_map) && array_key_exists($field_key, $field_map)) {
134 return $field_map[$field_key];
137 if ($field->getName() === $field_name) {
138 $field_map[$field_key] = $field;
146 public function isField(
string $field_name): bool
149 foreach ($this->
getFields() as $arField) {
150 if ($arField->getName() === $field_name) {
170 $regex =
"/[\t ]*\\* @(" . implode(
'|', self::$prefixes) .
")_([a-zA-Z0-9_]+)[\t ]+([a-zA-Z0-9_]+)/u";
173 foreach ($reflection->getProperties() as $property) {
174 if (in_array($property->getName(), self::$protected_names)) {
177 $properties_array = [];
178 $has_property =
false;
179 foreach (explode(
"\n", $property->getDocComment()) as $line) {
180 if (preg_match($regex, $line, $matches)) {
181 $has_property =
true;
182 $properties_array[$matches[2]] = $matches[3];
186 $raw_fields[$property->getName()] = $properties_array;
195 return in_array($attribute_name, array_merge(self::$allowed_description_fields, [self::HAS_FIELD]),
true);
200 if (isset($attributes[self::HAS_FIELD]) && $attributes[self::HAS_FIELD] ===
'true') {
201 foreach (array_keys($attributes) as $atr) {
202 if (!self::isAllowedAttribute($atr)) {
231 $this->primary_field = $arField;
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static mapKey(string $key)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getInstance(ActiveRecord $activeRecord)
static getAllowedConnectorFields()
static getInstanceFromStorage(\ActiveRecord $activeRecord)
static isAllowedAttribute(string $attribute_name)
isField(string $field_name)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setPrimaryFields(array $primary_fields)
setPrimaryField(\arField $arField)
__construct(protected ActiveRecord $activeRecord)
arFieldList constructor.
static array $allowed_connector_fields
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static checkAttributes(array $attributes)
setRawFields(array $raw_fields)
arField array $primary_field
static getAllowedDescriptionFields()
static array $allowed_description_fields
getFieldByName(string $field_name)
static array $protected_names
initRawFields(ActiveRecord $ar)