Esempio n. 1
0
            $student = new Student($COMMON, $element);
            $eml = $student->getEmail();
            $message = "The following group appointment has been deleted by the adminstration of your advisor: " . "\r\n" . "Time: " . $appt->getTime() . "\r\n" . "To schedule for a new appointment, please log back into the UMBC COEIT Engineering and Computer Science Advising webpage." . "\r\n" . "http://coeadvising.umbc.edu  -> COEIT Advising Scheduling \r\n Reminder, this is only accessible on campus.";
            mail($eml, "Your COE Advising Appointment Has Been Deleted", $message);
        }
    }
    $sql = "DELETE FROM `Proj2Appointments` WHERE `id`='{$appID}'";
    $rs = $COMMON->executeQuery($sql, "Advising Appointments");
    echo "Time: " . date('l, F d, Y g:i A', strtotime($appt->getTime())) . "<br>";
    echo "Majors included: ";
    if ($appt->getMajor()) {
        echo $appt->convertMajor(', ') . "<br>";
    } else {
        echo "Available to all majors<br>";
    }
    echo "Number of students enrolled: " . $appt->getEnrolledNum() . "<br>";
    echo "Student limit: " . $appt->getMax();
    echo "<br><br>";
    echo "<form method=\"link\" action=\"AdminUI.php\">";
    echo "<input type=\"submit\" name=\"next\" class=\"button large go\" value=\"Return to Home\">";
    echo "</form>";
    echo "</div>";
    echo "<div class=\"bottom\">";
    if ($stds[0]) {
        echo "<p style='color:red'>Students have been notified of the cancellation.</p>";
    }
} else {
    echo "<h1>Changed Appointment</h1><br>";
    echo "<h2>Previous Appointment:</h2>";
    echo "Time: " . date('l, F d, Y g:i A', strtotime($appt->getTime())) . "<br>";
    echo "Majors included: ";
Esempio n. 2
0
$appID = $_GET["app"];
// Get appointment info from database
$appt = new Appointment($COMMON, $appID);
echo "<form action=\"AdminConfirmEditGroup.php\" method=\"post\" name=\"Edit\">";
// Hidden field to mark it is not deletion
echo "<input type=\"hidden\" name=\"edit\" value=\"edit\">";
// Hidden field for appointment ID
echo "<input type=\"hidden\" name=\"GroupApp\" value=\"" . $appt->getID() . "\">";
echo "Time: " . date('l, F d, Y g:i A', strtotime($appt->getTime())) . "<br>";
echo "Majors included: ";
if ($appt->getMajor()) {
    echo $appt->convertMajor(', ') . "<br>";
} else {
    echo "Available to all majors<br>";
}
echo "Number of students enrolled: " . $appt->getEnrolledNum() . " <br>";
echo "Location: ";
echo $appt->getMeeting();
echo "<br>";
echo "Student limit: ";
echo "<input type=\"number\" id=\"stepper\" name=\"stepper\" min=\"" . $appt->getEnrolledNum() . "\" max=\"" . $appt->getMax() . "\" value=\"" . $appt->getMax() . "\" />";
echo "<br><br>";
echo "<div class=\"nextButton\">";
echo "<input type=\"submit\" name=\"next\" class=\"button large go\" value=\"Submit\">";
echo "</div>";
echo "</div>";
echo "<div class=\"bottom\">";
if ($appt->getEnrolledNum() > 0) {
    echo "<p style='color:red'>Note: There are currently " . $appt->getNumEnrolled() . " students enrolled in this appointment. <br>\n                    The student limit cannot be changed to be under this amount.</p>";
}
echo "</div>";