You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
873 B
14 lines
873 B
<?php
|
|
/**
|
|
* This script should be included by add_course.lib.inc.php when adding a new course
|
|
*/
|
|
//$cdb is defined inside the fillDbCourse() function which is calling this script
|
|
$t_course = Database::get_course_table(TABLE_COURSE_SETTING,$cdb);
|
|
$sql_course = "INSERT INTO $t_course (variable,value,category) VALUES ('big_blue_button_meeting_name','','plugins')";
|
|
$r = Database::query($sql_course);
|
|
$sql_course = "INSERT INTO $t_course (variable,value,category) VALUES ('big_blue_button_attendee_password','','plugins')";
|
|
$r = Database::query($sql_course);
|
|
$sql_course = "INSERT INTO $t_course (variable,value,category) VALUES ('big_blue_button_moderator_password','','plugins')";
|
|
$r = Database::query($sql_course);
|
|
$sql_course = "INSERT INTO $t_course (variable,value,category) VALUES ('big_blue_button_welcome_message','','plugins')";
|
|
$r = Database::query($sql_course); |