ILIAS  release_8 Revision v8.24
class.ilBiblOverviewModel.php
Go to the documentation of this file.
1<?php
23{
24 public const TABLE_NAME = 'il_bibl_overview_model';
25
26 public static function returnDbTableName(): string
27 {
28 return self::TABLE_NAME;
29 }
30
31 public function getConnectorContainerName(): string
32 {
33 return self::TABLE_NAME;
34 }
35
45 protected ?int $ovm_id = 0;
51 protected int $file_type_id;
57 protected string $literature_type;
63 protected string $pattern;
64
65 public function getOvmId(): ?int
66 {
67 return $this->ovm_id;
68 }
69
70 public function setOvmId(int $ovm_id): void
71 {
72 $this->ovm_id = $ovm_id;
73 }
74
75 public function getFileTypeId(): int
76 {
78 }
79
80 public function setFileTypeId(int $file_type): void
81 {
82 $this->file_type_id = $file_type;
83 }
84
85 public function getLiteratureType(): string
86 {
88 }
89
90 public function setLiteratureType(string $literature_type): void
91 {
92 $this->literature_type = $literature_type;
93 }
94
95 public function getPattern(): string
96 {
97 return $this->pattern;
98 }
99
100 public function setPattern(string $pattern): void
101 {
102 $this->pattern = $pattern;
103 }
104}
Class ActiveRecord.
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...