Implement version::objectMoveChildren() on top of version::objectGetChildren()
This commit is contained in:
@@ -63,9 +63,16 @@ class downloadurl
|
||||
return $sReturn;
|
||||
}
|
||||
|
||||
public function objectSetParent($iId, $sClass = 'version')
|
||||
public function objectGetParent($sClass = '')
|
||||
{
|
||||
$this->iVersionId = $iId;
|
||||
$oAppData = new appData($this->iId, null, $this);
|
||||
return $oAppData->objectGetParent();
|
||||
}
|
||||
|
||||
public function objectSetParent($iNewId, $sClass = '')
|
||||
{
|
||||
$oAppData = new appData($this->iId, null, $this);
|
||||
return $oAppData->objectSetParent($iNewId, $sClass);
|
||||
}
|
||||
|
||||
function objectGetChildren($bIncludeDeleted = false)
|
||||
|
||||
Reference in New Issue
Block a user