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.137.219.221
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 /
entity /
modules /
[ HOME SHELL ]
Name
Size
Permission
Action
book.info.inc
890
B
-rw-r--r--
callbacks.inc
33.06
KB
-rw-r--r--
comment.info.inc
6.26
KB
-rw-r--r--
field.info.inc
7.16
KB
-rw-r--r--
locale.info.inc
1.43
KB
-rw-r--r--
node.info.inc
5.82
KB
-rw-r--r--
poll.info.inc
1.65
KB
-rw-r--r--
statistics.info.inc
1.32
KB
-rw-r--r--
system.info.inc
4.49
KB
-rw-r--r--
taxonomy.info.inc
4.27
KB
-rw-r--r--
user.info.inc
3.84
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : book.info.inc
<?php /** * @file * Provides info about book nodes. */ /** * Implements hook_entity_property_info_alter() on top of book module. * * @see entity_entity_property_info_alter() */ function entity_metadata_book_entity_property_info_alter(&$info) { // Add meta-data about the added node properties. $properties = &$info['node']['properties']; $properties['book'] = array( 'label' => t("Book"), 'type' => 'node', 'description' => t("If part of a book, the book to which this book page belongs."), 'getter callback' => 'entity_metadata_book_get_properties', ); $properties['book_ancestors'] = array( 'label' => t("Book ancestors"), 'type' => 'list<node>', 'computed' => TRUE, 'description' => t("If part of a book, a list of all book pages upwards in the book hierarchy."), 'getter callback' => 'entity_metadata_book_get_properties', ); }
Close