ILIAS  release_8 Revision v8.24
class.ilBiblAttribute.php
Go to the documentation of this file.
1<?php
24{
25 public static function returnDbTableName(): string
26 {
27 return 'il_bibl_attribute';
28 }
29
30
31 public function getConnectorContainerName(): string
32 {
33 return 'il_bibl_attribute';
34 }
35
36
42 protected int $entry_id;
48 protected string $name;
54 protected string $value;
64 protected ?int $id = null;
65
66
67 public function getEntryId(): int
68 {
69 return $this->entry_id;
70 }
71
72
76 public function setEntryId(int $entry_id): void
77 {
78 $this->entry_id = $entry_id;
79 }
80
81
82 public function getName(): string
83 {
84 return $this->name;
85 }
86
87
91 public function setName(string $name): void
92 {
93 $this->name = $name;
94 }
95
96
97 public function getValue(): string
98 {
99 return $this->value;
100 }
101
102
106 public function setValue(string $value): void
107 {
108 $this->value = $value;
109 }
110
111
112 public function getId(): ?int
113 {
114 return $this->id;
115 }
116
117
121 public function setId(int $id): void
122 {
123 $this->id = $id;
124 }
125}
Class ActiveRecord.
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...