ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.ilBiblOverviewModel.php
Go to the documentation of this file.
1<?php
2
24{
25 public const TABLE_NAME = 'il_bibl_overview_model';
26
27 public static function returnDbTableName(): string
28 {
29 return self::TABLE_NAME;
30 }
31
32 #[\Override]
33 public function getConnectorContainerName(): string
34 {
35 return self::TABLE_NAME;
36 }
37
47 protected ?int $ovm_id = 0;
53 protected int $file_type_id;
59 protected string $literature_type;
65 protected string $pattern;
66
67 public function getOvmId(): ?int
68 {
69 return $this->ovm_id;
70 }
71
72 public function setOvmId(int $ovm_id): void
73 {
74 $this->ovm_id = $ovm_id;
75 }
76
77 public function getFileTypeId(): int
78 {
80 }
81
82 public function setFileTypeId(int $file_type): void
83 {
84 $this->file_type_id = $file_type;
85 }
86
87 public function getLiteratureType(): string
88 {
90 }
91
92 public function setLiteratureType(string $literature_type): void
93 {
94 $this->literature_type = $literature_type;
95 }
96
97 public function getPattern(): string
98 {
99 return $this->pattern;
100 }
101
102 public function setPattern(string $pattern): void
103 {
104 $this->pattern = $pattern;
105 }
106}
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 $literature_type
@con_has_field true @con_fieldtype text @con_length 32
string $pattern
@con_has_field true @con_fieldtype text @con_length 512
int $file_type_id
@con_has_field true @con_fieldtype integer @con_length 4
getConnectorContainerName()
@description Return the Name of your Connector Table
int $ovm_id
@con_has_field true @con_fieldtype integer @con_length 4 @con_is_notnull true @con_is_primary true @c...
setLiteratureType(string $literature_type)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...