1 | <?php |
||
16 | class BackendController extends ActionController |
||
17 | { |
||
18 | |||
19 | /** |
||
20 | * @var \HDNET\OnpageIntegration\Loader\ApiResultLoader |
||
21 | * @inject |
||
22 | */ |
||
23 | protected $loader; |
||
24 | |||
25 | /** |
||
26 | * Represent the index page |
||
27 | */ |
||
28 | public function indexAction() |
||
40 | |||
41 | /** |
||
42 | * Handle the detail pages |
||
43 | * |
||
44 | * @param $section |
||
45 | * @param $call |
||
46 | */ |
||
47 | public function detailAction($section, $call) |
||
59 | |||
60 | /** |
||
61 | * Empty Keyword Page |
||
62 | */ |
||
63 | public function keywordAction() |
||
69 | } |
||
70 |