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.118.184.25
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 /
statistics /
[ HOME SHELL ]
Name
Size
Permission
Action
views_handler_field_accesslog_...
1.47
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : views_handler_field_accesslog_path.inc
<?php /** * @file * Definition of views_handler_field_accesslog_path. */ /** * Field handler to provide simple renderer that turns a URL into a clickable link. * * @ingroup views_field_handlers */ class views_handler_field_accesslog_path extends views_handler_field { /** * Override init function to provide generic option to link to node. */ function init(&$view, &$options) { parent::init($view, $options); if (!empty($this->options['display_as_link'])) { $this->additional_fields['path'] = 'path'; } } function option_definition() { $options = parent::option_definition(); $options['display_as_link'] = array('default' => TRUE, 'bool' => TRUE); return $options; } /** * Provide link to the page being visited. */ function options_form(&$form, &$form_state) { $form['display_as_link'] = array( '#title' => t('Display as link'), '#type' => 'checkbox', '#default_value' => !empty($this->options['display_as_link']), ); parent::options_form($form, $form_state); } function render($values) { $value = $this->get_value($values); return $this->render_link($this->sanitize_value($value), $values); } function render_link($data, $values) { if (!empty($this->options['display_as_link'])) { $this->options['alter']['make_link'] = TRUE; $this->options['alter']['path'] = $this->get_value($values, 'path'); $this->options['alter']['html'] = TRUE; } return $data; } }
Close