ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
class.ilBiblOverviewModel.php
Go to the documentation of this file.
1<?php
9{
10 const TABLE_NAME = 'il_bibl_overview_model';
11
12
16 public static function returnDbTableName()
17 {
18 return self::TABLE_NAME;
19 }
20
21
25 public function getConnectorContainerName()
26 {
27 return self::TABLE_NAME;
28 }
29
30
42 protected $ovm_id;
50 protected $file_type_id;
66 protected $pattern;
67
68
72 public function getOvmId()
73 {
74 return $this->ovm_id;
75 }
76
77
81 public function setOvmId($ovm_id)
82 {
83 $this->ovm_id = $ovm_id;
84 }
85
86
90 public function getFileTypeId()
91 {
93 }
94
95
99 public function setFileTypeId($file_type)
100 {
101 $this->file_type_id = $file_type;
102 }
103
104
108 public function getLiteratureType()
109 {
111 }
112
113
118 {
119 $this->literature_type = $literature_type;
120 }
121
122
126 public function getPattern()
127 {
128 return $this->pattern;
129 }
130
131
135 public function setPattern($pattern)
136 {
137 $this->pattern = $pattern;
138 }
139}
Class ActiveRecord.
An exception for terminatinating execution or to throw for unit testing.
Class ilBiblOverviewModel.
setLiteratureType($literature_type)
Class ilBiblOverviewModelInterface.