Actualización
This commit is contained in:
25
plugin/openmeetings/lib/openmeetings_api.php
Normal file
25
plugin/openmeetings/lib/openmeetings_api.php
Normal file
@@ -0,0 +1,25 @@
|
||||
<?php
|
||||
/**
|
||||
* OpenMeetings API.
|
||||
*
|
||||
* @package chamilo.plugin.openmeetings
|
||||
*/
|
||||
/**
|
||||
* Class OpenMeetingsAPI.
|
||||
*/
|
||||
class OpenMeetingsAPI
|
||||
{
|
||||
private $_user;
|
||||
private $_pass;
|
||||
private $_serverBaseUrl;
|
||||
|
||||
/**
|
||||
* Constructor.
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
$this->_user = CONFIG_OPENMEETINGS_USER;
|
||||
$this->_pass = CONFIG_OPENMEETINGS_PASS;
|
||||
$this->_serverBaseUrl = CONFIG_OPENMEETINGS_SERVER_URL;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user