|
|
|
@ -39,7 +39,7 @@ if ($limitTeacherAccess && !api_is_platform_admin()) { |
|
|
|
|
$_course = api_get_course_info(); |
|
|
|
|
|
|
|
|
|
// document path |
|
|
|
|
$documentPath = api_get_path(SYS_COURSE_PATH).$_course['path'].'/document'; |
|
|
|
|
//$documentPath = api_get_path(SYS_COURSE_PATH).$_course['path'].'/document'; |
|
|
|
|
$origin = api_get_origin(); |
|
|
|
|
$is_allowedToEdit = api_is_allowed_to_edit(null, true) || |
|
|
|
|
api_is_drh() || |
|
|
|
@ -298,7 +298,7 @@ if (isset($_REQUEST['comments']) && |
|
|
|
|
Display::addFlash(Display::return_message(get_lang('Learning path updated'))); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
$sql = "UPDATE $TBL_LP_ITEM_VIEW |
|
|
|
|
$sql = "UPDATE $TBL_LP_ITEM_VIEW |
|
|
|
|
SET score = '".floatval($tot)."' |
|
|
|
|
$statusCondition |
|
|
|
|
WHERE c_id = ".$course_id." AND id = ".$lp_item_view_id; |
|
|
|
@ -433,7 +433,7 @@ if (($is_allowedToEdit || $is_tutor || api_is_coach()) && |
|
|
|
|
) { |
|
|
|
|
// Close the user attempt otherwise left pending |
|
|
|
|
$exe_id = (int) $_GET['id']; |
|
|
|
|
$sql = "UPDATE $TBL_TRACK_EXERCISES SET status = '' |
|
|
|
|
$sql = "UPDATE $TBL_TRACK_EXERCISES SET status = '' |
|
|
|
|
WHERE exe_id = $exe_id AND status = 'incomplete'"; |
|
|
|
|
Database::query($sql); |
|
|
|
|
} |
|
|
|
@ -669,7 +669,7 @@ $extra_params['height'] = 'auto'; |
|
|
|
|
$extra_params['gridComplete'] = " |
|
|
|
|
defaultGroupId = Cookies.get('default_group_".$exercise_id."'); |
|
|
|
|
if (typeof defaultGroupId !== 'undefined') { |
|
|
|
|
$('#gs_group_name').val(defaultGroupId); |
|
|
|
|
$('#gs_group_name').val(defaultGroupId); |
|
|
|
|
} |
|
|
|
|
"; |
|
|
|
|
|
|
|
|
@ -682,18 +682,18 @@ if (typeof defaultGroupId !== 'undefined') { |
|
|
|
|
} else { |
|
|
|
|
// get from cookies |
|
|
|
|
defaultGroupId = Cookies.get('default_group_".$exercise_id."'); |
|
|
|
|
$('#gs_group_name').val(defaultGroupId); |
|
|
|
|
$('#gs_group_name').val(defaultGroupId); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (typeof defaultGroupId !== 'undefined') { |
|
|
|
|
var posted_data = $(\"#results\").jqGrid('getGridParam', 'postData'); |
|
|
|
|
var extraFilter = ',{\"field\":\"group_id\",\"op\":\"eq\",\"data\":\"'+ defaultGroupId +'\"}]}'; |
|
|
|
|
var filters = posted_data.filters; |
|
|
|
|
var stringObj = new String(filters); |
|
|
|
|
stringObj.replace(']}', extraFilter); |
|
|
|
|
|
|
|
|
|
var extraFilter = ',{\"field\":\"group_id\",\"op\":\"eq\",\"data\":\"'+ defaultGroupId +'\"}]}'; |
|
|
|
|
var filters = posted_data.filters; |
|
|
|
|
var stringObj = new String(filters); |
|
|
|
|
stringObj.replace(']}', extraFilter); |
|
|
|
|
|
|
|
|
|
posted_data['group_id_in_toolbar'] = defaultGroupId; |
|
|
|
|
$(this).jqGrid('setGridParam', 'postData', posted_data); |
|
|
|
|
$(this).jqGrid('setGridParam', 'postData', posted_data); |
|
|
|
|
} |
|
|
|
|
"; |
|
|
|
|
|
|
|
|
|