✏️ 正在编辑: Menu.php
路径:
/home/eblama1/sms.karnplayinland.com/modules/Scheduling/Menu.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php /** * Scheduling module Menu entries * * @uses $menu global var * * @see Menu.php in root folder * * @package RosarioSIS * @subpackage modules */ $menu['Scheduling']['admin'] = [ 'title' => _( 'Scheduling' ), 'default' => 'Scheduling/Schedule.php', 'Scheduling/Schedule.php' => _( 'Student Schedule' ), 'Scheduling/Requests.php' => _( 'Student Requests' ), 'Scheduling/MassSchedule.php' => _( 'Group Schedule' ), 'Scheduling/MassRequests.php' => _( 'Group Requests' ), 'Scheduling/MassDrops.php' => _( 'Group Drops' ), 1 => _( 'Reports' ), 'Scheduling/PrintSchedules.php' => _( 'Print Schedules' ), 'Scheduling/PrintClassLists.php' => _( 'Print Class Lists' ), 'Scheduling/PrintClassPictures.php' => _( 'Print Class Pictures' ), 'Scheduling/PrintRequests.php' => _( 'Print Requests' ), 'Scheduling/ScheduleReport.php' => _( 'Schedule Report' ), 'Scheduling/RequestsReport.php' => _( 'Requests Report' ), 'Scheduling/IncompleteSchedules.php' => _( 'Incomplete Schedules' ), 'Scheduling/AddDrop.php' => _( 'Add / Drop Report' ), 2 => _( 'Setup' ), 'Scheduling/Courses.php' => _( 'Courses' ), 'Scheduling/Scheduler.php' => _( 'Run Scheduler' ), ] + issetVal( $menu['Scheduling']['admin'], [] ); $menu['Scheduling']['teacher'] = [ 'title' => _( 'Scheduling' ), 'default' => 'Scheduling/Schedule.php', 'Scheduling/Schedule.php' => _( 'Schedule' ), // Activate Courses for Teachers & Parents & Students. 'Scheduling/Courses.php' => _( 'Courses' ), 1 => _( 'Reports' ), 'Scheduling/PrintSchedules.php' => _( 'Print Schedules' ), 'Scheduling/PrintClassLists.php' => _( 'Print Class Lists' ), 'Scheduling/PrintClassPictures.php' => _( 'Print Class Pictures' ), ] + issetVal( $menu['Scheduling']['teacher'], [] ); $menu['Scheduling']['parent'] = [ 'title' => _( 'Scheduling' ), 'default' => 'Scheduling/Schedule.php', 'Scheduling/Schedule.php' => _( 'Schedule' ), 'Scheduling/Requests.php' => _( 'Student Requests' ), // Activate Courses for Teachers & Parents & Students. 'Scheduling/Courses.php' => _( 'Courses' ), 1 => _( 'Reports' ), // Activate Print Schedules for parents and students. 'Scheduling/PrintSchedules.php' => _( 'Print Schedules' ), 'Scheduling/PrintClassPictures.php' => _( 'Class Pictures' ), ] + issetVal( $menu['Scheduling']['parent'], [] ); $exceptions['Scheduling'] = [ 'Scheduling/Requests.php' => true, 'Scheduling/MassRequests.php' => true, 'Scheduling/Scheduler.php' => true ];
💾 保存文件
← 返回文件管理器