You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
492 B
32 lines
492 B
<?php
|
|
|
|
namespace addons\example\controller;
|
|
|
|
use think\addons\Controller;
|
|
|
|
/**
|
|
* 测试控制器
|
|
*/
|
|
class Demo extends Controller
|
|
{
|
|
|
|
protected $layout = 'default';
|
|
protected $noNeedLogin = ['index', 'demo1'];
|
|
protected $noNeedRight = ['*'];
|
|
|
|
public function index()
|
|
{
|
|
return $this->view->fetch();
|
|
}
|
|
|
|
public function demo1()
|
|
{
|
|
return $this->view->fetch();
|
|
}
|
|
|
|
public function demo2()
|
|
{
|
|
return $this->view->fetch();
|
|
}
|
|
|
|
}
|
|
|