16 lines
210 B
Plaintext
16 lines
210 B
Plaintext
|
<?php
|
||
|
|
||
|
namespace addons\{%addon%}\controller;
|
||
|
|
||
|
use think\addons\Controller;
|
||
|
|
||
|
class Index extends Controller
|
||
|
{
|
||
|
|
||
|
public function index()
|
||
|
{
|
||
|
$this->error("当前插件暂无前台页面");
|
||
|
}
|
||
|
|
||
|
}
|