/** * Adds a content to the Adobe Connect server * @param String $title * @param String $description * @return String * @throws ilAdobeConnectDuplicateContentException */ public function addContent($title = "untitled", $description = "") { $session = $this->xmlApi->getBreezeSession(); if ($session != NULL && $this->xmlApi->login($this->adminLogin, $this->adminPass, $session)) { return $this->xmlApi->addContent($this->sco_id, $title, $description, $session); } }