ILIAS  release_8 Revision v8.24
class.ilBiblEntry.php
Go to the documentation of this file.
1<?php
24{
25 public const TABLE_NAME = 'il_bibl_entry';
26
27 public static function returnDbTableName(): string
28 {
29 return self::TABLE_NAME;
30 }
31
32 public function getConnectorContainerName(): string
33 {
34 return self::TABLE_NAME;
35 }
36
46 protected ?int $id = null;
52 protected ?int $data_id = null;
59 protected ?string $type = null;
60
61 protected string $overview = '';
62
63 public function getId(): ?int
64 {
65 return $this->id;
66 }
67
68 public function setId(int $id): void
69 {
70 $this->id = $id;
71 }
72
73 public function getDataId(): int
74 {
75 return $this->data_id;
76 }
77
78 public function setDataId(int $data_id): void
79 {
80 $this->data_id = $data_id;
81 }
82
83 public function getType(): string
84 {
85 return $this->type;
86 }
87
88 public function setType(string $type): void
89 {
90 $this->type = $type;
91 }
92
93 public function getOverview(): string
94 {
95 return $this->overview;
96 }
97}
Class ActiveRecord.
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...