✏️ 正在编辑: RequestsReport.php
路径:
/home/eblama1/sms.karnplayinland.com/modules/Scheduling/RequestsReport.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php /** * Merge Requests Report & Unfilled Requests * * @package RosarioSIS * @subpackage Scheduling */ DrawHeader( ProgramTitle() ); $_REQUEST['report'] = issetVal( $_REQUEST['report'], '' ); $report_link = PreparePHP_SELF( [], [ 'report', 'search_modfunc', 'include_seats', 'expanded_view', 'address_group' ] ) . '&report='; $report_select = SelectInput( $_REQUEST['report'], 'report', '', [ '' => _( 'Requests Report' ), 'unfilled' => _( 'Unfilled Requests' ), ], false, 'onchange="' . AttrEscape( 'ajaxLink(' . json_encode( $report_link ) . ' + this.value);' ) . '" autocomplete="off"', false ); DrawHeader( $report_select ); if ( $_REQUEST['report'] === 'unfilled' ) { require_once 'modules/Scheduling/includes/UnfilledRequests.php'; } else { require_once 'modules/Scheduling/includes/RequestsReport.php'; }
💾 保存文件
← 返回文件管理器