get('tool_enable'); $bbb_host = $plugin->get('host'); $bbb_salt = $plugin->get('salt'); //$course_code = api_get_course_id(); $this->logout_url = api_get_path(WEB_PLUGIN_PATH).'bbb/listing.php'; $this->table = Database::get_main_table('plugin_bbb_meeting'); if ($bbb_plugin == true) { $user_info = api_get_user_info(); $this->user_complete_name = $user_info['complete_name']; $this->salt = $bbb_salt; $info = parse_url($bbb_host); $this->url = $bbb_host.'/bigbluebutton/'; if (isset($info['scheme'])) { $this->protocol = $info['scheme'].'://'; $this->url = str_replace($this->protocol, '', $this->url); } // Setting BBB api define('CONFIG_SECURITY_SALT', $this->salt); define('CONFIG_SERVER_BASE_URL', $this->url); $this->api = new TckBlueButtonBN(); $this->plugin_enabled = true; }*/ } /** * 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 is_teacher() { return api_is_course_admin() || api_is_coach() || api_is_platform_admin(); } }