ILIAS  release_7 Revision v7.30-3-g800a261c036
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
15
19 public static function returnDbTableName()
20 {
21 return self::TABLE_NAME;
22 }
23
24
28 public function getConnectorContainerName()
29 {
30 return self::TABLE_NAME;
31 }
32
33
45 protected $id;
53 protected $data_id;
62 protected $type;
63
64
68 public function getId()
69 {
70 return $this->id;
71 }
72
73
77 public function setId($id)
78 {
79 $this->id = $id;
80 }
81
82
86 public function getDataId()
87 {
88 return $this->data_id;
89 }
90
91
95 public function setDataId($data_id)
96 {
97 $this->data_id = $data_id;
98 }
99
100
104 public function getType()
105 {
106 return $this->type;
107 }
108
109
113 public function setType($type)
114 {
115 $this->type = $type;
116 }
117}
Class ActiveRecord.
An exception for terminatinating execution or to throw for unit testing.
Class ilBiblEntry.
static returnDbTableName()
setDataId($data_id)
Interface ilBiblEntryInterface.