ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
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;
58  protected $literature_type;
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  {
92  return $this->file_type_id;
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  {
110  return $this->literature_type;
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.
Class ilBiblOverviewModelInterface.
setLiteratureType($literature_type)
Class ilBiblOverviewModel.