예제 #1
0
$SESSION = new \Zend_Session_Namespace('student', true);
if (!isset($SESSION->logged_in)) {
    header('location: index.php?next=' . $_SERVER['PHP_SELF'] . '?' . $_SERVER['QUERY_STRING']);
    die;
}
//============================================================================================
// Load the Model and L10N
//============================================================================================
$model = new ActivityLog($dbo);
$dashboard = new Dashboard($dbo);
if (\Ventus\Utilities\I18n\Translate::isAllowedLanguage($SESSION->corr_lang)) {
    $l10n->setLanguage($SESSION->corr_lang);
    \Locale::setDefault($SESSION->corr_lang);
}
$l10n->addResource(FS_L10N . '/header-external.json');
//============================================================================================
// Load the page requested by the user
//============================================================================================
$this_page = "alog";
if (!isset($_GET['page'])) {
    $count_pending_follow_ups = $dashboard->fetchCountPendingFollowUps($SESSION->student_num);
    $all_student_activity = $model->listAllStudentActivity($SESSION->student_num);
    $l10n->addResource(__DIR__ . '/l10n/header.json');
    $l10n->addResource(__DIR__ . '/l10n/activity-log.json');
    require_once FS_PHP . '/header-external.php';
    require_once 'views/activity-log.php';
    require_once FS_PHP . '/footer-external.php';
} else {
    header('location: https://' . URL_PHP . '/error-external.php?eid=S007');
    exit;
}
예제 #2
0
파일: dashboard.php 프로젝트: hughnguy/php
// Load the Model and L10N
//============================================================================================
$model = new Dashboard($dbo);
$profile = new StudentProfile($dbo);
$exams = new ExamRequests($dbo);
if (\Ventus\Utilities\I18n\Translate::isAllowedLanguage($SESSION->corr_lang)) {
    $l10n->setLanguage($SESSION->corr_lang);
    \Locale::setDefault($SESSION->corr_lang);
}
$l10n->addResource(FS_L10N . '/header-external.json');
//============================================================================================
// Load the page requested by the user
//============================================================================================
$this_page = "dashboard";
if (!isset($_GET['page'])) {
    $count_pending_follow_ups = $model->fetchCountPendingFollowUps($SESSION->student_num);
    $count_upcoming_appointments = $model->fetchCountUpcomingAppointments($SESSION->student_num);
    $upcoming_exams = $model->fetchUpcomingExams($SESSION->student_num);
    foreach ($upcoming_exams as &$ueas) {
        $ueas['dropped'] = $exams->determineDropped($SESSION->student_num, $ueas['course_code'], $ueas['course_section'], $ueas['session'], $ueas['teach_method']);
    }
    unset($ueas);
    $upcoming_appointments = $model->fetchUpcomingAppointments($SESSION->student_num);
    $count_exams_awaiting_response = 0;
    $semester = \Ventus\Utilities\Functions::fetchSemester();
    //Exams within a certain range have separate deadlines
    $blackout_dates = unserialize(PROFESSOR_NOE_SUBMISSION_BLACKOUT);
    $student_courses = $profile->fetchStudentAllCoursesNeedingConfirmation($SESSION->student_num);
    foreach ($student_courses as $sc) {
        //For each course that a student is registered in, find the NOE for which the students can still respond
        $exams_awaiting_response_for_course = $exams->fetchExamsAwaitingResponse($SESSION->student_num, $sc['code'], $sc['section'], $sc['session'], $sc['teaching_method']);