ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
ilMDIdentifier_ Class Reference
+ Inheritance diagram for ilMDIdentifier_:
+ Collaboration diagram for ilMDIdentifier_:

Public Member Functions

 setCatalog ($a_catalog)
 
 getCatalog ()
 
 setEntry ($a_entry)
 
 getEntry ()
 
 save ()
 
 update ()
 
 delete ()
 
 __getFields ()
 
 read ()
 
 toXML (&$writer)
 
 setCatalog ($a_catalog)
 
 getCatalog ()
 
 setEntry ($a_entry)
 
 getEntry ()
 
 save ()
 
 update ()
 
 delete ()
 
 __getFields ()
 
 read ()
 
 toXML (&$writer)
 
 _getIds ($a_rbac_id, $a_obj_id, $a_parent_id, $a_parent_type)
 
- Public Member Functions inherited from ilMDBase
 __construct ($a_rbac_id=0, $a_obj_id=0, $a_type=0)
 
 setRBACId ($a_id)
 
 getRBACId ()
 
 setObjId ($a_id)
 
 getObjId ()
 
 setObjType ($a_type)
 
 getObjType ()
 
 setMetaId ($a_meta_id, $a_read_data=true)
 
 getMetaId ()
 
 setParentType ($a_parent_type)
 
 getParentType ()
 
 setParentId ($a_id)
 
 getParentId ()
 
 setExportMode ($a_export_mode=true)
 
 getExportMode ()
 
 validate ()
 
 update ()
 
 save ()
 
 delete ()
 
 toXML (&$writer)
 
 __construct ($a_rbac_id=0, $a_obj_id=0, $a_type=0)
 
 setRBACId ($a_id)
 
 getRBACId ()
 
 setObjId ($a_id)
 
 getObjId ()
 
 setObjType ($a_type)
 
 getObjType ()
 
 setMetaId ($a_meta_id, $a_read_data=true)
 
 getMetaId ()
 
 setParentType ($a_parent_type)
 
 getParentType ()
 
 setParentId ($a_id)
 
 getParentId ()
 
 validate ()
 
 update ()
 
 save ()
 
 delete ()
 
 toXML (&$writer)
 

Static Public Member Functions

static _getIds ($a_rbac_id, $a_obj_id, $a_parent_id, $a_parent_type)
 

Additional Inherited Members

- Data Fields inherited from ilMDBase
 $rbac_id
 
 $obj_id
 
 $obj_type
 
 $export_mode = false
 
- Protected Attributes inherited from ilMDBase
 $log
 

Detailed Description

Definition at line 33 of file class.ilMDIdentifier_.php.

Member Function Documentation

◆ __getFields() [1/2]

ilMDIdentifier_::__getFields ( )

Definition at line 100 of file class.ilMDIdentifier_.php.

101 {
102 return array('rbac_id' => array('integer',$this->getRBACId()),
103 'obj_id' => array('integer',$this->getObjId()),
104 'obj_type' => array('text',$this->getObjType()),
105 'parent_type' => array('text',$this->getParentType()),
106 'parent_id' => array('integer',$this->getParentId()),
107 'catalog' => array('text',$this->getCatalog()),
108 'entry' => array('text',$this->getEntry()));
109 }

References getCatalog(), getEntry(), ilMDBase\getObjId(), ilMDBase\getObjType(), ilMDBase\getParentId(), ilMDBase\getParentType(), and ilMDBase\getRBACId().

Referenced by save().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ __getFields() [2/2]

ilMDIdentifier_::__getFields ( )

Definition at line 101 of file class.ilMDIdentifier_.php.

102 {
103 return array('rbac_id' => $this->getRBACId(),
104 'obj_id' => $this->getObjId(),
105 'obj_type' => ilUtil::prepareDBString($this->getObjType()),
106 'parent_type' => $this->getParentType(),
107 'parent_id' => $this->getParentId(),
108 'catalog' => ilUtil::prepareDBString($this->getCatalog()),
109 'entry' => ilUtil::prepareDBString($this->getEntry()));
110
111 }
static prepareDBString($a_str)
prepare a string for db writing (insert/update)

References getCatalog(), getEntry(), ilMDBase\getObjId(), ilMDBase\getObjType(), ilMDBase\getParentId(), ilMDBase\getParentType(), ilMDBase\getRBACId(), and ilUtil\prepareDBString().

+ Here is the call graph for this function:

◆ _getIds() [1/2]

static ilMDIdentifier_::_getIds (   $a_rbac_id,
  $a_obj_id,
  $a_parent_id,
  $a_parent_type 
)
static

Definition at line 148 of file class.ilMDIdentifier_.php.

149 {
150 global $ilDB;
151
152 $query = "SELECT meta_identifier__id FROM il_meta_identifier_ ".
153 "WHERE rbac_id = ".$ilDB->quote($a_rbac_id ,'integer')." ".
154 "AND obj_id = ".$ilDB->quote($a_obj_id ,'integer')." ".
155 "AND parent_id = ".$ilDB->quote($a_parent_id ,'integer')." ".
156 "AND parent_type = ".$ilDB->quote($a_parent_type ,'text');
157
158
159 $res = $ilDB->query($query);
160 while($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT))
161 {
162 $ids[] = $row->meta_identifier__id;
163 }
164 return $ids ? $ids : array();
165 }
global $ilDB

References $ilDB, $query, $res, $row, and ilDBConstants\FETCHMODE_OBJECT.

Referenced by ilMDRelation\getIdentifier_Ids().

+ Here is the caller graph for this function:

◆ _getIds() [2/2]

ilMDIdentifier_::_getIds (   $a_rbac_id,
  $a_obj_id,
  $a_parent_id,
  $a_parent_type 
)

Definition at line 150 of file class.ilMDIdentifier_.php.

151 {
152 global $ilDB;
153
154 $query = "SELECT meta_identifier__id FROM il_meta_identifier_ ".
155 "WHERE rbac_id = ".$ilDB->quote($a_rbac_id)." ".
156 "AND obj_id = ".$ilDB->quote($a_obj_id)." ".
157 "AND parent_id = ".$ilDB->quote($a_parent_id)." ".
158 "AND parent_type = ".$ilDB->quote($a_parent_type);
159
160
161 $res = $ilDB->query($query);
162 while($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT))
163 {
164 $ids[] = $row->meta_identifier__id;
165 }
166 return $ids ? $ids : array();
167 }

References $ilDB, $query, $res, $row, and ilDBConstants\FETCHMODE_OBJECT.

◆ delete() [1/2]

ilMDIdentifier_::delete ( )

Reimplemented from ilMDBase.

Definition at line 85 of file class.ilMDIdentifier_.php.

86 {
87 global $ilDB;
88
89 if($this->getMetaId())
90 {
91 $query = "DELETE FROM il_meta_identifier_ ".
92 "WHERE meta_identifier__id = ".$ilDB->quote($this->getMetaId() ,'integer');
93 $res = $ilDB->manipulate($query);
94 return true;
95 }
96 return false;
97 }

References $ilDB, $query, $res, and ilMDBase\getMetaId().

+ Here is the call graph for this function:

◆ delete() [2/2]

ilMDIdentifier_::delete ( )

Reimplemented from ilMDBase.

Definition at line 84 of file class.ilMDIdentifier_.php.

85 {
86 global $ilDB;
87
88 if($this->getMetaId())
89 {
90 $query = "DELETE FROM il_meta_identifier_ ".
91 "WHERE meta_identifier__id = ".$ilDB->quote($this->getMetaId());
92
93 $this->db->query($query);
94
95 return true;
96 }
97 return false;
98 }

References $ilDB, $query, and ilMDBase\getMetaId().

+ Here is the call graph for this function:

◆ getCatalog() [1/2]

ilMDIdentifier_::getCatalog ( )

Definition at line 40 of file class.ilMDIdentifier_.php.

41 {
42 return $this->catalog;
43 }

Referenced by __getFields(), and toXML().

+ Here is the caller graph for this function:

◆ getCatalog() [2/2]

ilMDIdentifier_::getCatalog ( )

Definition at line 40 of file class.ilMDIdentifier_.php.

41 {
42 return $this->catalog;
43 }

◆ getEntry() [1/2]

ilMDIdentifier_::getEntry ( )

Definition at line 48 of file class.ilMDIdentifier_.php.

49 {
50 return $this->entry;
51 }

Referenced by __getFields(), and toXML().

+ Here is the caller graph for this function:

◆ getEntry() [2/2]

ilMDIdentifier_::getEntry ( )

Definition at line 48 of file class.ilMDIdentifier_.php.

49 {
50 return $this->entry;
51 }

◆ read() [1/2]

ilMDIdentifier_::read ( )

Definition at line 111 of file class.ilMDIdentifier_.php.

112 {
113 global $ilDB;
114
115 if($this->getMetaId())
116 {
117 $query = "SELECT * FROM il_meta_identifier_ ".
118 "WHERE meta_identifier__id = ".$ilDB->quote($this->getMetaId() ,'integer');
119
120 $res = $this->db->query($query);
121 while($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT))
122 {
123 $this->setRBACId($row->rbac_id);
124 $this->setObjId($row->obj_id);
125 $this->setObjType($row->obj_type);
126 $this->setParentId($row->parent_id);
127 $this->setParentType($row->parent_type);
128 $this->setCatalog($row->catalog);
129 $this->setEntry($row->entry);
130 }
131 }
132 return true;
133 }
setObjId($a_id)
setParentId($a_id)
setObjType($a_type)
setRBACId($a_id)
setParentType($a_parent_type)

References $ilDB, $query, $res, $row, ilDBConstants\FETCHMODE_OBJECT, ilMDBase\getMetaId(), setCatalog(), setEntry(), ilMDBase\setObjId(), ilMDBase\setObjType(), ilMDBase\setParentId(), ilMDBase\setParentType(), and ilMDBase\setRBACId().

+ Here is the call graph for this function:

◆ read() [2/2]

ilMDIdentifier_::read ( )

Definition at line 113 of file class.ilMDIdentifier_.php.

114 {
115 global $ilDB;
116
117 if($this->getMetaId())
118 {
119 $query = "SELECT * FROM il_meta_identifier_ ".
120 "WHERE meta_identifier__id = ".$ilDB->quote($this->getMetaId());
121
122 $res = $this->db->query($query);
123 while($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT))
124 {
125 $this->setRBACId($row->rbac_id);
126 $this->setObjId($row->obj_id);
127 $this->setObjType($row->obj_type);
128 $this->setParentId($row->parent_id);
129 $this->setParentType($row->parent_type);
130 $this->setCatalog(ilUtil::stripSlashes($row->catalog));
131 $this->setEntry(ilUtil::stripSlashes($row->entry));
132 }
133 }
134 return true;
135 }
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled

References $ilDB, $query, $res, $row, ilDBConstants\FETCHMODE_OBJECT, ilMDBase\getMetaId(), setCatalog(), setEntry(), ilMDBase\setObjId(), ilMDBase\setObjType(), ilMDBase\setParentId(), ilMDBase\setParentType(), ilMDBase\setRBACId(), and ilUtil\stripSlashes().

+ Here is the call graph for this function:

◆ save() [1/2]

ilMDIdentifier_::save ( )

Reimplemented from ilMDBase.

Definition at line 54 of file class.ilMDIdentifier_.php.

55 {
56 global $ilDB;
57
58 $fields = $this->__getFields();
59 $fields['meta_identifier__id'] = array('integer',$next_id = $ilDB->nextId('il_meta_identifier_'));
60
61 if($this->db->insert('il_meta_identifier_',$fields))
62 {
63 $this->setMetaId($next_id);
64 return $this->getMetaId();
65 }
66 return false;
67 }
setMetaId($a_meta_id, $a_read_data=true)

References $ilDB, __getFields(), ilMDBase\getMetaId(), and ilMDBase\setMetaId().

+ Here is the call graph for this function:

◆ save() [2/2]

ilMDIdentifier_::save ( )

Reimplemented from ilMDBase.

Definition at line 54 of file class.ilMDIdentifier_.php.

55 {
56 if($this->db->autoExecute('il_meta_identifier_',
57 $this->__getFields(),
59 {
60 $this->setMetaId($this->db->getLastInsertId());
61
62 return $this->getMetaId();
63 }
64 return false;
65 }

References ilMDBase\getMetaId(), ilDBConstants\MDB2_AUTOQUERY_INSERT, and ilMDBase\setMetaId().

+ Here is the call graph for this function:

◆ setCatalog() [1/2]

ilMDIdentifier_::setCatalog (   $a_catalog)

Definition at line 36 of file class.ilMDIdentifier_.php.

37 {
38 $this->catalog = $a_catalog;
39 }

Referenced by read().

+ Here is the caller graph for this function:

◆ setCatalog() [2/2]

ilMDIdentifier_::setCatalog (   $a_catalog)

Definition at line 36 of file class.ilMDIdentifier_.php.

37 {
38 $this->catalog = $a_catalog;
39 }

◆ setEntry() [1/2]

ilMDIdentifier_::setEntry (   $a_entry)

Definition at line 44 of file class.ilMDIdentifier_.php.

45 {
46 $this->entry = $a_entry;
47 }

Referenced by read().

+ Here is the caller graph for this function:

◆ setEntry() [2/2]

ilMDIdentifier_::setEntry (   $a_entry)

Definition at line 44 of file class.ilMDIdentifier_.php.

45 {
46 $this->entry = $a_entry;
47 }

◆ toXML() [1/2]

ilMDIdentifier_::toXML ( $writer)

Reimplemented from ilMDBase.

Definition at line 140 of file class.ilMDIdentifier_.php.

141 {
142 $writer->xmlElement('Identifier_',array('Catalog' => $this->getCatalog(),
143 'Entry' => $this->getEntry() ? $this->getEntry() : "ID1"));
144 }

References getCatalog(), and getEntry().

+ Here is the call graph for this function:

◆ toXML() [2/2]

ilMDIdentifier_::toXML ( $writer)

Reimplemented from ilMDBase.

Definition at line 142 of file class.ilMDIdentifier_.php.

143 {
144 $writer->xmlElement('Identifier_',array('Catalog' => $this->getCatalog(),
145 'Entry' => $this->getEntry()));
146 }

References getCatalog(), and getEntry().

+ Here is the call graph for this function:

◆ update() [1/2]

ilMDIdentifier_::update ( )

Reimplemented from ilMDBase.

Definition at line 69 of file class.ilMDIdentifier_.php.

70 {
71 global $ilDB;
72
73 if($this->getMetaId())
74 {
75 if($this->db->update('il_meta_identifier_',
76 $this->__getFields(),
77 array("meta_identifier__id" => array('integer',$this->getMetaId()))))
78 {
79 return true;
80 }
81 }
82 return false;
83 }

References $ilDB, and ilMDBase\getMetaId().

+ Here is the call graph for this function:

◆ update() [2/2]

ilMDIdentifier_::update ( )

Reimplemented from ilMDBase.

Definition at line 67 of file class.ilMDIdentifier_.php.

68 {
69 global $ilDB;
70
71 if($this->getMetaId())
72 {
73 if($this->db->autoExecute('il_meta_identifier_',
74 $this->__getFields(),
76 "meta_identifier__id = ".$ilDB->quote($this->getMetaId())))
77 {
78 return true;
79 }
80 }
81 return false;
82 }

References $ilDB, ilMDBase\getMetaId(), and ilDBConstants\MDB2_AUTOQUERY_UPDATE.

+ Here is the call graph for this function:

The documentation for this class was generated from the following files: