retrieve SAP notes

This commit is contained in:
2014-10-23 23:54:29 +02:00
parent e8a0d5adbf
commit 642ee4e8a8
9 changed files with 214 additions and 12 deletions

View File

@@ -694,6 +694,13 @@ class Databap extends PhpObject
@$oDom->loadHTML(file_get_contents($sUrl));
return $oDom->getElementsByTagName('body')->item(0);
}
public function getNote($iNote)
{
$this->oClassManagement->incClass('note');
$oNote = new Note($iNote);
return $oNote->getNote();
}
public function addUser($sFirstName, $sLastName, $sCompany, $sEmail='', $iClearance=self::CLEARANCE_MEMBER)
{