summaryrefslogtreecommitdiff
path: root/assignment_list.php
blob: e6e817b4eadab6bd0a5e7fe81a6ebfbd25d3b7f5 (plain)
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
<?php
ini_set('display_errors', 1);
error_reporting(-1);

/*
//Restrict Access to Outside IPs
$allowedip = array("172.114.94.2", "129.210.115.225", "129.210.115.226", "129.210.115.227", "129.210.115.228", "129.210.115.229", "129.210.115.8", "129.210.115.230");
$allowed = false;
$ip = $_SERVER['REMOTE_ADDR'];
for($i = 0; $i < sizeof($allowedip); ++$i){
	if($allowedip[$i] == $ip){
		$allowed = true;
		break;
	}
}

if(!$allowed) exit("$ip: Access Denied");
*/

date_default_timezone_set("America/Los_Angeles");

/*
$db = mysqli_connect("localhost", "louie", "louie2000", "louie_school");
if(!$db) die("Failed to connect to database: " . mysqli_connect_error());

if(isset($_REQUEST['add_class_desc'])){
	print htmlspecialchars( $_REQUEST['add_class_desc'] );
	
	print "Will add<br>";

	$name = empty($_REQUEST['add_class_desc']) ? "" : $_REQUEST['add_class_desc'];
	$code = empty($_REQUEST['add_class_id']) ? "" : $_REQUEST['add_class_id'];
	$location = empty($_REQUEST['add_class_location']) ? "left" : $_REQUEST['add_class_location'];
	$link = empty($_REQUEST['add_class_link']) ? "" : $_REQUEST['add_class_link'];

	if(!$code) print "Missing inputs<br>";
	else{
		$location = $location == "left" ? 0 : 1;

		$name = mysqli_real_escape_string($db, $name);
		$code = mysqli_real_escape_string($db, $code);
		//$location = mysqli_real_escape_string($db, $location);
		$link = mysqli_real_escape_string($db, $link);
		$q = "INSERT INTO Classes (Name, Code, Location, Link) VALUES ('$name', '$code', '$location', '$link')";
		if(!mysqli_query($db, $q)) print "$q<br>Insertion Failed: " . mysqli_error($db) . "<br>";
	}

}
 */

$day = date("l, F jS");
$bg_image_arr = array("rubber_duck_PNG33.png", 
"dice.png");

function entry($due_date, $desc, $color, $highlight, $done){
	if($due_date != "ASAP" && $due_date != ""){
		$due_date_pieces = explode(" ", $due_date);
		$due_date_num = date('z', mktime(0, 0, 0, substr($due_date_pieces[1], 0, 2), substr($due_date_pieces[1], 3, 2), date('Y')));

		if($due_date_num - date('z') <= 1 && $color != "black" && $color != "brown") $color = "red";
		if((!$done && ($due_date_num - date('z') <= 0)) || ($highlight == "orange" && ($due_date_num - date('z') <= 7))) $highlight = "yellow";
	}
	if($highlight != "none" && $color == "gray") $color = "black";
	if($done){
		$color = "green";
		$highlight = "none";
	}

	print "<li class=\"entries\" style=\"color: $color;" . (!$done && $color != 'black' && $highlight != 'none' ? "font-weight: bold" : "") . "\">";
	if($done) print  "<span style=\"color: green; font-weight: bold\"> &#10004;</span>"; // "&#9989;";
	print "<span style=\"background-color: $highlight; text-decoration: " . ($done ? "line-through" : "none") . "\">";
	print ($due_date != "" ? "$due_date: " : "") . "<span style=\"background-color: $highlight\">$desc</span>";
	print "</span>";
	print "</li>";
}

/* Conceptual **

class Entry{
	public static $num_hw = 0;
	public static $hw_strings = [];
	//$hw_string[0] = HW description
	//$hw_string[1] = HW due Date (0 to 365)

	function add_hw(){
		$hw_string[] = readline("What is the HW?\n");
		$days_til_due = readline("In how many days is the HW due?\n");
		$hw_strings[] = $days_til_due + date('z');
		$num_hw++;
	}
}

function list_hw($entry){
	if(!$entry->num_hw){
		print "The test is have work";
	   	return;
	}
	else{
		print "<ul> class=\"entries\"";
		for($i = 0; $i < $num_hw; $i++){
			print "<li> WIP </li>";
		}
		print "</ul>";
	}

	return;
}

$ENGL2A = new Entry();
$MATH13 = new Entry();
$COEN11 = new Entry();
$PHYS31 = new Entry();
$COEN11L = new Entry();
$ENGR1 = new Entry();
$PHYS31L = new Entry();

$ENGL2A->add_hw();
print "TEST: num_hw = $ENGL2A->num_hw";

 */

?>

<html>
	<head>
		<title>Daily Homework Schedule</title>
		<link rel="stylesheet" href="assignment_list.css">
		<script defer src="assignment_list.js"></script>
	</head>

	<body>
	<div id=bg></div>
	<div id=notes_link><a href="notes/notes_home.php">SCU Class Notes</a></div>
	<div class="container banner_box">
		<span class="banner"></span>
		<button id="add_class" class="add" onclick="draw_add_class()">add class</button>
	<div id="add_class_box">
	</div>
	</div>
		<div id="hw_div">
			<div class="column" id="column_left">
			</div>
			<div class="column" id="column_right">
			</div>

		</div>

		<!-- templates -->
		<template id='add_class_html'>
			<div class="add_dialog" id="add_class_dialog">
				<div>
					<label for="add_class_id">Class ID:</label>
					<input name="add_class_id"/>
				</div>
				<div>
					<label for="add_class_desc">Description/Title:</label>
					<input name="add_class_desc"/>
				</div>
				<div>
					<label for="add_class_link">Class URL:</label>
					<input type="url" name="add_class_link"/>
				</div>
				<div>
					<label for="add_class_location">Column:</label>
					<select name="add_class_location">
						<option value="left">left</option>
						<option value="right">right</option>
					</select>
				</div>
				<div class="submit_box">
					<!-- Add cancel and submit buttons in javascript -->
				</div>
			</div>
		</template>

		<template id='add_assignment_html'>
			<div class="add_dialog">
				<div>
					<label for="add_due_date">Due Date:</label>
					<input name="add_due_date" type="date"/>
				</div>
				<div>
					<label for="add_due_date_alt">Alt Due Date:</label>
					<input name="add_due_date_alt"/>
				</div>
				<div>
					<label for="add_desc">Description/Title:</label>
					<input name="add_desc"/>
				</div>
				<div>
					<label for="add_color">Color:</label>
					<input name="add_color"/>
				</div>
				<div>
					<label for="add_highlight">Highlight:</label>
					<input name="add_highlight"/>
				</div>
				<div>
					<label for="add_link">Assignment URL:</label>
					<input type="url" name="add_link"/>
				</div>
				<div class="submit_box">
					<!-- Add cancel and submit buttons in javascript -->
				</div>
			</div>
		</template>
	</body>
</html>