1 | <?php |
||
21 | class JqadmController extends \Neos\Flow\Mvc\Controller\ActionController |
||
22 | { |
||
23 | /** |
||
24 | * @var \Aimeos\Shop\Base\Aimeos |
||
25 | * @Flow\Inject |
||
26 | */ |
||
27 | protected $aimeos; |
||
28 | |||
29 | /** |
||
30 | * @var \Aimeos\Shop\Base\Context |
||
31 | * @Flow\Inject |
||
32 | */ |
||
33 | protected $context; |
||
34 | |||
35 | /** |
||
36 | * @var \Aimeos\Shop\Base\I18n |
||
37 | * @Flow\Inject |
||
38 | */ |
||
39 | protected $i18n; |
||
40 | |||
41 | /** |
||
42 | * @var \Aimeos\Shop\Base\Locale |
||
43 | * @Flow\Inject |
||
44 | */ |
||
45 | protected $locale; |
||
46 | |||
47 | /** |
||
48 | * @var \Aimeos\Shop\Base\View |
||
49 | * @Flow\Inject |
||
50 | */ |
||
51 | protected $viewbase; |
||
52 | |||
53 | |||
54 | /** |
||
55 | * Returns the JS file content |
||
56 | * |
||
57 | * @return \Neos\Flow\Http\Response Response object |
||
58 | */ |
||
59 | public function fileAction() |
||
88 | |||
89 | |||
90 | /** |
||
91 | * Returns the HTML code for a copy of a resource object |
||
92 | * |
||
93 | * @param string Resource location, e.g. "product" |
||
94 | * @param string $site Unique site code |
||
95 | * @param integer $id Unique resource ID |
||
96 | * @return string Generated output |
||
97 | */ |
||
98 | public function copyAction( $site = 'default', $resource, $id ) |
||
103 | |||
104 | |||
105 | /** |
||
106 | * Returns the HTML code for a new resource object |
||
107 | * |
||
108 | * @param string Resource location, e.g. "product" |
||
109 | * @param string $site Unique site code |
||
110 | * @return string Generated output |
||
111 | */ |
||
112 | public function createAction( $site = 'default', $resource ) |
||
117 | |||
118 | |||
119 | /** |
||
120 | * Deletes the resource object or a list of resource objects |
||
121 | * |
||
122 | * @param string Resource location, e.g. "product" |
||
123 | * @param string $site Unique site code |
||
124 | * @param integer $id Unique resource ID |
||
125 | * @return string Generated output |
||
126 | */ |
||
127 | public function deleteAction( $site = 'default', $resource, $id ) |
||
137 | |||
138 | |||
139 | /** |
||
140 | * Returns the HTML code for the requested resource object |
||
141 | * |
||
142 | * @param string Resource location, e.g. "product" |
||
143 | * @param string $site Unique site code |
||
144 | * @param integer $id Unique resource ID |
||
145 | * @return string Generated output |
||
146 | */ |
||
147 | public function getAction( $site = 'default', $resource, $id ) |
||
152 | |||
153 | |||
154 | /** |
||
155 | * Saves a new resource object |
||
156 | * |
||
157 | * @param string Resource location, e.g. "product" |
||
158 | * @param string $site Unique site code |
||
159 | * @return string Generated output |
||
160 | */ |
||
161 | public function saveAction( $site = 'default', $resource ) |
||
171 | |||
172 | |||
173 | /** |
||
174 | * Returns the HTML code for a list of resource objects |
||
175 | * |
||
176 | * @param string Resource location, e.g. "product" |
||
177 | * @param string $site Unique site code |
||
178 | * @return string Generated output |
||
179 | */ |
||
180 | public function searchAction( $site = 'default', $resource ) |
||
185 | |||
186 | |||
187 | /** |
||
188 | * Returns the resource controller |
||
189 | * |
||
190 | * @param string $sitecode Unique site code |
||
191 | * @return \Aimeos\MShop\Context\Item\Iface Context item |
||
192 | */ |
||
193 | protected function createClient( $sitecode, $resource ) |
||
206 | |||
207 | |||
208 | /** |
||
209 | * Returns the generated view including the HTML code |
||
210 | * |
||
211 | * @param string $content Content from admin client |
||
212 | */ |
||
213 | protected function getHtml( $content ) |
||
222 | |||
223 | |||
224 | /** |
||
225 | * Set the response data from a PSR-7 response object |
||
226 | * |
||
227 | * @param \Psr\Http\Message\ResponseInterface $response PSR-7 response object |
||
228 | * @return string Response message content |
||
229 | */ |
||
230 | protected function setPsrResponse( \Psr\Http\Message\ResponseInterface $response ) |
||
240 | } |
||
241 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.