安装插件后的基础文件
This commit is contained in:
32
app/admin/controller/easyflow/Index.php
Normal file
32
app/admin/controller/easyflow/Index.php
Normal file
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
declare(strict_types = 1);
|
||||
|
||||
namespace app\admin\controller\easyflow;
|
||||
use app\AdminController;
|
||||
use support\Response;
|
||||
|
||||
/**
|
||||
* 简单工作流后台控制器
|
||||
* <!--Easyflow-->
|
||||
*/
|
||||
class Index extends AdminController {
|
||||
|
||||
// 初始化函数
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct();
|
||||
/**
|
||||
* TODO...
|
||||
*/
|
||||
}
|
||||
|
||||
/**
|
||||
* 初始化后台首页
|
||||
* @return Response
|
||||
*/
|
||||
public function index(): Response
|
||||
{
|
||||
return $this->view();
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user