1 <?php
2
3 namespace rpf\extension\module;
4 use rpf\extension\extensionModule;
5 use rpf\system\module\log;
6
7 /**
8 * Class Index
9 *
10 * Displays a startpage
11 *
12 * @author Andreas Doebeling <ad@1601.com>
13 * @copyright 1601.production siegler&thuemmler ohg
14 * @link https://github.com/ADoebeling/RP2-Framework
15 * @link https://xing-ad.1601.com
16 * @package system
17 */
18 class index extends extensionModule
19 {
20 public function showIndex()
21 {
22 log::debug('Displaying Index-Page',__METHOD__);
23 echo file_get_contents(__DIR__.'/index/index.tpl');
24 }
25 }