ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
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 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
int $id
true integer 4 true true true true
setEntryId(int $entry_id)
string $value
true text 4000
int $entry_id
true integer 11
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
string $name
true text 32