/** * Removes a content from the Adobe Connect server * @param String $sco_id */ public function deleteContent($sco_id) { $session = $this->xmlApi->getBreezeSession(); if ($session != NULL && $this->xmlApi->login($this->adminLogin, $this->adminPass, $session)) { $this->xmlApi->deleteContent($sco_id, $session); } }