Files
zzp-server/app/adminapi/lists/setting/LanguageLists.php
2026-01-19 14:19:22 +08:00

100 lines
2.7 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
// +----------------------------------------------------------------------
// | likeadmin快速开发前后端分离管理后台PHP版
// +----------------------------------------------------------------------
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
// | 开源版本可自由商用可去除界面版权logo
// | gitee下载https://gitee.com/likeshop_gitee/likeadmin
// | github下载https://github.com/likeshop-github/likeadmin
// | 访问官网https://www.likeadmin.cn
// | likeadmin团队 版权所有 拥有最终解释权
// +----------------------------------------------------------------------
// | author: likeadminTeam
// +----------------------------------------------------------------------
namespace app\adminapi\lists\setting;
use app\adminapi\lists\BaseAdminDataLists;
use app\common\model\setting\Language;
use app\common\lists\ListsSearchInterface;
use app\common\lists\ListsSortInterface;
/**
* 语言包列表
* Class LanguageLists
* @package app\adminapi\listssetting
*/
class LanguageLists extends BaseAdminDataLists implements ListsSearchInterface,ListsSortInterface
{
/**
* @notes 设置搜索条件
* @return \string[][]
* @author likeadmin
* @date 2023/11/30 13:59
*/
public function setSearch(): array
{
return [
'=' => ['name', 'is_show'],
];
}
/**
* @notes 设置支持排序字段
* @return array
* @author heshihu
* @date 2022/2/9 15:11
*/
public function setSortFields(): array
{
return ['create_time' => 'create_time', 'id' => 'id'];
}
/**
* @notes 设置默认排序
* @return array
* @author heshihu
* @date 2022/2/9 15:08
*/
public function setDefaultOrder(): array
{
return ['sort' => 'desc', 'id' => 'desc'];
}
/**
* @notes 获取语言包列表
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
* @author likeadmin
* @date 2023/11/30 13:59
*/
public function lists(): array
{
return Language::where($this->searchWhere)
->field(['id', 'name', 'name_loc','symbol','trans_symbol' , 'logo', 'precision', 'time_format', 'is_show', 'sort'])
->limit($this->limitOffset, $this->limitLength)
->order($this->sortOrder)
->select()
->toArray();
}
/**
* @notes 获取语言包数量
* @return int
* @author likeadmin
* @date 2023/11/30 13:59
*/
public function count(): int
{
return Language::where($this->searchWhere)->count();
}
}