本文整理汇总了PHP中Appointment::convertMajor方法的典型用法代码示例。如果您正苦于以下问题:PHP Appointment::convertMajor方法的具体用法?PHP Appointment::convertMajor怎么用?PHP Appointment::convertMajor使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Appointment
的用法示例。
在下文中一共展示了Appointment::convertMajor方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: trim
$element = trim($element);
$sql = "UPDATE `Proj2Students` SET `Status`='C' WHERE `StudentID` = '{$element}'";
$rs = $COMMON->executeQuery($sql, "Advising Appointments");
// Get student info from database
$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 {
示例2: Appointment
// Get appointment info from the database
$appt = new Appointment($COMMON, $indID);
$adv = $appt->getAdvisorID();
$advisor = new Advisor($COMMON, $adv);
if ($appt->getEnrolledID()) {
$student = new Student($COMMON, trim($appt->getEnrolledID()));
$std = $student->getFirstName() . " " . $student->getLastName();
$eml = $student->getEmail();
}
$sql = "DELETE FROM `Proj2Appointments` WHERE `id`='{$indID}'";
$rs = $COMMON->executeQuery($sql, "Advising Appointments");
echo "Time: " . date('l, F d, Y g:i A', strtotime($appt->getTime())) . "<br>";
echo "Advisor: " . $advisor->convertFullName() . "<br>";
echo "Majors included: ";
if ($appt->getMajor()) {
echo $appt->convertMajor() . "<br>";
} else {
echo "Available to all majors<br>";
}
echo "Enrolled: ";
if ($appt->getEnrolledID()) {
echo "{$std}</b>";
$sql = "UPDATE `Proj2Students` SET `Status`='C' WHERE `StudentID` = '" . trim($appt->getEnrolledID()) . "'";
$rs = $COMMON->executeQuery($sql, "Advising Appointments");
$message = "The following appointment has been deleted by the adminstration of your advisor: " . "\r\n" . "Time: " . $appt->getTime() . "\r\n" . "Advisor: " . $advisor->convertFullName() . "\r\n" . "Student: {$std}" . "\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 Advising Appointment Has Been Deleted", $message);
} else {
echo "Empty";
}
?>
<br><br>