1 | <?php |
||
18 | class BackendController extends ActionController |
||
19 | { |
||
20 | |||
21 | /** |
||
22 | * @var \HDNET\OnpageIntegration\Loader\ApiResultLoader |
||
23 | * @inject |
||
24 | */ |
||
25 | protected $loader; |
||
26 | |||
27 | /** |
||
28 | * @var \HDNET\OnpageIntegration\Provider\MetaDataProvider |
||
29 | * @inject |
||
30 | */ |
||
31 | protected $metaDataProvider; |
||
32 | |||
33 | /** |
||
34 | * @var \HDNET\OnpageIntegration\Domain\Repository\ConfigurationRepository |
||
35 | * @inject |
||
36 | */ |
||
37 | protected $configurationRepository; |
||
38 | |||
39 | /** |
||
40 | * @var \HDNET\OnpageIntegration\Service\OnPageService |
||
41 | * @inject |
||
42 | */ |
||
43 | protected $onpPageService; |
||
44 | |||
45 | /** |
||
46 | * Load all filter options and show them on the index page |
||
47 | */ |
||
48 | public function indexAction() |
||
67 | |||
68 | /** |
||
69 | * Show the details of an api call |
||
70 | * |
||
71 | * @param string $section |
||
72 | * @param string $call |
||
73 | */ |
||
74 | public function detailAction($section, $call) |
||
90 | |||
91 | /** |
||
92 | * Empty Keyword Page |
||
93 | */ |
||
94 | public function keywordAction() |
||
100 | } |
||
101 |