ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
class.ilBiblAttribute.php
Go to the documentation of this file.
1 <?php
9 {
10 
14  public static function returnDbTableName()
15  {
16  return 'il_bibl_attribute';
17  }
18 
19 
23  public function getConnectorContainerName()
24  {
25  return 'il_bibl_attribute';
26  }
27 
28 
36  protected $entry_id;
44  protected $name;
52  protected $value;
64  protected $id;
65 
66 
70  public function getEntryId()
71  {
72  return $this->entry_id;
73  }
74 
75 
79  public function setEntryId($entry_id)
80  {
81  $this->entry_id = $entry_id;
82  }
83 
84 
88  public function getName()
89  {
90  return $this->name;
91  }
92 
93 
97  public function setName($name)
98  {
99  $this->name = $name;
100  }
101 
102 
106  public function getValue()
107  {
108  return $this->value;
109  }
110 
111 
115  public function setValue($value)
116  {
117  $this->value = $value;
118  }
119 
120 
124  public function getId()
125  {
126  return $this->id;
127  }
128 
129 
133  public function setId($id)
134  {
135  $this->id = $id;
136  }
137 }
Class ActiveRecord.
Interface ilBiblAttributeInterface.
Class ilBiblAttribute.