Public Member Functions

ilMDIdentifier Class Reference

Inheritance diagram for ilMDIdentifier:
Collaboration diagram for ilMDIdentifier:

Public Member Functions

 ilMDIdentifier ($a_rbac_id=0, $a_obj_id=0, $a_obj_type= '')
 setCatalog ($a_catalog)
 getCatalog ()
 setEntry ($a_entry)
 getEntry ()
 save ()
 update ()
 delete ()
 __getFields ()
 read ()
 toXML (&$writer, $a_overwrite_id=false)
 _getIds ($a_rbac_id, $a_obj_id, $a_parent_id, $a_parent_type)
 ilMDIdentifier ($a_rbac_id=0, $a_obj_id=0, $a_obj_type= '')
 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)

Detailed Description

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


Member Function Documentation

ilMDIdentifier::__getFields (  ) 

Definition at line 105 of file class.ilMDIdentifier.php.

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

        {
                return array('rbac_id'  => $this->getRBACId(),
                                         'obj_id'       => $this->getObjId(),
                                         'obj_type'     => $this->getObjType(),
                                         'parent_type' => $this->getParentType(),
                                         'parent_id' => $this->getParentId(),
                                         'catalog'      => $this->getCatalog(),
                                         'entry'        => $this->getEntry());

        }

Here is the call graph for this function:

ilMDIdentifier::__getFields (  ) 

Definition at line 105 of file class.ilMDIdentifier.php.

References getCatalog(), getEntry(), ilMDBase::getObjId(), ilMDBase::getObjType(), ilMDBase::getParentId(), ilMDBase::getParentType(), ilMDBase::getRBACId(), 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(),
                                         'catalog'      => ilUtil::prepareDBString($this->getCatalog()),
                                         'entry'        => ilUtil::prepareDBString($this->getEntry()));

        }

Here is the call graph for this function:

ilMDIdentifier::_getIds ( a_rbac_id,
a_obj_id,
a_parent_id,
a_parent_type 
)

Definition at line 172 of file class.ilMDIdentifier.php.

References $query, $res, and $row.

Referenced by ilMDMetaMetadata::getIdentifierIds(), and ilMDGeneral::getIdentifierIds().

        {
                global $ilDB;

                $query = "SELECT meta_identifier_id FROM il_meta_identifier ".
                        "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_identifier_id;
                }
                return $ids ? $ids : array();
        }

Here is the caller graph for this function:

ilMDIdentifier::_getIds ( a_rbac_id,
a_obj_id,
a_parent_id,
a_parent_type 
)

Definition at line 152 of file class.ilMDIdentifier.php.

References $query, $res, and $row.

        {
                global $ilDB;

                $query = "SELECT meta_identifier_id FROM il_meta_identifier ".
                        "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_identifier_id;
                }
                return $ids ? $ids : array();
        }

ilMDIdentifier::delete (  ) 

Reimplemented from ilMDBase.

Definition at line 90 of file class.ilMDIdentifier.php.

References $query, and ilMDBase::getMetaId().

        {
                if($this->getMetaId())
                {
                        $query = "DELETE FROM il_meta_identifier ".
                                "WHERE meta_identifier_id = '".$this->getMetaId()."'";
                        
                        $this->db->query($query);
                        
                        return true;
                }
                return false;
        }

Here is the call graph for this function:

ilMDIdentifier::delete (  ) 

Reimplemented from ilMDBase.

Definition at line 90 of file class.ilMDIdentifier.php.

References $query, and ilMDBase::getMetaId().

        {
                if($this->getMetaId())
                {
                        $query = "DELETE FROM il_meta_identifier ".
                                "WHERE meta_identifier_id = '".$this->getMetaId()."'";
                        
                        $this->db->query($query);
                        
                        return true;
                }
                return false;
        }

Here is the call graph for this function:

ilMDIdentifier::getCatalog (  ) 

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

Referenced by __getFields(), and toXML().

        {
                return $this->catalog;
        }

Here is the caller graph for this function:

ilMDIdentifier::getCatalog (  ) 

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

        {
                return $this->catalog;
        }

ilMDIdentifier::getEntry (  ) 

Definition at line 56 of file class.ilMDIdentifier.php.

        {
                return $this->entry;
        }

ilMDIdentifier::getEntry (  ) 

Definition at line 56 of file class.ilMDIdentifier.php.

Referenced by __getFields(), and toXML().

        {
                return $this->entry;
        }

Here is the caller graph for this function:

ilMDIdentifier::ilMDIdentifier ( a_rbac_id = 0,
a_obj_id = 0,
a_obj_type = '' 
)

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

References ilMDBase::ilMDBase().

        {
                parent::ilMDBase($a_rbac_id,
                                                 $a_obj_id,
                                                 $a_obj_type);
        }

Here is the call graph for this function:

ilMDIdentifier::ilMDIdentifier ( a_rbac_id = 0,
a_obj_id = 0,
a_obj_type = '' 
)

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

References ilMDBase::ilMDBase().

        {
                parent::ilMDBase($a_rbac_id,
                                                 $a_obj_id,
                                                 $a_obj_type);
        }

Here is the call graph for this function:

ilMDIdentifier::read (  ) 

Definition at line 117 of file class.ilMDIdentifier.php.

References $query, $res, $row, ilMDBase::getMetaId(), setCatalog(), setEntry(), ilMDBase::setObjId(), ilMDBase::setObjType(), ilMDBase::setParentId(), ilMDBase::setParentType(), and ilMDBase::setRBACId().

        {
                if($this->getMetaId())
                {
                        $query = "SELECT * FROM il_meta_identifier ".
                                "WHERE meta_identifier_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->setCatalog($row->catalog);
                                $this->setEntry($row->entry);
                        }
                }
                return true;
        }

Here is the call graph for this function:

ilMDIdentifier::read (  ) 

Definition at line 117 of file class.ilMDIdentifier.php.

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

        {
                if($this->getMetaId())
                {
                        $query = "SELECT * FROM il_meta_identifier ".
                                "WHERE meta_identifier_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->setCatalog(ilUtil::stripSlashes($row->catalog));
                                $this->setEntry(ilUtil::stripSlashes($row->entry));
                        }
                }
                return true;
        }

Here is the call graph for this function:

ilMDIdentifier::save (  ) 

Reimplemented from ilMDBase.

Definition at line 62 of file class.ilMDIdentifier.php.

References ilMDBase::getMetaId(), and ilMDBase::setMetaId().

        {
                if($this->db->autoExecute('il_meta_identifier',
                                                                  $this->__getFields(),
                                                                  DB_AUTOQUERY_INSERT))
                {
                        $this->setMetaId($this->db->getLastInsertId());

                        return $this->getMetaId();
                }
                return false;
        }

Here is the call graph for this function:

ilMDIdentifier::save (  ) 

Reimplemented from ilMDBase.

Definition at line 62 of file class.ilMDIdentifier.php.

References ilMDBase::getMetaId(), and ilMDBase::setMetaId().

        {
                if($this->db->autoExecute('il_meta_identifier',
                                                                  $this->__getFields(),
                                                                  DB_AUTOQUERY_INSERT))
                {
                        $this->setMetaId($this->db->getLastInsertId());

                        return $this->getMetaId();
                }
                return false;
        }

Here is the call graph for this function:

ilMDIdentifier::setCatalog ( a_catalog  ) 

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

Referenced by read().

        {
                $this->catalog = $a_catalog;
        }

Here is the caller graph for this function:

ilMDIdentifier::setCatalog ( a_catalog  ) 

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

        {
                $this->catalog = $a_catalog;
        }

ilMDIdentifier::setEntry ( a_entry  ) 

Definition at line 52 of file class.ilMDIdentifier.php.

Referenced by read().

        {
                $this->entry = $a_entry;
        }

Here is the caller graph for this function:

ilMDIdentifier::setEntry ( a_entry  ) 

Definition at line 52 of file class.ilMDIdentifier.php.

        {
                $this->entry = $a_entry;
        }

ilMDIdentifier::toXML ( &$  writer  ) 

Reimplemented from ilMDBase.

Definition at line 144 of file class.ilMDIdentifier.php.

References getCatalog(), and getEntry().

        {
                $writer->xmlElement('Identifier',array('Catalog' => $this->getCatalog(),
                                                                                                'Entry'   => $this->getEntry()));
        }

Here is the call graph for this function:

ilMDIdentifier::toXML ( &$  writer,
a_overwrite_id = false 
)

Definition at line 144 of file class.ilMDIdentifier.php.

References getCatalog(), getEntry(), ilMDBase::getExportMode(), ilMDBase::getObjId(), ilMDBase::getObjType(), and ilMDBase::getRBACId().

        {
                $entry_default = ($this->getObjId() == 0)
                        ? "il_".IL_INST_ID."_".$this->getObjType()."_".$this->getRBACId()
                        : "il_".IL_INST_ID."_".$this->getObjType()."_".$this->getObjId();

                $entry = $this->getEntry() ? $this->getEntry() : $entry_default; 
                $catalog = $this->getCatalog();

                if ($this->getExportMode() && $this->getCatalog() != "ILIAS_NID")
                {
                        $entry = $entry_default;
                        $catalog = "ILIAS";
                }

                if(strlen($catalog))
                {
                        $writer->xmlElement('Identifier',array('Catalog' => $catalog,
                                                                                                   'Entry'       => $entry));
                }
                else
                {
                        $writer->xmlElement('Identifier',array('Entry' => $entry));
                }
        }

Here is the call graph for this function:

ilMDIdentifier::update (  ) 

Reimplemented from ilMDBase.

Definition at line 75 of file class.ilMDIdentifier.php.

References ilMDBase::getMetaId().

        {
                if($this->getMetaId())
                {
                        if($this->db->autoExecute('il_meta_identifier',
                                                                          $this->__getFields(),
                                                                          DB_AUTOQUERY_UPDATE,
                                                                          "meta_identifier_id = '".$this->getMetaId()."'"))
                        {
                                return true;
                        }
                }
                return false;
        }

Here is the call graph for this function:

ilMDIdentifier::update (  ) 

Reimplemented from ilMDBase.

Definition at line 75 of file class.ilMDIdentifier.php.

References ilMDBase::getMetaId().

        {
                if($this->getMetaId())
                {
                        if($this->db->autoExecute('il_meta_identifier',
                                                                          $this->__getFields(),
                                                                          DB_AUTOQUERY_UPDATE,
                                                                          "meta_identifier_id = '".$this->getMetaId()."'"))
                        {
                                return true;
                        }
                }
                return false;
        }

Here is the call graph for this function:


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