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.222.162.161
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 : statistics.views.inc
<?php /** * @file * Provide views data and handlers for statistics.module. * * @ingroup views_module_handlers */ /** * Implements hook_views_data(). */ function statistics_views_data() { // Basic table information. // ---------------------------------------------------------------- // node_counter table $data['node_counter']['table']['group'] = t('Content statistics'); $data['node_counter']['table']['join'] = array( // ...to the node table 'node' => array( 'left_field' => 'nid', 'field' => 'nid', ), ); // totalcount $data['node_counter']['totalcount'] = array( 'title' => t('Total views'), 'help' => t('The total number of times the node has been viewed.'), 'field' => array( 'handler' => 'views_handler_field_numeric', 'click sortable' => TRUE, ), 'filter' => array( 'handler' => 'views_handler_filter_numeric', ), 'sort' => array( 'handler' => 'views_handler_sort', ), ); // daycount $data['node_counter']['daycount'] = array( 'title' => t('Views today'), 'help' => t('The total number of times the node has been viewed today.'), 'field' => array( 'handler' => 'views_handler_field_numeric', 'click sortable' => TRUE, ), 'filter' => array( 'handler' => 'views_handler_filter_numeric', ), 'sort' => array( 'handler' => 'views_handler_sort', ), ); // timestamp $data['node_counter']['timestamp'] = array( 'title' => t('Most recent view'), 'help' => t('The most recent time the node has been viewed.'), 'field' => array( 'handler' => 'views_handler_field_date', 'click sortable' => TRUE, ), 'filter' => array( 'handler' => 'views_handler_filter_date', ), 'sort' => array( 'handler' => 'views_handler_sort', ), ); // ---------------------------------------------------------------- // accesslog table $data['accesslog']['table']['group'] = t('Access log'); // Advertise this table as a possible base table $data['accesslog']['table']['base'] = array( 'field' => 'aid', 'title' => t('Access log'), 'help' => t('Stores site access information.'), 'weight' => 10, ); // For other base tables, explain how we join $data['accesslog']['table']['join'] = array( 'users' => array( 'field' => 'uid', 'left_field' => 'uid', ), ); // accesslog.aid $data['accesslog']['aid'] = array( 'title' => t('Aid'), 'help' => t('Unique access event ID.'), 'field' => array( 'handler' => 'views_handler_field_numeric', 'click sortable' => TRUE, ), 'argument' => array( 'handler' => 'views_handler_argument_numeric', 'name field' => 'wid', 'numeric' => TRUE, ), 'filter' => array( 'handler' => 'views_handler_filter_numeric', ), 'sort' => array( 'handler' => 'views_handler_sort', ), ); // session id $data['accesslog']['sid'] = array( 'title' => t('Session ID'), 'help' => t('Browser session ID of user that visited page.'), 'field' => array( 'handler' => 'views_handler_field', 'click sortable' => TRUE, ), 'filter' => array( 'handler' => 'views_handler_filter_string', ), 'argument' => array( 'handler' => 'views_handler_argument_string', ), 'sort' => array( 'handler' => 'views_handler_sort', ), ); // title $data['accesslog']['title'] = array( 'title' => t('Page title'), 'help' => t('Title of page visited.'), 'field' => array( 'handler' => 'views_handler_field_accesslog_path', 'click sortable' => TRUE, ), 'filter' => array( 'handler' => 'views_handler_filter_string', ), 'sort' => array( 'handler' => 'views_handler_sort', ), 'argument' => array( 'handler' => 'views_handler_argument_string', ), ); // path $data['accesslog']['path'] = array( 'title' => t('Path'), 'help' => t('Internal path to page visited (relative to Drupal root.)'), 'field' => array( 'handler' => 'views_handler_field_accesslog_path', 'click sortable' => TRUE, ), 'filter' => array( 'handler' => 'views_handler_filter_string', ), 'sort' => array( 'handler' => 'views_handler_sort', ), //No argument here. Can't send forward slashes as arguments. //Can be worked around by node ID. //(but what about aliases?) ); // referrer $data['accesslog']['url'] = array( 'title' => t('Referrer'), 'help' => t('Referrer URI.'), 'field' => array( 'handler' => 'views_handler_field_url', 'click sortable' => TRUE, ), 'filter' => array( 'handler' => 'views_handler_filter_string', ), 'sort' => array( 'handler' => 'views_handler_sort', ), ); // hostname $data['accesslog']['hostname'] = array( 'title' => t('Hostname'), 'help' => t('Hostname of user that visited the page.'), 'field' => array( 'handler' => 'views_handler_field', 'click sortable' => TRUE, ), 'filter' => array( 'handler' => 'views_handler_filter_string', ), 'sort' => array( 'handler' => 'views_handler_sort', ), 'argument' => array( 'handler' => 'views_handler_argument_string', ), ); // user $data['accesslog']['uid'] = array( 'title' => t('User'), 'help' => t('The user who visited the site.'), 'relationship' => array( 'handler' => 'views_handler_relationship', 'base' => 'users', 'base field' => 'uid', ), ); // timer $data['accesslog']['timer'] = array( 'title' => t('Timer'), 'help' => t('Time in milliseconds that the page took to load.'), 'field' => array( 'handler' => 'views_handler_field_numeric', 'click sortable' => TRUE, ), 'filter' => array( 'handler' => 'views_handler_filter_numeric', ), 'sort' => array( 'handler' => 'views_handler_sort', ), ); // timestamp $data['accesslog']['timestamp'] = array( 'title' => t('Timestamp'), 'help' => t('Timestamp of when the page was visited.'), 'field' => array( 'handler' => 'views_handler_field_date', 'click sortable' => TRUE, ), 'sort' => array( 'handler' => 'views_handler_sort', ), 'filter' => array( 'handler' => 'views_handler_filter_date', ), ); return $data; }
Close