Files
lsky-pro/application/index/controller/Index.php
T
wispx 8fe1190da5 - 移除图片后清空图片列表
- 首页增加"本站已托管N张图片"
2019-01-19 09:25:11 +08:00

27 lines
465 B
PHP

<?php
/**
* User: Wisp X
* Date: 2018/9/27
* Time: 下午4:00
* Link: https://github.com/wisp-x
*/
namespace app\index\controller;
use app\common\model\Images;
class Index extends Base
{
public function index()
{
$this->assign('images_count', Images::cache(120)->count());
return $this->fetch();
}
public function api()
{
$this->assign('domain', $this->request->domain());
return $this->fetch();
}
}