Conference Plugin issue
Posted: Wed Feb 23, 2022 3:58 pm
I am trying to create a simple plugin for joining another conference ( not BigBlue Button). It always gives wrong url for conference. Upon investigation found that file /appScs/lib/lib.conference.1.3.plugins.php has hardcoded bigblue button.
hence confernce additionl plugin can not be made except BigBlueButton
hence confernce additionl plugin can not be made except BigBlueButton
Code: Select all
function getUrl($idConference,$room_type) {
$conference = $this->roomInfo($idConference);
$pg = new PluginManager('Conference');
$classconference = $pg->get_plugin('ConferenceBBB');// PluginManager::getPlugins($plugin_conference['name']); #PLUGIN_SYSTEM_OLD
$url = $classconference ->getUrl($idConference,$room_type);
return $url;
}