ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.ilBiblEntry.php
Go to the documentation of this file.
1<?php
2
25{
26 public const TABLE_NAME = 'il_bibl_entry';
27
28 public static function returnDbTableName(): string
29 {
30 return self::TABLE_NAME;
31 }
32
33 #[\Override]
34 public function getConnectorContainerName(): string
35 {
36 return self::TABLE_NAME;
37 }
38
48 protected ?int $id = null;
54 protected ?int $data_id = null;
61 protected ?string $type = null;
62
63 protected string $overview = '';
64
65 public function getId(): ?int
66 {
67 return $this->id;
68 }
69
70 public function setId(int $id): void
71 {
72 $this->id = $id;
73 }
74
75 public function getDataId(): int
76 {
77 return $this->data_id;
78 }
79
80 public function setDataId(int $data_id): void
81 {
82 $this->data_id = $data_id;
83 }
84
85 public function getType(): string
86 {
87 return $this->type;
88 }
89
90 public function setType(string $type): void
91 {
92 $this->type = $type;
93 }
94
95 public function getOverview(): string
96 {
97 return $this->overview;
98 }
99}
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...
int $id
@con_has_field true @con_fieldtype integer @con_length 4 @con_is_notnull true @con_is_primary true @c...
int $data_id
@con_has_field true @con_fieldtype integer @con_length 4
string $type
@con_has_field true @con_fieldtype text @con_length 50 @con_is_notnull true
static returnDbTableName()
setDataId(int $data_id)
getConnectorContainerName()
@description Return the Name of your Connector Table
setType(string $type)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...