Files
steamwidgets-web/app/controller/index.php
2023-03-22 15:53:32 +01:00

45 lines
828 B
PHP

<?php
/**
* Index controller
*/
class IndexController extends BaseController {
const INDEX_LAYOUT = 'layout';
/**
* Perform base initialization
*
* @return void
*/
public function __construct()
{
parent::__construct(self::INDEX_LAYOUT);
}
/**
* Handles URL: /
*
* @param Asatru\Controller\ControllerArg $request
* @return Asatru\View\ViewHandler
*/
public function index($request)
{
//Generate and return a view by using the helper
return parent::view(['content', 'index'], [
'show_header' => true
]);
}
/**
* Handles URL: /documentation
*
* @param Asatru\Controller\ControllerArg $request
* @return Asatru\View\ViewHandler
*/
public function documentation($request)
{
//Generate and return a view by using the helper
return parent::view(['content', 'doc']);
}
}