forked from francoisjacquet/rosariosis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Side.php
733 lines (611 loc) · 20.5 KB
/
Side.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
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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
<?php
/**
* Side
*
* Side menu
*
* @package RosarioSIS
*/
require_once 'Warehouse.php';
$old_school = UserSchool();
$old_syear = UserSyear();
$old_period = UserCoursePeriod();
$unset_student = $unset_staff = $update_body = false;
$addJavascripts = '';
/**
* Change current
* School / SchoolYear / MarkingPeriod / CoursePeriod / Student
* from menu
*/
if ( isset( $_REQUEST['sidefunc'] )
&& $_REQUEST['sidefunc'] === 'update'
&& ( isset( $_REQUEST['side_student_id'] )
|| isset( $_REQUEST['side_staff_id'] )
|| $_POST ) )
{
// Update "#body" Module page.
$update_body = true;
// Update Admin & Teachers's current School.
if ( ( User( 'PROFILE' ) === 'admin'
|| User( 'PROFILE' ) === 'teacher' )
&& isset( $_POST['school'] )
&& $_POST['school'] != $old_school )
{
$unset_student = $unset_staff = true;
$_SESSION['UserSchool'] = $_POST['school'];
DBQuery( "UPDATE STAFF
SET CURRENT_SCHOOL_ID='" . UserSchool() . "'
WHERE STAFF_ID='" . User( 'STAFF_ID' ) . "'" );
// Reset current MarkingPeriod.
$_SESSION['UserMP'] = GetCurrentMP( 'QTR', DBDate(), false );
}
// Update current SchoolYear.
elseif ( isset( $_POST['syear'] )
&& $_POST['syear'] != $old_syear )
{
$_SESSION['UserSyear'] = $_POST['syear'];
// Reset current MarkingPeriod.
$_SESSION['UserMP'] = GetCurrentMP( 'QTR', DBDate(), false );
/**
* If current User
* update user ID according to new SchoolYear
* OR remove if does not exist.
*/
if ( ( User( 'PROFILE' ) === 'admin'
|| User( 'PROFILE' ) === 'teacher' )
&& UserStaffID() )
{
// Search User in next SchoolYear.
if ( $old_syear == UserSyear() - 1 )
{
$new_staff_id = DBGetOne( "SELECT STAFF_ID
FROM STAFF
WHERE ROLLOVER_ID='" . UserStaffID() . "'" );
}
// Search User in previous SchoolYear.
elseif ( $old_syear == UserSyear() + 1 )
{
$new_staff_id = DBGetOne( "SELECT ROLLOVER_ID AS STAFF_ID
FROM STAFF WHERE
STAFF_ID='" . UserStaffID() . "'" );
}
// More than 1 year difference, search User by USERNAME... (could have changed).
else
{
$new_staff_id = DBGetOne( "SELECT STAFF_ID
FROM STAFF
WHERE USERNAME=
(SELECT USERNAME
FROM STAFF
WHERE STAFF_ID='" . UserStaffID() . "')
AND SYEAR='" . UserSyear() . "'" );
}
if ( $new_staff_id )
{
SetUserStaffID( $new_staff_id );
// Remove staff_id from URL.
unset( $_SESSION['_REQUEST_vars']['staff_id'] );
}
else
$unset_staff = true;
}
// If current Student not enrolled in new SchoolYear, remove.
if ( in_array( User( 'PROFILE' ), array( 'admin', 'teacher', 'parent' ) )
&& UserStudentID() )
{
$is_student_enrolled_sql = "SELECT 'ENROLLED'
FROM STUDENT_ENROLLMENT
WHERE SYEAR='" . UserSyear() . "'
AND SCHOOL_ID='" . UserSchool() . "'
AND STUDENT_ID='" . UserStudentID() . "'";
/**
* Remove Student if Teacher:
* the student should not be currently scheduled in a course in new SchoolYear
* OR remove Student if not enrolled in new SchoolYear.
*/
$unset_student = User( 'PROFILE' ) === 'teacher'
|| ! DBGetOne( $is_student_enrolled_sql );
}
}
// Update current MarkingPeriod.
elseif ( isset( $_POST['mp'] )
&& $_POST['mp'] != $_SESSION['UserMP'] )
{
$_SESSION['UserMP'] = $_POST['mp'];
}
// Update Teacher's current CoursePeriod.
elseif ( User( 'PROFILE' ) === 'teacher'
&& isset( $_POST['period'] )
&& $_POST['period'] != $old_period )
{
$_SESSION['UserCoursePeriod'] = $_POST['period'];
}
// Update Parent's current Student.
elseif ( User( 'PROFILE' ) === 'parent'
&& isset( $_POST['student_id'] )
&& UserStudentID() != $_POST['student_id'] )
{
SetUserStudentID( $_POST['student_id'] );
if ( ! empty( $_SESSION['_REQUEST_vars']['student_id'] ) )
{
// Fix Hacking Log when Parent switching Student.
$_SESSION['_REQUEST_vars']['student_id'] = $_POST['student_id'];
}
}
if ( User( 'PROFILE' ) === 'teacher'
&& ! $unset_student
&& UserStudentID() )
{
// If current student and MP or Course Period were updated.
$is_student_scheduled = DBGetOne( "SELECT 'SCHEDULED'
FROM SCHEDULE
WHERE STUDENT_ID='" . UserStudentID() . "'
AND COURSE_PERIOD_ID='" . UserCoursePeriod() . "'
AND '" . DBDate() . "'>=START_DATE
AND ('" . DBDate() . "'<=END_DATE OR END_DATE IS NULL)
AND MARKING_PERIOD_ID IN (" . GetAllMP( 'QTR', UserMP() ) . ")" );
// If student not scheduled in new Course Period or MP, remove.
$unset_student = ! $is_student_scheduled;
}
/**
* If current School OR SchoolYear changed from menu,
* reset Admin & Teacher's CoursePeriod
*/
if ( ( UserSchool() != $old_school
|| UserSyear() != $old_syear )
&& ( User( 'PROFILE' ) === 'admin'
|| User( 'PROFILE' ) === 'teacher' ) )
{
unset( $_SESSION['UserPeriod'], $_SESSION['UserCoursePeriod'] );
}
// Remove current Student/User from menu if user clicked on red cross.
if ( ( User( 'PROFILE' ) === 'admin'
|| User( 'PROFILE' ) === 'teacher' )
&& ( ( $new_student = isset( $_REQUEST['side_student_id'] )
&& $_REQUEST['side_student_id'] === 'new' )
|| ( $new_staff = isset( $_REQUEST['side_staff_id'] )
&& $_REQUEST['side_staff_id'] === 'new' ) ) )
{
if ( $new_student )
{
$unset_student = true;
}
elseif ( $new_staff )
{
$unset_staff = true;
}
unset( $_SESSION['_REQUEST_vars']['search_modfunc'] );
}
}
/**
* Set current
* SchoolYear / Student / User / School / MarkingPeriod
* after login
*/
else
{
// Set current Student (if user is student).
if ( ! UserStudentID()
&& User( 'PROFILE' ) === 'student' )
{
SetUserStudentID( $_SESSION['STUDENT_ID'] );
}
// Set current User (if user is parent).
if ( ! UserStaffID()
&& User( 'PROFILE' ) === 'parent' )
{
SetUserStaffID( $_SESSION['STAFF_ID'] );
}
// Set current School.
if ( ! UserSchool() )
{
// If user is admin or teacher.
if ( ( User( 'PROFILE' ) === 'admin'
|| User( 'PROFILE' ) === 'teacher' )
&& ( ! User( 'SCHOOLS' )
|| mb_strpos( User( 'SCHOOLS' ), ',' . User( 'CURRENT_SCHOOL_ID' ) . ',' ) !== false ) )
{
$_SESSION['UserSchool'] = User( 'CURRENT_SCHOOL_ID' );
}
// If user is student.
elseif ( User( 'PROFILE' ) === 'student' )
{
$_SESSION['UserSchool'] = trim( User( 'SCHOOLS' ), ',' );
}
// Do not set here if user is parent (set later on depending on current Student).
}
// Set current MarkingPeriod (Quarter).
if ( ! UserMP() )
{
$_SESSION['UserMP'] = GetCurrentMP( 'QTR', DBDate(), false );
}
}
// Unset current Student.
if ( $unset_student )
{
unset( $_SESSION['student_id'] );
// Remove student_id from URL.
unset( $_SESSION['_REQUEST_vars']['student_id'] );
}
// Unset current User.
if ( $unset_staff )
{
unset( $_SESSION['staff_id'] );
// Remove staff_id from URL.
unset( $_SESSION['_REQUEST_vars']['staff_id'] );
}
// Update "#body" Module page.
if ( $update_body )
{
/**
* If last mod is popup, redirect to Portal!
*
* Happens when Current Student / SYear... update while popup opened
* Preserves integrity and prevents bugs
*/
if ( isPopup( $_SESSION['_REQUEST_vars']['modname'], $_SESSION['_REQUEST_vars']['modfunc'] ) )
{
$ajax_link = 'Modules.php?modname=misc/Portal.php';
}
else
{
$ajax_link = PreparePHP_SELF( $_SESSION['_REQUEST_vars'], array( 'advanced' ) );
}
$addJavascripts .= 'ajaxLink("' . $ajax_link . '");';
}
/**
* Set menu
* Student / User / School / Marking Period / CoursePeriod
* check if have been changed in Warehouse.php
*/
$addJavascripts .= 'var menuStudentID="' . UserStudentID() . '",
menuStaffID="' . UserStaffID() . '",
menuSchool="' . UserSchool() . '",
menuMP="' . UserMP() . '",
menuCoursePeriod="' . UserCoursePeriod() . '";';
?>
<div id="menu-top">
<script><?php echo $addJavascripts; ?></script>
<?php // User Information. ?>
<a href="Modules.php?modname=misc/Portal.php" class="center">
<img src="assets/themes/<?php echo Preferences( 'THEME' ); ?>/logo.png" class="logo" alt="Logo" />
</a>
<form action="Side.php?sidefunc=update" method="POST" target="menu-top">
<span class="username br-after"><?php echo User( 'NAME' ); ?></span>
<?php
// Localized today's date.
echo '<span class="today-date size-1">' . strftime( '%A ' . Preferences( 'DATE' ) ) . '</span>';
?>
<br />
<?php // School SELECT (Admins & Teachers only).
if ( User( 'PROFILE' ) === 'admin'
|| User( 'PROFILE' ) === 'teacher' ) :
$schools = mb_substr( str_replace( ',', "','", User( 'SCHOOLS' ) ), 2, -2 );
$schools_RET = DBGet( "SELECT ID,TITLE,SHORT_NAME
FROM SCHOOLS
WHERE SYEAR='" . UserSyear() . "'" .
( $schools ? " AND ID IN (" . $schools . ")" : '' ) .
" ORDER BY TITLE" );
// Set current School.
if ( ! UserSchool() )
{
$_SESSION['UserSchool'] = $schools_RET[1]['ID'];
DBQuery( "UPDATE STAFF
SET CURRENT_SCHOOL_ID='" . UserSchool() . "'
WHERE STAFF_ID='" . User( 'STAFF_ID' ) . "'" );
} ?>
<span class="br-after">
<label for="school" class="a11y-hidden"><?php echo _( 'School' ); ?></label>
<select name="school" id="school" autocomplete="off" onChange="ajaxPostForm(this.form,true);">
<?php foreach ( (array) $schools_RET as $school ) : ?>
<option value="<?php echo $school['ID']; ?>"<?php echo ( ( UserSchool() == $school['ID'] ) ? ' selected' : '' ); ?>><?php
echo ( $school['SHORT_NAME'] ? $school['SHORT_NAME'] : $school['TITLE'] );
?></option>
<?php endforeach; ?>
</select>
</span>
<?php endif;
// Student SELECT (Parents only).
if ( User( 'PROFILE' ) === 'parent' ) :
$students_RET = DBGet( "SELECT sju.STUDENT_ID,
" . DisplayNameSQL( 's' ) . " AS FULL_NAME,se.SCHOOL_ID
FROM STUDENTS s,STUDENTS_JOIN_USERS sju,STUDENT_ENROLLMENT se,SCHOOLS sch
WHERE s.STUDENT_ID=sju.STUDENT_ID
AND sju.STAFF_ID='" . User( 'STAFF_ID' ) . "'
AND se.SYEAR='" . UserSyear() . "'
AND se.STUDENT_ID=sju.STUDENT_ID
AND sch.ID=se.SCHOOL_ID
AND sch.SYEAR=se.SYEAR
AND ('" . DBDate() . "'>=se.START_DATE
AND ('" . DBDate() . "'<=se.END_DATE
OR se.END_DATE IS NULL ) )" );
// Set current Student.
if ( ! UserStudentID()
&& isset( $students_RET[1]['STUDENT_ID'] ) )
{
// Note: do not use SetUserStudentID() here as this is safe.
$_SESSION['student_id'] = $students_RET[1]['STUDENT_ID'];
}
?>
<span class="br-after">
<label for="student_id" class="a11y-hidden"><?php echo _( 'Student' ); ?></label>
<select name="student_id" id="student_id" autocomplete="off" onChange="ajaxPostForm(this.form,true);">
<?php foreach ( (array) $students_RET as $student ) : ?>
<option value="<?php echo $student['STUDENT_ID']; ?>"<?php echo ( ( UserStudentID() == $student['STUDENT_ID'] ) ? ' selected' : '' ); ?>><?php
echo $student['FULL_NAME'];
?></option>
<?php // Set current School.
if ( UserStudentID() == $student['STUDENT_ID'] )
{
$_SESSION['UserSchool'] = $student['SCHOOL_ID'];
}
endforeach;
if ( empty( $students_RET ) ) : ?>
<option value=""><?php echo _( 'No Students were found.' ); ?></option>
<?php endif; ?>
</select>
</span>
<?php
// No student associated to parent.
// Set current School.
if ( ! UserSchool() )
{
$schools_RET = DBGet( "SELECT ID,TITLE
FROM SCHOOLS
WHERE SYEAR='" . UserSyear() . "' LIMIT 1" );
$_SESSION['UserSchool'] = $schools_RET[1]['ID'];
}
endif;
// SchoolYear SELECT.
if ( User( 'PROFILE' ) !== 'student' )
{
$sql = "SELECT sy.SYEAR
FROM SCHOOLS sy,STAFF s
WHERE sy.ID='" . UserSchool() . "'
AND s.SYEAR=sy.SYEAR
AND (s.SCHOOLS IS NULL OR position(','||sy.ID||',' IN s.SCHOOLS)>0)
AND s.USERNAME=(SELECT USERNAME
FROM STAFF
WHERE STAFF_ID='" . $_SESSION['STAFF_ID'] . "')";
}
else
{
// FJ limit school years to the years the student was enrolled.
//$sql = "SELECT DISTINCT sy.SYEAR FROM SCHOOLS sy,STUDENT_ENROLLMENT s WHERE s.SYEAR=sy.SYEAR";
$sql = "SELECT DISTINCT sy.SYEAR
FROM SCHOOLS sy,STUDENT_ENROLLMENT s
WHERE s.SYEAR=sy.SYEAR
AND s.STUDENT_ID='" . UserStudentID() . "'";
}
$sql .= " ORDER BY sy.SYEAR DESC";
$years_RET = DBGet( $sql ); ?>
<span class="br-after">
<label for="syear" class="a11y-hidden"><?php echo _( 'School Year' ); ?></label>
<select name="syear" id="syear" autocomplete="off" onChange="ajaxPostForm(this.form,true);">
<?php foreach ( (array) $years_RET as $year ) : ?>
<option value="<?php echo $year['SYEAR']; ?>"<?php echo ( ( UserSyear() == $year['SYEAR'] ) ? ' selected' : '' ); ?>><?php
echo FormatSyear( $year['SYEAR'], Config( 'SCHOOL_SYEAR_OVER_2_YEARS' ) );
?></option>
<?php endforeach; ?>
</select>
</span>
<?php // MarkingPeriod SELECT.
$RET = DBGet( "SELECT MARKING_PERIOD_ID,TITLE
FROM SCHOOL_MARKING_PERIODS
WHERE MP='QTR'
AND SCHOOL_ID='" . UserSchool() . "'
AND SYEAR='" . UserSyear() . "'
ORDER BY SORT_ORDER" );
?>
<span class="br-after">
<label for="mp" class="a11y-hidden"><?php echo _( 'Marking Period' ); ?></label>
<select name="mp" id="mp" autocomplete="off" onChange="ajaxPostForm(this.form,true);">
<?php if ( count( $RET ) ) :
$mp_array = array();
foreach ( $RET as $quarter ) : ?>
<option value="<?php echo $quarter['MARKING_PERIOD_ID']; ?>"<?php echo ( UserMP() == $quarter['MARKING_PERIOD_ID'] ? ' selected' : '' ); ?>><?php
echo $quarter['TITLE'];
?></option>
<?php $mp_array[] = $quarter['MARKING_PERIOD_ID'];
endforeach;
// Reset UserMP if invalid.
if ( ! UserMP()
|| ! in_array( UserMP(), $mp_array ) ) :
$_SESSION['UserMP'] = $RET[1]['MARKING_PERIOD_ID'];
endif;
// Error if no quarters.
else : ?>
<option value=""><?php
echo _( 'Error' ) . ': ' . _( 'No quarters found' );
?></option>
<?php endif; ?>
</select>
</span>
<?php // CoursePeriod SELECT (Teachers only).
if ( User( 'PROFILE' ) === 'teacher' ) :
// @since 6.9 Add Secondary Teacher.
$_SESSION['is_secondary_teacher'] = false;
$cp_RET = DBGet( "SELECT cp.COURSE_PERIOD_ID,cp.MARKING_PERIOD_ID,
c.TITLE AS COURSE_TITLE,cp.SHORT_NAME AS CP_SHORT_NAME,cp.SECONDARY_TEACHER_ID
FROM COURSE_PERIODS cp,COURSES c
WHERE c.COURSE_ID=cp.COURSE_ID
AND cp.SYEAR='" . UserSyear() . "'
AND cp.SCHOOL_ID='" . UserSchool() . "'
AND (cp.TEACHER_ID='" . User( 'STAFF_ID' ) . "'
OR SECONDARY_TEACHER_ID='" . User( 'STAFF_ID' ) . "')
AND cp.MARKING_PERIOD_ID IN (" . ( count( $RET ) ? GetAllMP( 'QTR', UserMP() ) : '0' ) . ")
ORDER BY c.TITLE,cp.SHORT_NAME" );
/**
* Get the Full Year marking period id
* there should be exactly one fy marking period per school.
*/
$fy_id = GetFullYearMP();
// Set current CoursePeriod after login.
if ( ! UserCoursePeriod()
&& isset( $cp_RET[1] ) )
{
$_SESSION['UserCoursePeriod'] = $cp_RET[1]['COURSE_PERIOD_ID'];
} ?>
<span class="br-after">
<label for="period" class="a11y-hidden"><?php echo _( 'Course Periods' ); ?></label>
<select name="period" id="period" autocomplete="off" onChange="ajaxPostForm(this.form,true);">
<?php $optgroup = $current_cp_found = false;
foreach ( (array) $cp_RET as $period ) :
// Add optroup to group periods by course periods.
if ( ! empty( $period['COURSE_TITLE'] )
&& $optgroup != $period['COURSE_TITLE'] ) : // New optgroup. ?>
<optgroup label="<?php echo htmlspecialchars( $optgroup = $period['COURSE_TITLE'] ); ?>">
<?php endif;
if ( $optgroup !== false
&& $optgroup != $period['COURSE_TITLE'] ) : // Close optgroup. ?>
</optgroup>
<?php endif;
$selected = '';
if ( UserCoursePeriod() === $period['COURSE_PERIOD_ID'] )
{
$selected = ' selected';
$current_cp_found = true;
if ( $period['SECONDARY_TEACHER_ID'] === User( 'STAFF_ID' ) )
{
// @since 6.9 Add Secondary Teacher.
$_SESSION['is_secondary_teacher'] = true;
}
}
$mp_text = '';
if ( $period['MARKING_PERIOD_ID'] != $fy_id )
{
$mp_text = GetMP( $period['MARKING_PERIOD_ID'], 'SHORT_NAME' ) . ' - ';
}
?>
<option value="<?php echo $period['COURSE_PERIOD_ID']; ?>"<?php echo $selected; ?>><?php
echo $mp_text . $period['CP_SHORT_NAME'];
?></option>
<?php endforeach;
// Error if no courses.
if ( ! $cp_RET ) : ?>
<option value=""><?php
echo _( 'No courses found' );
?></option>
<?php endif;
/**
* Error: current CoursePeriod not found
* reset current CoursePeriod
* and unset current Student
*/
if ( ! $current_cp_found )
{
$_SESSION['UserCoursePeriod'] = $cp_RET[1]['COURSE_PERIOD_ID'];
unset( $_SESSION['student_id'] );
}
?>
</select>
</span>
<?php endif; ?>
</form>
<?php // Display current Student (Admins & Teachers only).
if ( UserStudentID()
&& ( User( 'PROFILE' ) === 'admin'
|| User( 'PROFILE' ) === 'teacher' ) ) :
$current_student_name = DBGetOne( "SELECT " . DisplayNameSQL() . " AS FULL_NAME
FROM STUDENTS
WHERE STUDENT_ID='" . UserStudentID() . "'" ); ?>
<div class="current-person student">
<a href="Side.php?sidefunc=update&side_student_id=new" target="menu-top" title="<?php echo _( 'Clear working student' ); ?>">
<?php echo button( 'x', '', '', 'bigger' ); ?>
</a>
<?php if ( AllowUse( 'Students/Student.php' ) ) : ?>
<a href="Modules.php?modname=Students/Student.php&student_id=<?php echo (int) UserStudentID(); ?>" title="<?php echo _( 'Student Info' ); ?>">
<?php echo $current_student_name; ?>
</a>
<?php else : ?>
<?php echo $current_student_name; ?>
<?php endif; ?>
</div>
<?php endif;
// Display current User (Admins & Teachers only).
if ( UserStaffID()
&& ( User( 'PROFILE' ) === 'admin'
|| User( 'PROFILE' ) === 'teacher' ) ) :
$current_user_name = DBGetOne( "SELECT " . DisplayNameSQL() . " AS FULL_NAME
FROM STAFF
WHERE STAFF_ID='" . UserStaffID() . "'" ); ?>
<div class="current-person <?php echo ( UserStaffID() == User( 'STAFF_ID' ) ? 'self' : 'staff' ); ?>">
<a href="Side.php?sidefunc=update&side_staff_id=new" target="menu-top" title="<?php echo _( 'Clear working user' ); ?>">
<?php echo button( 'x', '', '', 'bigger' ); ?>
</a>
<?php if ( AllowUse( 'Users/User.php' ) ) : ?>
<a href="Modules.php?modname=Users/User.php&staff_id=<?php echo (int) UserStaffID(); ?>" title="<?php echo _( 'User Info' ); ?>">
<?php echo $current_user_name; ?>
</a>
<?php else : ?>
<?php echo $current_user_name; ?>
<?php endif; ?>
</div>
<?php endif; ?>
</div><!-- #menu-top -->
<?php
if ( ! isset( $_REQUEST['sidefunc'] )
|| $_REQUEST['sidefunc'] !== 'update' ) : ?>
<ul class="adminmenu">
<?php // Generate Menu.
require_once 'Menu.php';
// Modify loop: use for instead of foreach.
$menu_key = array_keys( $_ROSARIO['Menu'] );
$size_menu = count( $menu_key );
global $RosarioCoreModules;
for ( $i = 0; $i < $size_menu; $i++ ) :
$menu_i = $menu_key[ $i ];
if ( count( $modcat_menu = $_ROSARIO['Menu'][ $menu_i ] ) ) :
$modcat_class = mb_strtolower( str_replace( '_', '-', $menu_i ) ); ?>
<li class="menu-module <?php echo $modcat_class; ?>">
<a href="<?php echo URLEscape( 'Modules.php?modname=' . $modcat_menu['default'] ); ?>" class="menu-top">
<span class="module-icon <?php echo $menu_i; ?>"
<?php if ( ! in_array( $menu_i, $RosarioCoreModules ) ) :
// Modcat is addon module, set custom module icon. ?>
style="background-image: url(modules/<?php echo $menu_i; ?>/icon.png);"
<?php endif; ?>
></span> <?php echo $modcat_menu['title']; ?>
</a>
<ul id="menu_<?php echo $menu_i; ?>" class="wp-submenu">
<?php
unset(
$modcat_menu['default'],
$modcat_menu['title']
);
$modcat_key = array_keys( $modcat_menu );
$size_modcat = count( $modcat_key );
for ( $j = 0; $j < $size_modcat; $j++ )
{
$modcat_j = $modcat_key[ $j ];
$title = $_ROSARIO['Menu'][ $menu_i ][ $modcat_j ];
// If URL, not a program.
/*if ( mb_stripos( $modcat_j, 'http' ) !== false ) : ?>
<li><a href="<?php echo URLEscape( $modcat_j ); ?>" target="_blank"><?php
echo $title;
?></a></li>
<?php
else*/
if ( ! is_numeric( $modcat_j ) ) :
// If PDF, open in new tab.
$target = ( mb_strpos( $modcat_j, '_ROSARIO_PDF' ) !== false ?
' target="_blank"' :
''
); ?>
<li><a href="<?php echo URLEscape( 'Modules.php?modname=' . $modcat_j ); ?>"<?php echo $target; ?>><?php
echo $title;
?></a></li>
<?php // If is a section.
elseif ( isset( $modcat_key[ $j + 1 ] )
&& ! is_numeric( $modcat_key[ $j + 1 ] ) ) : ?>
<li class="menu-inter"><?php
echo $title;
?></li>
<?php endif;
}
?>
</ul>
</li>
<?php endif;
endfor; ?>
</ul><!-- .adminmenu -->
<?php endif;