Public Member Functions | |
ilSoapRepositoryStructureObject ($objId, $type, $title, $description, $refId) | |
setRefId ($value) | |
set current refId | |
getRefId () | |
return current ref id | |
getInternalLink () | |
return current internal_link | |
getGotoLink () | |
return current goto_link | |
_getXMLAttributes () | |
get xml tag attributes | |
_getTagName () | |
Data Fields | |
$ref_id |
Definition at line 38 of file class.ilSoapRepositoryStructureObject.php.
ilSoapRepositoryStructureObject::_getTagName | ( | ) |
Reimplemented from ilSoapStructureObject.
Definition at line 79 of file class.ilSoapRepositoryStructureObject.php.
{ return "RepositoryObject"; }
ilSoapRepositoryStructureObject::_getXMLAttributes | ( | ) |
get xml tag attributes
Reimplemented from ilSoapStructureObject.
Definition at line 72 of file class.ilSoapRepositoryStructureObject.php.
References ilSoapStructureObject::getObjId(), getRefId(), and ilSoapStructureObject::getType().
{ return array( 'type' => $this->getType(), 'obj_id' => $this->getObjId(), 'ref_id' => $this->getRefId() ); }
ilSoapRepositoryStructureObject::getGotoLink | ( | ) |
return current goto_link
Reimplemented from ilSoapStructureObject.
Definition at line 68 of file class.ilSoapRepositoryStructureObject.php.
References getRefId().
{ return ILIAS_HTTP_PATH."/". "goto.php?target=".$this->getType()."_".$this->getRefId()."&client_id=".CLIENT_ID; }
ilSoapRepositoryStructureObject::getInternalLink | ( | ) |
return current internal_link
Reimplemented from ilSoapStructureObject.
Definition at line 64 of file class.ilSoapRepositoryStructureObject.php.
References getRefId(), and ilSoapStructureObject::getTitle().
ilSoapRepositoryStructureObject::getRefId | ( | ) |
return current ref id
Definition at line 59 of file class.ilSoapRepositoryStructureObject.php.
Referenced by _getXMLAttributes(), getGotoLink(), and getInternalLink().
{
return $this->ref_id;
}
ilSoapRepositoryStructureObject::ilSoapRepositoryStructureObject | ( | $ | objId, | |
$ | type, | |||
$ | title, | |||
$ | description, | |||
$ | refId | |||
) |
Definition at line 41 of file class.ilSoapRepositoryStructureObject.php.
References ilSoapStructureObject::$description, ilSoapStructureObject::$title, ilSoapStructureObject::$type, ilSoapStructureObject::ilSoapStructureObject(), and setRefId().
{ parent::ilSoapStructureObject($objId, $type, $title, $description); $this->setRefId ($refId); }
ilSoapRepositoryStructureObject::setRefId | ( | $ | value | ) |
set current refId
Definition at line 50 of file class.ilSoapRepositoryStructureObject.php.
Referenced by ilSoapRepositoryStructureObject().
{ $this->ref_id= $value; }
ilSoapRepositoryStructureObject::$ref_id |
Definition at line 39 of file class.ilSoapRepositoryStructureObject.php.