ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
class.ilBiblEntry.php
Go to the documentation of this file.
1<?php
2/* Copyright (c) 1998-2013 ILIAS open source, Extended GPL, see docs/LICENSE */
3
12{
13 const TABLE_NAME = 'il_bibl_entry';
14
18 public static function returnDbTableName()
19 {
20 return self::TABLE_NAME;
21 }
22
26 public function getConnectorContainerName()
27 {
28 return self::TABLE_NAME;
29 }
30
42 protected $id;
50 protected $data_id;
59 protected $type;
60
64 public function getId()
65 {
66 return $this->id;
67 }
68
69
73 public function setId($id)
74 {
75 $this->id = $id;
76 }
77
78
82 public function getDataId()
83 {
84 return $this->data_id;
85 }
86
87
91 public function setDataId($data_id)
92 {
93 $this->data_id = $data_id;
94 }
95
99 public function getType()
100 {
101 return $this->type;
102 }
103
104
108 public function setType($type)
109 {
110 $this->type = $type;
111 }
112}
Class ActiveRecord.
An exception for terminatinating execution or to throw for unit testing.
Class ilBiblEntry.
static returnDbTableName()
setDataId($data_id)
Interface ilBiblEntryInterface.