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 | : 13.59.1.58
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.install
<?php /** * @file * Install, update and uninstall functions for the book module. */ /** * Implements hook_install(). */ function book_install() { // Add the node type. _book_install_type_create(); } /** * Implements hook_uninstall(). */ function book_uninstall() { variable_del('book_allowed_types'); variable_del('book_child_type'); variable_del('book_block_mode'); // Delete menu links. db_delete('menu_links') ->condition('module', 'book') ->execute(); menu_cache_clear_all(); } /** * Creates the book content type. */ function _book_install_type_create() { // Create an additional node type. $book_node_type = array( 'type' => 'book', 'name' => t('Book page'), 'base' => 'node_content', 'description' => t('<em>Books</em> have a built-in hierarchical navigation. Use for handbooks or tutorials.'), 'custom' => 1, 'modified' => 1, 'locked' => 0, ); $book_node_type = node_type_set_defaults($book_node_type); node_type_save($book_node_type); node_add_body_field($book_node_type); // Default to not promoted. variable_set('node_options_book', array('status')); // Use this default type for adding content to books. variable_set('book_allowed_types', array('book')); variable_set('book_child_type', 'book'); } /** * Implements hook_schema(). */ function book_schema() { $schema['book'] = array( 'description' => 'Stores book outline information. Uniquely connects each node in the outline to a link in {menu_links}', 'fields' => array( 'mlid' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, 'description' => "The book page's {menu_links}.mlid.", ), 'nid' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, 'description' => "The book page's {node}.nid.", ), 'bid' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, 'description' => "The book ID is the {book}.nid of the top-level page.", ), ), 'primary key' => array('mlid'), 'unique keys' => array( 'nid' => array('nid'), ), 'indexes' => array( 'bid' => array('bid'), ), ); return $schema; }
Close