ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.ilBiblAttribute.php
Go to the documentation of this file.
1<?php
2
25{
26 public static function returnDbTableName(): string
27 {
28 return 'il_bibl_attribute';
29 }
30
31
32 #[\Override]
33 public function getConnectorContainerName(): string
34 {
35 return 'il_bibl_attribute';
36 }
37
38
44 protected int $entry_id;
50 protected string $name;
56 protected string $value;
66 protected ?int $id = null;
67
68
69 public function getEntryId(): int
70 {
71 return $this->entry_id;
72 }
73
74
78 public function setEntryId(int $entry_id): void
79 {
80 $this->entry_id = $entry_id;
81 }
82
83
84 public function getName(): string
85 {
86 return $this->name;
87 }
88
89
93 public function setName(string $name): void
94 {
95 $this->name = $name;
96 }
97
98
99 public function getValue(): string
100 {
101 return $this->value;
102 }
103
104
108 public function setValue(string $value): void
109 {
110 $this->value = $value;
111 }
112
113
114 public function getId(): ?int
115 {
116 return $this->id;
117 }
118
119
123 public function setId(int $id): void
124 {
125 $this->id = $id;
126 }
127}
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...
string $name
@con_has_field true @con_fieldtype text @con_length 32
getConnectorContainerName()
@description Return the Name of your Connector Table
int $entry_id
@con_has_field true @con_fieldtype integer @con_length 11
int $id
@con_has_field true @con_fieldtype integer @con_length 4 @con_is_notnull true @con_is_primary true @c...
string $value
@con_has_field true @con_fieldtype text @con_length 4000
setEntryId(int $entry_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...