12345678910111213141516171819202122232425 |
- <?php
- require_once '../bootstrap.php';
-
- use SCF\Additionals\Carousel;
-
- $c = new Carousel(ROOT . DS . 'web/Styles/sks-screens' . DS);
-
- /**
- * AltoRouter INCLUSION
- */
- require_once ROOT.DS.APP."/Config/router.php";
-
- $tpl->assign('sksscreens', $c->getPicArray());
- $match = $router->match();
-
- if($match === false) {
- $tpl->display('errorpages/404.tpl');
- }
- else {
- try {
- require $match['target'];
- } catch(Exception $e) {
- return $e->getMessage();
- }
- }
|