|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace JoisarJignesh\Bigbluebutton\Facades; |
|
4
|
|
|
|
|
5
|
|
|
use Illuminate\Support\Facades\Facade; |
|
6
|
|
|
|
|
7
|
|
|
/** |
|
8
|
|
|
* @method static array all() |
|
9
|
|
|
* @method static isMeetingRunning($arrayOtherWiseObject) |
|
10
|
|
|
* @method static getMeetingInfo($arrayOtherWiseObject) |
|
11
|
|
|
* @method static create($arrayOtherWiseObject) |
|
12
|
|
|
* @method static close($arrayOtherWiseObject) |
|
13
|
|
|
* @method static join($arrayOtherWiseObject) |
|
14
|
|
|
* @method static start($arrayOtherWiseObject) |
|
15
|
|
|
* @method static getRecordings($arrayOtherWiseObject) |
|
16
|
|
|
* @method static publishRecordings($arrayOtherWiseObject) |
|
17
|
|
|
* @method static deleteRecordings($arrayOtherWiseObject) |
|
18
|
|
|
* @method static make() |
|
19
|
|
|
* @method static initCreateMeeting(array $array) |
|
20
|
|
|
* @method static initCloseMeeting(array $array) |
|
21
|
|
|
* @method static initJoinMeeting(array $array) |
|
22
|
|
|
* @method static initIsMeetingRunning(array $array) |
|
23
|
|
|
* @method static initGetMeetingInfo(array $array) |
|
24
|
|
|
* @method static initGetRecordings(array $array) |
|
25
|
|
|
* @method static initDeleteRecordings(array $array) |
|
26
|
|
|
* @method static initStart(array $array) |
|
27
|
|
|
* @method static initPublishRecordings(array $array) |
|
28
|
|
|
* @method static setConfigXml($arrayOtherWiseObject) |
|
29
|
|
|
* @method static getApiVersion() |
|
30
|
|
|
* @method static initSetConfigXml(array $array) |
|
31
|
|
|
* @method static getDefaultConfigXml() |
|
32
|
|
|
* @method static hooksCreate(array $array) |
|
33
|
|
|
* @method static hooksDestroy(array $array) |
|
34
|
|
|
* |
|
35
|
|
|
* @see \JoisarJignesh\Bigbluebutton\Bbb |
|
36
|
|
|
*/ |
|
37
|
|
|
class Bigbluebutton extends Facade |
|
38
|
|
|
{ |
|
39
|
|
|
/** |
|
40
|
|
|
* Get the registered name of the component. |
|
41
|
|
|
* |
|
42
|
|
|
* @return string |
|
43
|
|
|
*/ |
|
44
|
|
|
protected static function getFacadeAccessor() |
|
45
|
|
|
{ |
|
46
|
|
|
return 'Bigbluebutton'; |
|
47
|
|
|
} |
|
48
|
|
|
} |
|
49
|
|
|
|