You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
541 B
25 lines
541 B
<?php
|
|
/*
|
|
* Ticket Support
|
|
*/
|
|
|
|
class TckBlueButtonBN {
|
|
|
|
private $_securitySalt;
|
|
private $_bbbServerBaseUrl;
|
|
|
|
/* ___________ General Methods for the BigBlueButton Class __________ */
|
|
|
|
function __construct() {
|
|
/*
|
|
Establish just our basic elements in the constructor:
|
|
*/
|
|
// BASE CONFIGS - set these for your BBB server in config.php and they will
|
|
// simply flow in here via the constants:
|
|
$this->_securitySalt = CONFIG_SECURITY_SALT;
|
|
$this->_bbbServerBaseUrl = CONFIG_SERVER_BASE_URL;
|
|
}
|
|
|
|
} // END OF BIGBLUEBUTTON CLASS
|
|
|
|
?>
|
|
|