本文整理汇总了PHP中Courses::markStudentAsOptedIn方法的典型用法代码示例。如果您正苦于以下问题:PHP Courses::markStudentAsOptedIn方法的具体用法?PHP Courses::markStudentAsOptedIn怎么用?PHP Courses::markStudentAsOptedIn使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Courses
的用法示例。
在下文中一共展示了Courses::markStudentAsOptedIn方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: exams
$l10n->addResource(__DIR__ . '/l10n/courses.json');
$viewFile = 'views/courses.php';
}
} else {
if ($_GET['page'] === "mark-as-opted-out") {
if ($model->verifyRequestIsValid($_POST)) {
$model->markStudentAsOptedOut($_POST);
$loggers['audit']->info("Student {$data['student_num']} opted-out of accommodations for course {$data['course_code']}{$data['course_section']} for session {$data['session']}");
//Since the student has opted out, it is now time to cancel confirm exams
$model->cancelFutureConfirmedExams($_POST);
$loggers['audit']->info("Future confirmed exams (for relevant courses) cancelled for student {$data['student_num']} due to opting out of accommodations");
}
} else {
if ($_GET['page'] === "mark-as-opted-in") {
if ($model->verifyRequestIsValid($_POST)) {
$model->markStudentAsOptedIn($_POST);
$loggers['audit']->info("Student {$data['student_num']} opted-in to accommodations for course {$data['course_code']}{$data['course_section']} for session {$data['session']}");
//Since the student has opted back in, it is not time to remove future confirmed exams that were previously cancelled due to student opting out
$model->deleteFutureConfirmedCancelledExams($_POST);
$loggers['audit']->info("Future cancelled-confirmed exams (for relevant courses) deleted for student {$data['student_num']} due to opting back in to accommodations");
}
} else {
require_once FS_PHP . '/error.php';
}
}
}
/**
* View rendering
*/
if (isset($render) && $render) {
$follow_up_pending_count = $follow->fetchFollowUpsCountEmployee($SESSION->user_id);