ubn5/backend/modules/cms/controllers/DefaultController.php

21 lines
342 B
PHP
Raw Normal View History

2025-02-10 05:21:56 +00:00
<?php
namespace backend\modules\cms\controllers;
use yii\web\Controller;
/**
* Default controller for the `cms` module
*/
class DefaultController extends Controller
{
/**
* Renders the index view for the module
* @return string
*/
public function actionIndex()
{
return $this->render('index');
}
}