From 4fd26c7a0fe34c80ec8413d90b43176bdac920a3 Mon Sep 17 00:00:00 2001 From: Julio Montoya Date: Wed, 19 Feb 2014 12:19:47 +0100 Subject: [PATCH] Fixing PHP warnings see BT#7388 --- .../openmeetings/lib/openmeetings.class.php | 385 +++++++++--------- 1 file changed, 203 insertions(+), 182 deletions(-) diff --git a/plugin/openmeetings/lib/openmeetings.class.php b/plugin/openmeetings/lib/openmeetings.class.php index 1848a329da..5e7e4d9748 100644 --- a/plugin/openmeetings/lib/openmeetings.class.php +++ b/plugin/openmeetings/lib/openmeetings.class.php @@ -8,15 +8,16 @@ * Initialization */ namespace Chamilo\Plugin\OpenMeetings; + include_once __DIR__.'/session.class.php'; include_once __DIR__.'/room.class.php'; include_once __DIR__.'/user.class.php'; + /** * Open Meetings-Chamilo connector class */ class OpenMeetings { - public $url; public $user; public $pass; @@ -34,10 +35,12 @@ class OpenMeetings /** * Constructor (generates a connection to the API and the Chamilo settings - * required for the connection to the videoconference server) + * required for the connection to the video conference server) */ - function __construct() + public function __construct() { + global $_configuration; + // initialize video server settings from global settings $plugin = \OpenMeetingsPlugin::create(); @@ -45,11 +48,10 @@ class OpenMeetings $om_host = $plugin->get('host'); $om_user = $plugin->get('user'); $om_pass = $plugin->get('pass'); - global $_configuration; $accessUrl = api_get_access_url($_configuration['access_url']); - $this->externalType = substr($accessUrl['url'],strpos($accessUrl['url'],'://')+3,-1); - if (strcmp($this->externalType,'localhost') == 0) { - $this->externalType = substr(api_get_path(WEB_PATH),strpos(api_get_path(WEB_PATH),'://')+3,-1); + $this->externalType = substr($accessUrl['url'], strpos($accessUrl['url'], '://')+3, -1); + if (strcmp($this->externalType, 'localhost') == 0) { + $this->externalType = substr(api_get_path(WEB_PATH), strpos(api_get_path(WEB_PATH), '://')+3, -1); } $this->externalType = 'chamilolms.'.$this->externalType; @@ -82,14 +84,16 @@ class OpenMeetings $this->sessionId = $this->gateway->sessionId; } } + /** * Checks whether a user is teacher in the current course * @return bool True if the user can be considered a teacher in this course, false otherwise */ - function isTeacher() + public function isTeacher() { return api_is_course_admin() || api_is_coach() || api_is_platform_admin(); } + /** * Login the user with OM Server. This generates a session ID that is * specific to the current user, but that does not require specific user data @@ -124,11 +128,12 @@ class OpenMeetings } } */ + /* * Creating a Room for the meeting * @return bool True if the user is correct and false when is incorrect */ - function createMeeting($params) + public function createMeeting($params) { global $_configuration; //$id = \Database::insert($this->table, $params); @@ -191,6 +196,7 @@ class OpenMeetings return -1; } } + /** * Returns a meeting "join" URL * @param string The name of the meeting (usually the course code) @@ -199,7 +205,7 @@ class OpenMeetings * @assert ('') === false * @assert ('abcdefghijklmnopqrstuvwxyzabcdefghijklmno') === false */ - function joinMeeting($meetingId) + public function joinMeeting($meetingId) { if (empty($meetingId)) { return false; @@ -221,24 +227,26 @@ class OpenMeetings printf("