20 lines
329 B
PHP
20 lines
329 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace plugin\admin\app\controller;
|
||
|
|
|
||
|
|
use support\Request;
|
||
|
|
use support\Response;
|
||
|
|
use support\think\Db;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 单页管理
|
||
|
|
*
|
||
|
|
* @icon fa fa-circle-o
|
||
|
|
*/
|
||
|
|
class SinglePageController extends ArchivesController
|
||
|
|
{
|
||
|
|
protected $type = 'page';
|
||
|
|
protected $tpl = 'singlepage';
|
||
|
|
protected $relationSearch = [];
|
||
|
|
}
|