Public Member Functions | |
ilMDTaxonPath ($a_rbac_id=0, $a_obj_id=0, $a_obj_type= '') | |
& | getTaxonIds () |
& | getTaxon ($a_taxon_id) |
& | addTaxon () |
setSource ($a_source) | |
getSource () | |
setSourceLanguage (&$lng_obj) | |
& | getSourceLanguage () |
getSourceLanguageCode () | |
save () | |
update () | |
delete () | |
__getFields () | |
read () | |
toXML (&$writer) | |
_getIds ($a_rbac_id, $a_obj_id, $a_parent_id, $a_parent_type) | |
ilMDTaxonPath ($a_rbac_id=0, $a_obj_id=0, $a_obj_type= '') | |
& | getTaxonIds () |
& | getTaxon ($a_taxon_id) |
& | addTaxon () |
setSource ($a_source) | |
getSource () | |
setSourceLanguage (&$lng_obj) | |
& | getSourceLanguage () |
getSourceLanguageCode () | |
save () | |
update () | |
delete () | |
__getFields () | |
read () | |
toXML (&$writer) | |
_getIds ($a_rbac_id, $a_obj_id, $a_parent_id, $a_parent_type) |
Definition at line 33 of file class.ilMDTaxonPath.php.
ilMDTaxonPath::__getFields | ( | ) |
Definition at line 148 of file class.ilMDTaxonPath.php.
References ilMDBase::getObjId(), ilMDBase::getObjType(), ilMDBase::getParentId(), ilMDBase::getParentType(), ilMDBase::getRBACId(), getSource(), and getSourceLanguageCode().
{ return array('rbac_id' => $this->getRBACId(), 'obj_id' => $this->getObjId(), 'obj_type' => $this->getObjType(), 'parent_type' => $this->getParentType(), 'parent_id' => $this->getParentId(), 'source' => $this->getSource(), 'source_language' => $this->getSourceLanguageCode()); }
ilMDTaxonPath::__getFields | ( | ) |
Definition at line 148 of file class.ilMDTaxonPath.php.
References ilMDBase::getObjId(), ilMDBase::getObjType(), ilMDBase::getParentId(), ilMDBase::getParentType(), ilMDBase::getRBACId(), getSource(), getSourceLanguageCode(), and ilUtil::prepareDBString().
{ return array('rbac_id' => $this->getRBACId(), 'obj_id' => $this->getObjId(), 'obj_type' => ilUtil::prepareDBString($this->getObjType()), 'parent_type' => $this->getParentType(), 'parent_id' => $this->getParentId(), 'source' => ilUtil::prepareDBString($this->getSource()), 'source_language' => ilUtil::prepareDBString($this->getSourceLanguageCode())); }
ilMDTaxonPath::_getIds | ( | $ | a_rbac_id, | |
$ | a_obj_id, | |||
$ | a_parent_id, | |||
$ | a_parent_type | |||
) |
Definition at line 217 of file class.ilMDTaxonPath.php.
References $query, $res, and $row.
Referenced by getTaxonIds().
{ global $ilDB; $query = "SELECT meta_taxon_path_id FROM il_meta_taxon_path ". "WHERE rbac_id = '".$a_rbac_id."' ". "AND obj_id = '".$a_obj_id."' ". "AND parent_id = '".$a_parent_id."' ". "AND parent_type = '".$a_parent_type."'"; $res = $ilDB->query($query); while($row = $res->fetchRow(DB_FETCHMODE_OBJECT)) { $ids[] = $row->meta_taxon_path_id; } return $ids ? $ids : array(); }
ilMDTaxonPath::_getIds | ( | $ | a_rbac_id, | |
$ | a_obj_id, | |||
$ | a_parent_id, | |||
$ | a_parent_type | |||
) |
Definition at line 207 of file class.ilMDTaxonPath.php.
References $query, $res, and $row.
{ global $ilDB; $query = "SELECT meta_taxon_path_id FROM il_meta_taxon_path ". "WHERE rbac_id = '".$a_rbac_id."' ". "AND obj_id = '".$a_obj_id."' ". "AND parent_id = '".$a_parent_id."' ". "AND parent_type = '".$a_parent_type."'"; $res = $ilDB->query($query); while($row = $res->fetchRow(DB_FETCHMODE_OBJECT)) { $ids[] = $row->meta_taxon_path_id; } return $ids ? $ids : array(); }
& ilMDTaxonPath::addTaxon | ( | ) |
Definition at line 62 of file class.ilMDTaxonPath.php.
References ilMDBase::getMetaId(), ilMDBase::getObjId(), ilMDBase::getObjType(), and ilMDBase::getRBACId().
{ include_once 'Services/Migration/DBUpdate_426/classes/class.ilMDTaxon.php'; $tax =& new ilMDTaxon($this->getRBACId(),$this->getObjId(),$this->getObjType()); $tax->setParentId($this->getMetaId()); $tax->setParentType('meta_taxon_path'); return $tax; }
& ilMDTaxonPath::addTaxon | ( | ) |
Definition at line 62 of file class.ilMDTaxonPath.php.
References ilMDBase::getMetaId(), ilMDBase::getObjId(), ilMDBase::getObjType(), and ilMDBase::getRBACId().
{ include_once 'Services/MetaData/classes/class.ilMDTaxon.php'; $tax =& new ilMDTaxon($this->getRBACId(),$this->getObjId(),$this->getObjType()); $tax->setParentId($this->getMetaId()); $tax->setParentType('meta_taxon_path'); return $tax; }
ilMDTaxonPath::delete | ( | ) |
Reimplemented from ilMDBase.
Definition at line 127 of file class.ilMDTaxonPath.php.
References $id, $query, ilMDBase::getMetaId(), getTaxon(), and getTaxonIds().
{ if($this->getMetaId()) { $query = "DELETE FROM il_meta_taxon_path ". "WHERE meta_taxon_path_id = '".$this->getMetaId()."'"; $this->db->query($query); foreach($this->getTaxonIds() as $id) { $tax = $this->getTaxon($id); $tax->delete(); } return true; } return false; }
ilMDTaxonPath::delete | ( | ) |
Reimplemented from ilMDBase.
Definition at line 127 of file class.ilMDTaxonPath.php.
References $id, $query, ilMDBase::getMetaId(), getTaxon(), and getTaxonIds().
{ if($this->getMetaId()) { $query = "DELETE FROM il_meta_taxon_path ". "WHERE meta_taxon_path_id = '".$this->getMetaId()."'"; $this->db->query($query); foreach($this->getTaxonIds() as $id) { $tax = $this->getTaxon($id); $tax->delete(); } return true; } return false; }
ilMDTaxonPath::getSource | ( | ) |
Definition at line 78 of file class.ilMDTaxonPath.php.
{
return $this->source;
}
ilMDTaxonPath::getSource | ( | ) |
Definition at line 78 of file class.ilMDTaxonPath.php.
Referenced by __getFields(), and toXML().
{
return $this->source;
}
& ilMDTaxonPath::getSourceLanguage | ( | ) |
Definition at line 89 of file class.ilMDTaxonPath.php.
{ return is_object($this->source_language) ? $this->source_language : false; }
& ilMDTaxonPath::getSourceLanguage | ( | ) |
Definition at line 89 of file class.ilMDTaxonPath.php.
{ return is_object($this->source_language) ? $this->source_language : false; }
ilMDTaxonPath::getSourceLanguageCode | ( | ) |
Definition at line 93 of file class.ilMDTaxonPath.php.
Referenced by __getFields(), and toXML().
{ return is_object($this->source_language) ? $this->source_language->getLanguageCode() : false; }
ilMDTaxonPath::getSourceLanguageCode | ( | ) |
Definition at line 93 of file class.ilMDTaxonPath.php.
{ return is_object($this->source_language) ? $this->source_language->getLanguageCode() : false; }
& ilMDTaxonPath::getTaxon | ( | $ | a_taxon_id | ) |
Definition at line 49 of file class.ilMDTaxonPath.php.
Referenced by delete(), and toXML().
{ include_once 'Services/MetaData/classes/class.ilMDTaxon.php'; if(!$a_taxon_id) { return false; } $tax =& new ilMDTaxon(); $tax->setMetaId($a_taxon_id); return $tax; }
& ilMDTaxonPath::getTaxon | ( | $ | a_taxon_id | ) |
Definition at line 49 of file class.ilMDTaxonPath.php.
{ include_once 'Services/Migration/DBUpdate_426/classes/class.ilMDTaxon.php'; if(!$a_taxon_id) { return false; } $tax =& new ilMDTaxon(); $tax->setMetaId($a_taxon_id); return $tax; }
& ilMDTaxonPath::getTaxonIds | ( | ) |
Definition at line 43 of file class.ilMDTaxonPath.php.
References _getIds(), ilMDBase::getMetaId(), ilMDBase::getObjId(), and ilMDBase::getRBACId().
{ include_once 'Services/Migration/DBUpdate_426/classes/class.ilMDTaxon.php'; return ilMDTaxon::_getIds($this->getRBACId(),$this->getObjId(),$this->getMetaId(),'meta_taxon_path'); }
& ilMDTaxonPath::getTaxonIds | ( | ) |
Definition at line 43 of file class.ilMDTaxonPath.php.
References _getIds(), ilMDBase::getMetaId(), ilMDBase::getObjId(), and ilMDBase::getRBACId().
Referenced by delete(), and toXML().
{ include_once 'Services/MetaData/classes/class.ilMDTaxon.php'; return ilMDTaxon::_getIds($this->getRBACId(),$this->getObjId(),$this->getMetaId(),'meta_taxon_path'); }
ilMDTaxonPath::ilMDTaxonPath | ( | $ | a_rbac_id = 0 , |
|
$ | a_obj_id = 0 , |
|||
$ | a_obj_type = '' | |||
) |
Definition at line 35 of file class.ilMDTaxonPath.php.
References ilMDBase::ilMDBase().
{ parent::ilMDBase($a_rbac_id, $a_obj_id, $a_obj_type); }
ilMDTaxonPath::ilMDTaxonPath | ( | $ | a_rbac_id = 0 , |
|
$ | a_obj_id = 0 , |
|||
$ | a_obj_type = '' | |||
) |
Definition at line 35 of file class.ilMDTaxonPath.php.
References ilMDBase::ilMDBase().
{ parent::ilMDBase($a_rbac_id, $a_obj_id, $a_obj_type); }
ilMDTaxonPath::read | ( | ) |
Definition at line 159 of file class.ilMDTaxonPath.php.
References $query, $res, $row, ilMDBase::getMetaId(), ilMDBase::setObjId(), ilMDBase::setObjType(), ilMDBase::setParentId(), ilMDBase::setParentType(), ilMDBase::setRBACId(), and setSource().
{ include_once 'Services/MetaData/classes/class.ilMDLanguageItem.php'; if($this->getMetaId()) { $query = "SELECT * FROM il_meta_taxon_path ". "WHERE meta_taxon_path_id = '".$this->getMetaId()."'"; $res = $this->db->query($query); while($row = $res->fetchRow(DB_FETCHMODE_OBJECT)) { $this->setRBACId($row->rbac_id); $this->setObjId($row->obj_id); $this->setObjType($row->obj_type); $this->setParentId($row->parent_id); $this->setParentType($row->parent_type); $this->setSource($row->source); $this->source_language = new ilMDLanguageItem($row->source_language); } } return true; }
ilMDTaxonPath::read | ( | ) |
Definition at line 159 of file class.ilMDTaxonPath.php.
References $query, $res, $row, ilMDBase::getMetaId(), ilMDBase::setObjId(), ilMDBase::setObjType(), ilMDBase::setParentId(), ilMDBase::setParentType(), ilMDBase::setRBACId(), setSource(), and ilUtil::stripSlashes().
{ include_once 'Services/Migration/DBUpdate_426/classes/class.ilMDLanguageItem.php'; if($this->getMetaId()) { $query = "SELECT * FROM il_meta_taxon_path ". "WHERE meta_taxon_path_id = '".$this->getMetaId()."'"; $res = $this->db->query($query); while($row = $res->fetchRow(DB_FETCHMODE_OBJECT)) { $this->setRBACId($row->rbac_id); $this->setObjId($row->obj_id); $this->setObjType($row->obj_type); $this->setParentId($row->parent_id); $this->setParentType($row->parent_type); $this->setSource(ilUtil::stripSlashes($row->source)); $this->source_language = new ilMDLanguageItem($row->source_language); } } return true; }
ilMDTaxonPath::save | ( | ) |
Reimplemented from ilMDBase.
Definition at line 99 of file class.ilMDTaxonPath.php.
References ilMDBase::getMetaId(), and ilMDBase::setMetaId().
{ if($this->db->autoExecute('il_meta_taxon_path', $this->__getFields(), DB_AUTOQUERY_INSERT)) { $this->setMetaId($this->db->getLastInsertId()); return $this->getMetaId(); } return false; }
ilMDTaxonPath::save | ( | ) |
Reimplemented from ilMDBase.
Definition at line 99 of file class.ilMDTaxonPath.php.
References ilMDBase::getMetaId(), and ilMDBase::setMetaId().
{ if($this->db->autoExecute('il_meta_taxon_path', $this->__getFields(), DB_AUTOQUERY_INSERT)) { $this->setMetaId($this->db->getLastInsertId()); return $this->getMetaId(); } return false; }
ilMDTaxonPath::setSource | ( | $ | a_source | ) |
Definition at line 74 of file class.ilMDTaxonPath.php.
{ $this->source = $a_source; }
ilMDTaxonPath::setSource | ( | $ | a_source | ) |
Definition at line 74 of file class.ilMDTaxonPath.php.
Referenced by read().
{ $this->source = $a_source; }
ilMDTaxonPath::setSourceLanguage | ( | &$ | lng_obj | ) |
Definition at line 82 of file class.ilMDTaxonPath.php.
{
if(is_object($lng_obj))
{
$this->source_language = $lng_obj;
}
}
ilMDTaxonPath::setSourceLanguage | ( | &$ | lng_obj | ) |
Definition at line 82 of file class.ilMDTaxonPath.php.
{
if(is_object($lng_obj))
{
$this->source_language = $lng_obj;
}
}
ilMDTaxonPath::toXML | ( | &$ | writer | ) |
Reimplemented from ilMDBase.
Definition at line 188 of file class.ilMDTaxonPath.php.
References $id, ilMDBase::getObjId(), ilMDBase::getRBACId(), getSource(), getSourceLanguageCode(), getTaxon(), and getTaxonIds().
{ $writer->xmlStartTag('TaxonPath'); $writer->xmlElement('Source',array('Language' => $this->getSourceLanguageCode() ? $this->getSourceLanguageCode() : 'en'), $this->getSource()); // Taxon $taxs = $this->getTaxonIds(); foreach($taxs as $id) { $tax =& $this->getTaxon($id); $tax->toXML($writer); } if(!count($taxs)) { include_once 'Services/MetaData/classes/class.ilMDTaxon.php'; $tax = new ilMDTaxon($this->getRBACId(),$this->getObjId()); $tax->toXML($writer); } $writer->xmlEndTag('TaxonPath'); }
ilMDTaxonPath::toXML | ( | &$ | writer | ) |
Reimplemented from ilMDBase.
Definition at line 188 of file class.ilMDTaxonPath.php.
References $id, getSource(), getSourceLanguageCode(), getTaxon(), and getTaxonIds().
{ $writer->xmlStartTag('TaxonPath'); $writer->xmlElement('Source',array('Language' => $this->getSourceLanguageCode()),$this->getSource()); // Taxon foreach($this->getTaxonIds() as $id) { $tax =& $this->getTaxon($id); $tax->toXML($writer); } $writer->xmlEndTag('TaxonPath'); }
ilMDTaxonPath::update | ( | ) |
Reimplemented from ilMDBase.
Definition at line 112 of file class.ilMDTaxonPath.php.
References ilMDBase::getMetaId().
{ if($this->getMetaId()) { if($this->db->autoExecute('il_meta_taxon_path', $this->__getFields(), DB_AUTOQUERY_UPDATE, "meta_taxon_path_id = '".$this->getMetaId()."'")) { return true; } } return false; }
ilMDTaxonPath::update | ( | ) |
Reimplemented from ilMDBase.
Definition at line 112 of file class.ilMDTaxonPath.php.
References ilMDBase::getMetaId().
{ if($this->getMetaId()) { if($this->db->autoExecute('il_meta_taxon_path', $this->__getFields(), DB_AUTOQUERY_UPDATE, "meta_taxon_path_id = '".$this->getMetaId()."'")) { return true; } } return false; }