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 /
game /
[ HOME SHELL ]
Name
Size
Permission
Action
classes
[ DIR ]
drwxr-xr-x
db
[ DIR ]
drwxr-xr-x
lang
[ DIR ]
drwxr-xr-x
pix
[ DIR ]
drwxr-xr-x
templates
[ DIR ]
drwxr-xr-x
.travis.yml
2.65
KB
-rw-r--r--
CHANGES.md
2.24
KB
-rw-r--r--
LICENSE
34.33
KB
-rw-r--r--
README.md
2.98
KB
-rw-r--r--
block_game.php
3.27
KB
-rw-r--r--
download.php
2.21
KB
-rw-r--r--
edit_form.php
9.87
KB
-rw-r--r--
game.php
5.14
KB
-rw-r--r--
help_game.php
8.76
KB
-rw-r--r--
lib.php
44.56
KB
-rw-r--r--
perfil_gamer.php
2.01
KB
-rw-r--r--
rank_game.php
8.85
KB
-rw-r--r--
rank_group_game.php
3.69
KB
-rw-r--r--
reset_points_course.php
3.32
KB
-rw-r--r--
set_avatar_form.php
12.53
KB
-rw-r--r--
settings.php
4.22
KB
-rw-r--r--
version.php
1.08
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/>. /** * Block Game config form definition class * * @package block_game * @copyright 2019 Jose Wilson * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die(); if ($ADMIN->fulltree) { $settings->add(new admin_setting_heading('block_game/displaysettings', get_string('defaultdisplaysettings', 'block_game'), '')); $settings->add(new admin_setting_configcheckbox('block_game/use_avatar', get_string('config_avatar', 'block_game'), '', 1)); $settings->add(new admin_setting_configstoredfile( 'block_game/imagens_avatar', new lang_string('imagemavatar', 'block_game'), new lang_string('imagemavatardesc', 'block_game'), 'imagens_avatar', 0, ['subdirs' => 0, 'maxfiles' => 68, 'accepted_types' => array('.svg')] )); $settings->add(new admin_setting_configcheckbox('block_game/change_avatar_course', get_string('config_avatar_course', 'block_game'), '', 0)); $settings->add(new admin_setting_configcheckbox('block_game/show_info', get_string('config_info', 'block_game'), get_string('config_info_help', 'block_game'), 1)); $settings->add(new admin_setting_configcheckbox('block_game/score_activities', get_string('config_score_activities', 'block_game'), '', 1)); $bonusdayoptions = array(0 => 0, 1 => 1, 3 => 3, 5 => 5, 10 => 10, 15 => 15, 20 => 20, 50 => 50, 100 => 100); $settings->add(new admin_setting_configselect('block_game/bonus_day', get_string('config_bonus_day', 'block_game'), '', -2, $bonusdayoptions)); $bonusbadgeoptions = array(0 => 0, 50 => 50, 100 => 100, 200 => 200, 500 => 500, 1000 => 1000, 2000 => 2000); $settings->add(new admin_setting_configselect('block_game/bonus_badge', get_string('config_bonus_badge', 'block_game'), '', -2, $bonusbadgeoptions)); $settings->add(new admin_setting_configcheckbox('block_game/show_rank', get_string('config_rank', 'block_game'), '', 1)); $settings->add(new admin_setting_configcheckbox('block_game/show_identity', get_string('config_identity', 'block_game'), '', 1)); $settings->add(new admin_setting_configcheckbox('block_game/show_score', get_string('config_score', 'block_game'), '', 1)); $settings->add(new admin_setting_configcheckbox('block_game/show_level', get_string('config_level', 'block_game'), '', 1)); $settings->add(new admin_setting_configstoredfile( 'block_game/imagens_levels', new lang_string('imagemlevels', 'block_game'), new lang_string('imagemlevelsdesc', 'block_game'), 'imagens_levels', 0, ['subdirs' => 0, 'maxfiles' => 16, 'accepted_types' => array('.svg')] )); // Options controlling level up. $leveloptions = array(4 => 4, 6 => 6, 8 => 8, 10 => 10, 12 => 12, 13 => 13, 14 => 14, 15 => 15); $settings->add(new admin_setting_configselect('block_game/level_number', get_string('config_level_number', 'block_game'), '', 15, $leveloptions)); $leveluppoints = array(1 => 300, 2 => 500, 3 => 1000, 4 => 2000, 5 => 4000, 6 => 6000, 7 => 10000, 8 => 20000, 9 => 30000, 10 => 50000, 11 => 70000, 12 => 100000, 13 => 150000, 14 => 250000, 15 => 500000); for ($i = 1; $i <= 15; $i++) { $settings->add(new admin_setting_configtext('block_game/level_up' . $i, get_string('config_level_up' . $i, 'block_game'), '', $leveluppoints[$i], PARAM_INT)); } }
Close