-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #61 from satyammangroliya/release_9
Release 9
- Loading branch information
Showing
116 changed files
with
2,203 additions
and
1,628 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?php | ||
|
||
use BigBlueButton\Util\UrlBuilder; | ||
use BigBlueButton\BigBlueButton; | ||
|
||
/** | ||
* Class ilBBB | ||
*/ | ||
class ilBBB extends BigBlueButton | ||
{ | ||
public function __construct($securitySecret=null, $baseUrl=null) | ||
{ | ||
parent::__construct($baseUrl, $securitySecret); | ||
|
||
//Add Proxy | ||
if(ilProxySettings::_getInstance()->isActive()) | ||
{ | ||
$proxyHost = ilProxySettings::_getInstance()->getHost(); | ||
$proxyPort = ilProxySettings::_getInstance()->getPort(); | ||
$this->curlopts = [ | ||
CURLOPT_PROXY => $proxyHost . ":" . $proxyPort | ||
]; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<?php | ||
|
||
require_once __DIR__ . "/../vendor/autoload.php"; | ||
|
||
/** | ||
* Bigbluebutton repository object plugin | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
{ | ||
"require": { | ||
"bigbluebutton/bigbluebutton-api-php": "dev-master" | ||
}, | ||
"autoload": { | ||
"classmap": [ | ||
"classes" | ||
] | ||
} | ||
} | ||
} |
Oops, something went wrong.