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.130.222
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 /
myoverview /
[ HOME SHELL ]
Name
Size
Permission
Action
amd
[ DIR ]
drwxr-xr-x
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
tests
[ DIR ]
drwxr-xr-x
block_myoverview.php
3.96
KB
-rw-r--r--
lib.php
5.21
KB
-rw-r--r--
settings.php
4.72
KB
-rw-r--r--
styles.css
306
B
-rw-r--r--
upgrade.txt
294
B
-rw-r--r--
version.php
1.17
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/>. /** * 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