1 | <?php |
||
10 | class ActionSearchJpg extends ActionSearchAbstract |
||
11 | { |
||
12 | |||
13 | public function __construct( |
||
14 | ResourceImageDOInterface $resourceDO |
||
15 | , SearchManager $manager |
||
16 | , UserInterface $user |
||
17 | , ConfigInterface $config |
||
18 | ) |
||
19 | { |
||
20 | parent::__construct($resourceDO, $manager, $user, $config); |
||
21 | $this->user = $user; |
||
22 | } |
||
23 | |||
24 | /** |
||
25 | * @return \SearchManager\Image\SearchImageDTO |
||
26 | */ |
||
27 | protected function search() |
||
36 | |||
37 | /** |
||
38 | * @return string |
||
39 | */ |
||
40 | protected function getQuery() |
||
46 | } |