Skip to content

Commit

Permalink
Add new parameters to meeting class
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Auditor committed Mar 22, 2018
1 parent 5c17a81 commit 761fdba
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions src/BigBlueButton/Member/Meeting.php
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,34 @@ class Meeting
*/
protected $allowStartStopRecording;

/**
* User shared webcams will only appear to moderators.
*
* @var bool
*/
protected $webcamsOnlyForModerator;

/**
* URL to logo for the flash client.
*
* @var string
*/
protected $logo;

/**
* Copyright statement for flash client.
*
* @var string
*/
protected $copyright;

/**
* Mute on start.
*
* @var bool
*/
protected $muteOnStart;

// Read-only properties

/**
Expand Down Expand Up @@ -308,6 +336,17 @@ class Meeting
* recording. This means the meeting can start recording automatically
* (autoStartRecording=true) with the user able to stop/start recording
* from the client.
* - webcamsOnlyForModerator (boolean): Setting
* 'webcamsOnlyForModerator=true' will cause all webcams shared by
* viewers during this meeting to only appear for moderators (added 1.1)
* - logo (string): Setting
* 'logo=http://www.example.com/my-custom-logo.png' will replace the
* default logo in the Flash client. (added 2.0)
* - copyright (string): Setting 'copyright=My custom copyright' will
* replace the default copyright on the footer of the Flash client.
* (added 2.0)
* - muteOnStart (boolean): Setting 'muteOnStart=true' will mute all users
* when the meeting starts. (added 2.0)
*
* @param \sanduhrs\BigBlueButton\Client $client
*/
Expand All @@ -329,6 +368,10 @@ public function __construct($attributes, Client $client)
'moderatorOnlyMessage' => '',
'autoStartRecording' => false,
'allowStartStopRecording' => true,
'webcamsOnlyForModerator' => false,
'logo' => '',
'copyright' => '',
'muteOnStart' => false,
];

$this->attendees = [];
Expand Down

0 comments on commit 761fdba

Please sign in to comment.