|
|
|
@ -6,36 +6,39 @@ |
|
|
|
$t_settings = Database::get_main_table(TABLE_MAIN_SETTINGS_CURRENT); |
|
|
|
$t_settings = Database::get_main_table(TABLE_MAIN_SETTINGS_CURRENT); |
|
|
|
$t_options = Database::get_main_table(TABLE_MAIN_SETTINGS_OPTIONS); |
|
|
|
$t_options = Database::get_main_table(TABLE_MAIN_SETTINGS_OPTIONS); |
|
|
|
$sql = "INSERT INTO $t_settings |
|
|
|
$sql = "INSERT INTO $t_settings |
|
|
|
(variable, subkey, type, category, selected_value, title, comment, scope, subkeytext, access_url_changeable) |
|
|
|
(variable, subkey, type, category, selected_value, title, comment, scope, subkeytext, access_url_changeable) |
|
|
|
VALUES |
|
|
|
VALUES |
|
|
|
('bbb_plugin', '', 'radio', 'Extra', 'false', 'BigBlueButtonEnableTitle','BigBlueButtonEnableComment',NULL,NULL, 1)"; |
|
|
|
('bbb_plugin', '', 'radio', 'Extra', 'false', 'BigBlueButtonEnableTitle','BigBlueButtonEnableComment',NULL,NULL, 1)"; |
|
|
|
Database::query($sql); |
|
|
|
Database::query($sql); |
|
|
|
$sql = "INSERT INTO $t_options (variable, value, display_text) VALUES ('bbb_plugin', 'true', 'Yes')"; |
|
|
|
$sql = "INSERT INTO $t_options (variable, value, display_text) VALUES ('bbb_plugin', 'true', 'Yes')"; |
|
|
|
Database::query($sql); |
|
|
|
Database::query($sql); |
|
|
|
$sql = "INSERT INTO $t_options (variable, value, display_text) VALUES ('bbb_plugin', 'false', 'No')"; |
|
|
|
$sql = "INSERT INTO $t_options (variable, value, display_text) VALUES ('bbb_plugin', 'false', 'No')"; |
|
|
|
Database::query($sql); |
|
|
|
Database::query($sql); |
|
|
|
$sql = "INSERT INTO $t_settings |
|
|
|
$sql = "INSERT INTO $t_settings |
|
|
|
(variable, subkey, type, category, selected_value, title, comment, scope, subkeytext, access_url_changeable) |
|
|
|
(variable, subkey, type, category, selected_value, title, comment, scope, subkeytext, access_url_changeable) |
|
|
|
VALUES |
|
|
|
VALUES |
|
|
|
('bbb_plugin_host', '', 'textfield', 'Extra', '192.168.0.100', 'BigBlueButtonHostTitle','BigBlueButtonHostComment',NULL,NULL, 1)"; |
|
|
|
('bbb_plugin_host', '', 'textfield', 'Extra', '192.168.0.100', 'BigBlueButtonHostTitle','BigBlueButtonHostComment',NULL,NULL, 1)"; |
|
|
|
Database::query($sql); |
|
|
|
Database::query($sql); |
|
|
|
$sql = "INSERT INTO $t_settings |
|
|
|
$sql = "INSERT INTO $t_settings |
|
|
|
(variable, subkey, type, category, selected_value, title, comment, scope, subkeytext, access_url_changeable) |
|
|
|
(variable, subkey, type, category, selected_value, title, comment, scope, subkeytext, access_url_changeable) |
|
|
|
VALUES |
|
|
|
VALUES |
|
|
|
('bbb_plugin_salt', '', 'textfield', 'Extra', '', 'BigBlueButtonSecuritySaltTitle','BigBlueButtonSecuritySaltComment',NULL,NULL, 1)"; |
|
|
|
('bbb_plugin_salt', '', 'textfield', 'Extra', '', 'BigBlueButtonSecuritySaltTitle','BigBlueButtonSecuritySaltComment',NULL,NULL, 1)"; |
|
|
|
Database::query($sql); |
|
|
|
Database::query($sql); |
|
|
|
// update existing courses to add conference settings |
|
|
|
// update existing courses to add conference settings |
|
|
|
$t_courses = Database::get_main_table(TABLE_MAIN_COURSE); |
|
|
|
$t_courses = Database::get_main_table(TABLE_MAIN_COURSE); |
|
|
|
$sql = "SELECT id, code, db_name FROM $t_courses ORDER BY id"; |
|
|
|
$sql = "SELECT id, code, db_name FROM $t_courses ORDER BY id"; |
|
|
|
$res = Database::query($sql); |
|
|
|
$res = Database::query($sql); |
|
|
|
while ($row = Database::fetch_assoc($res)) { |
|
|
|
while ($row = Database::fetch_assoc($res)) { |
|
|
|
$t_course = Database::get_course_table(TABLE_COURSE_SETTING,$row['db_name']); |
|
|
|
$t_course = Database::get_course_table(TABLE_COURSE_SETTING,$row['db_name']); |
|
|
|
$sql_course = "INSERT INTO $t_course (variable,value,category) VALUES ('big_blue_button_meeting_name','','plugins')"; |
|
|
|
$sql_course = "INSERT INTO $t_course (variable,value,category) VALUES ('big_blue_button_meeting_name','','plugins')"; |
|
|
|
$r = Database::query($sql_course); |
|
|
|
$r = Database::query($sql_course); |
|
|
|
$sql_course = "INSERT INTO $t_course (variable,value,category) VALUES ('big_blue_button_attendee_password','','plugins')"; |
|
|
|
$sql_course = "INSERT INTO $t_course (variable,value,category) VALUES ('big_blue_button_attendee_password','','plugins')"; |
|
|
|
$r = Database::query($sql_course); |
|
|
|
$r = Database::query($sql_course); |
|
|
|
$sql_course = "INSERT INTO $t_course (variable,value,category) VALUES ('big_blue_button_moderator_password','','plugins')"; |
|
|
|
$sql_course = "INSERT INTO $t_course (variable,value,category) VALUES ('big_blue_button_moderator_password','','plugins')"; |
|
|
|
$r = Database::query($sql_course); |
|
|
|
$r = Database::query($sql_course); |
|
|
|
$sql_course = "INSERT INTO $t_course (variable,value,category) VALUES ('big_blue_button_welcome_message','','plugins')"; |
|
|
|
$sql_course = "INSERT INTO $t_course (variable,value,category) VALUES ('big_blue_button_welcome_message','','plugins')"; |
|
|
|
$r = Database::query($sql_course); |
|
|
|
$r = Database::query($sql_course); |
|
|
|
|
|
|
|
$t_tool = Database::get_course_table(TABLE_TOOL_LIST,$cdb); |
|
|
|
|
|
|
|
$sql_course = "INSERT INTO $t_tool VALUES ((NULL, 'videoconference','../../plugin/bbb/start.php','visio.gif','".string2binary(api_get_setting('course_create_active_tools', 'videoconference'))."','0','squaregrey.gif','NO','_self','plugin','0'))"; |
|
|
|
|
|
|
|
$r = Database::query($sql_course); |
|
|
|
} |
|
|
|
} |
|
|
|
|