You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-36Lines changed: 4 additions & 36 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,8 +25,6 @@ Inc.**
25
25
* [Create a meeting](#create-a-meeting)
26
26
* [Join a meeting](#join-a-meeting)
27
27
* [End a meeting](#end-a-meeting)
28
-
* [Get default config](#get-default-config)
29
-
* [Set default config](#set-default-config)
30
28
*[Monitoring](#monitoring)
31
29
*[Get a list of meetings](#get-a-list-of-meetings)
32
30
*[Is a meeting running?](#is-a-meeting-running)
@@ -176,36 +174,6 @@ $endMeetingParams = new EndMeetingParameters($meetingID, $moderator_password);
176
174
$response = $bbb->endMeeting($endMeetingParams);
177
175
```
178
176
179
-
#### Get default config
180
-
> :warning: This API call does not have any effect since BBB 2.2 and was removed from BBB 2.3. Deprecated starting from version 4.0 of this library and to be removed in 4.1.
181
-
182
-
```php
183
-
$response = $bbb->getDefaultConfigXML();
184
-
185
-
if ($response->failed()) {
186
-
// error handling
187
-
}
188
-
189
-
$response->getRawXml();
190
-
```
191
-
192
-
#### Set default config
193
-
> :warning: This API call does not have any effect since BBB 2.2 and was removed from BBB 2.3. Deprecated starting from version 4.0 of this library and to be removed in 4.1.
194
-
195
-
```php
196
-
use BigBlueButton\Parameters\SetConfigXMLParameters;
197
-
198
-
$setConfigXmlParams = new SetConfigXMLParameters($meetingId);
@@ -468,12 +436,12 @@ final class CustomTransport implements TransportInterface
468
436
$contentType = $request->getContentType();
469
437
// aka request body
470
438
$payload = $request->getPayload();
471
-
439
+
472
440
// [...]
473
-
441
+
474
442
return new TransportResponse($reponseBody, $jsessionId);
475
-
}
476
-
}
443
+
}
444
+
}
477
445
~~~
478
446
479
447
Your `TranportInterface` implementation must use all values provided by the `TransportRequest` object passed (currently content type, URL and payload (body)).
/* The methods in the following section support the following categories of the BBB API:
184
181
-- create
185
-
-- getDefaultConfigXML
186
-
-- setConfigXML
187
182
-- join
188
183
-- end
189
184
*/
@@ -210,62 +205,8 @@ public function createMeeting(CreateMeetingParameters $createMeetingParams)
210
205
}
211
206
212
207
/**
213
-
* @return string
214
-
* @deprecated since 4.0 and will be removed in 4.1. The getDefaultConfigXML API was related to the old Flash client which is no longer available since BigBlueButton 2.2. In BigBlueButton 2.3 the whole API call was removed.
215
-
*/
216
-
publicfunctiongetDefaultConfigXMLUrl()
217
-
{
218
-
@trigger_error(sprintf('"%s()" is deprecated since 4.0 and will be removed in 4.1. The getDefaultConfigXML API was related to the old Flash client which is no longer available since BigBlueButton 2.2. In BigBlueButton 2.3 the whole API call was removed.', __METHOD__), E_USER_DEPRECATED);
* @deprecated since 4.0 and will be removed in 4.1. The getDefaultConfigXML API was related to the old Flash client which is no longer available since BigBlueButton 2.2. In BigBlueButton 2.3 the whole API call was removed.
229
-
*/
230
-
publicfunctiongetDefaultConfigXML()
231
-
{
232
-
@trigger_error(sprintf('"%s()" is deprecated since 4.0 and will be removed in 4.1. The getDefaultConfigXML API was related to the old Flash client which is no longer available since BigBlueButton 2.2. In BigBlueButton 2.3 the whole API call was removed.', __METHOD__), E_USER_DEPRECATED);
* @deprecated since 4.0 and will be removed in 4.1. The setConfigXML API was related to the old Flash client which is no longer available since BigBlueButton 2.2. In BigBlueButton 2.3 the whole API call was removed.
242
-
*/
243
-
publicfunctionsetConfigXMLUrl()
244
-
{
245
-
@trigger_error(sprintf('"%s()" is deprecated since 4.0 and will be removed in 4.1. The setConfigXML API was related to the old Flash client which is no longer available since BigBlueButton 2.2. In BigBlueButton 2.3 the whole API call was removed.', __METHOD__), E_USER_DEPRECATED);
* @deprecated since 4.0 and will be removed in 4.1. The setConfigXML API was related to the old Flash client which is no longer available since BigBlueButton 2.2. In BigBlueButton 2.3 the whole API call was removed.
@trigger_error(sprintf('"%s()" is deprecated since 4.0 and will be removed in 4.1. The setConfigXML API was related to the old Flash client which is no longer available since BigBlueButton 2.2. In BigBlueButton 2.3 the whole API call was removed.', __METHOD__), E_USER_DEPRECATED);
* @deprecated since 4.0 and will be removed in 4.1. The getDefaultConfigXML API was related to the old Flash client which is no longer available since BigBlueButton 2.2. In BigBlueButton 2.3 the whole API call was removed.
* @deprecated since 4.0 and will be removed in 4.1. The setConfigXML API was related to the old Flash client which is no longer available since BigBlueButton 2.2. In BigBlueButton 2.3 the whole API call was removed.
39
-
*/
40
-
publicconstSET_CONFIG_XML = 'setConfigXML';
41
-
/**
42
-
* Note: Unused in the whole project.
43
-
*
44
-
* @deprecated since 4.0 and will be removed in 4.1. The configXML API was related to the old Flash client which is no longer available since BigBlueButton 2.2. In BigBlueButton 2.3 the whole API call was removed.
0 commit comments