Linux polon 4.19.0-27-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64
Apache/2.4.59 (Debian)
: 10.2.73.233 | : 3.144.255.247
Cant Read [ /etc/named.conf ]
5.6.40-64+0~20230107.71+debian10~1.gbp673146
www-data
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 /
baltic /
web /
modules /
views /
modules /
filter /
[ HOME SHELL ]
Name
Size
Permission
Action
views_handler_field_filter_for...
982
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : views_handler_field_filter_format_name.inc
<?php /** * @file * Definition of views_handler_field_filter_format_name. */ /** * Field handler to output the name of an input format. * * @ingroup views_field_handlers */ class views_handler_field_filter_format_name extends views_handler_field { function construct() { parent::construct(); // Be explicit about the table we are using. $this->additional_fields['name'] = array('table' => 'filter_formats', 'field' => 'name'); } function query() { $this->ensure_my_table(); $this->add_additional_fields(); } function render($values) { $format_name = $this->get_value($values, 'name'); if (!$format_name) { // Default or invalid input format. // filter_formats() will reliably return the default format even if the // current user is unprivileged. $format = filter_formats(filter_default_format()); return $this->sanitize_value($format->name); } return $this->sanitize_value($format_name); } }
Close