|
37 | 37 | use BigBlueButton\Parameters\IsMeetingRunningParameters; |
38 | 38 | use BigBlueButton\Parameters\JoinMeetingParameters; |
39 | 39 | use BigBlueButton\Parameters\PublishRecordingsParameters; |
40 | | -use BigBlueButton\Parameters\SetConfigXMLParameters; |
41 | 40 | use BigBlueButton\Parameters\UpdateRecordingsParameters; |
42 | 41 | use BigBlueButton\Responses\ApiVersionResponse; |
43 | 42 | use BigBlueButton\Responses\CreateMeetingResponse; |
44 | 43 | use BigBlueButton\Responses\DeleteRecordingsResponse; |
45 | 44 | use BigBlueButton\Responses\EndMeetingResponse; |
46 | | -use BigBlueButton\Responses\GetDefaultConfigXMLResponse; |
47 | 45 | use BigBlueButton\Responses\GetMeetingInfoResponse; |
48 | 46 | use BigBlueButton\Responses\GetMeetingsResponse; |
49 | 47 | use BigBlueButton\Responses\GetRecordingsResponse; |
|
55 | 53 | use BigBlueButton\Responses\IsMeetingRunningResponse; |
56 | 54 | use BigBlueButton\Responses\JoinMeetingResponse; |
57 | 55 | use BigBlueButton\Responses\PublishRecordingsResponse; |
58 | | -use BigBlueButton\Responses\SetConfigXMLResponse; |
59 | 56 | use BigBlueButton\Responses\UpdateRecordingsResponse; |
60 | 57 | use BigBlueButton\Util\UrlBuilder; |
61 | 58 | use SimpleXMLElement; |
@@ -159,8 +156,6 @@ public function getConnectionError(): ?int |
159 | 156 | /* __________________ BBB ADMINISTRATION METHODS _________________ */ |
160 | 157 | /* The methods in the following section support the following categories of the BBB API: |
161 | 158 | -- create |
162 | | - -- getDefaultConfigXML |
163 | | - -- setConfigXML |
164 | 159 | -- join |
165 | 160 | -- end |
166 | 161 | */ |
@@ -188,60 +183,6 @@ public function createMeeting($createMeetingParams) |
188 | 183 | return new CreateMeetingResponse($xml); |
189 | 184 | } |
190 | 185 |
|
191 | | - /** |
192 | | - * @return string |
193 | | - * @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. |
194 | | - */ |
195 | | - public function getDefaultConfigXMLUrl() |
196 | | - { |
197 | | - @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); |
198 | | - |
199 | | - return $this->urlBuilder->buildUrl(ApiMethod::GET_DEFAULT_CONFIG_XML); |
200 | | - } |
201 | | - |
202 | | - /** |
203 | | - * @return GetDefaultConfigXMLResponse |
204 | | - * @throws RuntimeException |
205 | | - * @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. |
206 | | - */ |
207 | | - public function getDefaultConfigXML() |
208 | | - { |
209 | | - @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); |
210 | | - |
211 | | - $xml = $this->processXmlResponse($this->getDefaultConfigXMLUrl()); |
212 | | - |
213 | | - return new GetDefaultConfigXMLResponse($xml); |
214 | | - } |
215 | | - |
216 | | - /** |
217 | | - * @return string |
218 | | - * @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. |
219 | | - */ |
220 | | - public function setConfigXMLUrl() |
221 | | - { |
222 | | - @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); |
223 | | - |
224 | | - return $this->urlBuilder->buildUrl(ApiMethod::SET_CONFIG_XML, '', false); |
225 | | - } |
226 | | - |
227 | | - /** |
228 | | - * @param SetConfigXMLParameters $setConfigXMLParams |
229 | | - * |
230 | | - * @return SetConfigXMLResponse |
231 | | - * @throws RuntimeException |
232 | | - * @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. |
233 | | - */ |
234 | | - public function setConfigXML($setConfigXMLParams) |
235 | | - { |
236 | | - @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); |
237 | | - |
238 | | - $setConfigXMLPayload = $this->urlBuilder->buildQs(ApiMethod::SET_CONFIG_XML, $setConfigXMLParams->getHTTPQuery()); |
239 | | - |
240 | | - $xml = $this->processXmlResponse($this->setConfigXMLUrl(), $setConfigXMLPayload, 'application/x-www-form-urlencoded'); |
241 | | - |
242 | | - return new SetConfigXMLResponse($xml); |
243 | | - } |
244 | | - |
245 | 186 | /** |
246 | 187 | * @param JoinMeetingParameters $joinMeetingParams |
247 | 188 | * |
|
0 commit comments