This repository has been archived by the owner on Aug 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathallClasses.php
88 lines (54 loc) · 1.56 KB
/
allClasses.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?php
include($_SERVER['DOCUMENT_ROOT'].'/php/user_session_check.php'); //checks if user is logged on
$permission_status = 0;
foreach ($_SESSION['permissions'] as $item) {
//echo $item;
if ($item['position'] == "teacher" OR $item['position'] == "sso_admin") {
$permission_status = 1;
}
}
if ($permission_status == 1) {
$teach_id = $_SESSION['id'];
include ($_SERVER['DOCUMENT_ROOT'] . "/php/progress_functions.php");
include ($_SERVER['DOCUMENT_ROOT'] . "/php/prepare_sql.php");
?>
<html>
<title>My Classes</title> <!-- Name of site page in tab -->
<head>
<?php include ($_SERVER['DOCUMENT_ROOT'] . "/includes/head_includes.php"); ?>
<?php include ($_SERVER['DOCUMENT_ROOT'] . "/javascript/color.php"); ?>
</head>
<body>
<p>
<?php
include('includes/toolbar.php');
include('includes/optionsTab.php');
?>
<center>
<div class="subtitle">
<p class="subtitle_title">
My Classes
</p>
</div>
<div class="content">
<p id="allClasses">
<?php
include($_SERVER["DOCUMENT_ROOT"]."/php/teacher_class.php");
if (count($classes) >= 1) {
foreach ($classes as $class) {
echo "<div id='class_names'><a class='S_names' href = 'class_students.php?class_id=$class[class_id]'>$class[course_code]</a></div>";
}
}
else {
echo "Teacher has no registered class";
}
?>
</p>
</div>
</center>
</p>
</body>
</html>
<?php
}
?>