Example #1
0
 /**
  * Add attendee(s) to a meeting or retrieve a list of attendees
  * 
  * @param Array $authInfo Array containg WebEx authentication details
  * @param array $options An array of options such as name, email, meetingKey
  */
 public function __construct($authInfo, $options = false)
 {
     parent::__construct($authInfo);
     if ($options && is_array($options)) {
         foreach ($options as $name => $value) {
             $this->{$name} = $value;
         }
     }
 }
Example #2
0
 public function __construct($authInfo, $options = false)
 {
     parent::__construct($authInfo);
     if ($options && is_array($options)) {
         foreach ($options as $name => $value) {
             $this->{$name} = $value;
         }
     }
     if (is_null($this->meetingName)) {
         $this->meetingName = $this->getUsername() . "'s meeting";
     }
     if (is_null($this->startTime)) {
         $this->startTime = time() + 300;
     }
 }