Files
steamwidgets-web/app/controller/index.php
2022-09-25 12:35:24 +02:00

31 lines
519 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']);
}
}