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.135.206.19
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 /
filter /
[ HOME SHELL ]
Name
Size
Permission
Action
tests
[ DIR ]
drwxr-xr-x
filter.admin.inc
14.42
KB
-rw-r--r--
filter.admin.js
1.54
KB
-rw-r--r--
filter.api.php
11.54
KB
-rw-r--r--
filter.css
923
B
-rw-r--r--
filter.info
323
B
-rw-r--r--
filter.install
15.44
KB
-rw-r--r--
filter.js
556
B
-rw-r--r--
filter.module
66.07
KB
-rw-r--r--
filter.pages.inc
2.37
KB
-rw-r--r--
filter.test
86.12
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : filter.pages.inc
<?php /** * @file * User page callbacks for the Filter module. */ /** * Page callback: Displays a page with long filter tips. * * @return string * An HTML-formatted string. * * @see filter_menu() * @see theme_filter_tips() */ function filter_tips_long() { $format_id = arg(2); if ($format_id) { $output = theme('filter_tips', array('tips' => _filter_tips($format_id, TRUE), 'long' => TRUE)); } else { $output = theme('filter_tips', array('tips' => _filter_tips(-1, TRUE), 'long' => TRUE)); } return $output; } /** * Returns HTML for a set of filter tips. * * @param $variables * An associative array containing: * - tips: An array containing descriptions and a CSS ID in the form of * 'module-name/filter-id' (only used when $long is TRUE) for each * filter in one or more text formats. Example: * @code * array( * 'Full HTML' => array( * 0 => array( * 'tip' => 'Web page addresses and e-mail addresses turn into links automatically.', * 'id' => 'filter/2', * ), * ), * ); * @endcode * - long: (optional) Whether the passed-in filter tips contain extended * explanations, i.e. intended to be output on the path 'filter/tips' * (TRUE), or are in a short format, i.e. suitable to be displayed below a * form element. Defaults to FALSE. * * @see _filter_tips() * @ingroup themeable */ function theme_filter_tips($variables) { $tips = $variables['tips']; $long = $variables['long']; $output = ''; $multiple = count($tips) > 1; if ($multiple) { $output = '<h2>' . t('Text Formats') . '</h2>'; } if (count($tips)) { if ($multiple) { $output .= '<div class="compose-tips">'; } foreach ($tips as $name => $tiplist) { if ($multiple) { $output .= '<div class="filter-type filter-' . drupal_html_class($name) . '">'; $output .= '<h3>' . check_plain($name) . '</h3>'; } if (count($tiplist) > 0) { $output .= '<ul class="tips">'; foreach ($tiplist as $tip) { $output .= '<li' . ($long ? ' id="filter-' . str_replace("/", "-", $tip['id']) . '">' : '>') . $tip['tip'] . '</li>'; } $output .= '</ul>'; } if ($multiple) { $output .= '</div>'; } } if ($multiple) { $output .= '</div>'; } } return $output; }
Close