コード例 #1
0
 /**
  *  Add a new host to the meeting
  * @param String $login
  * @return boolean              Returns true if everything is ok
  */
 public function addParticipant($login)
 {
     $session = $this->xmlApi->getBreezeSession();
     //check if adobe connect account exists
     if ($session != NULL && $this->xmlApi->login($this->adminLogin, $this->adminPass, $session)) {
         $participant = $this->xmlApi->addMeetingParticipant($this->sco_id, $login, $session);
         return $participant;
     }
 }