This repository has been archived on 2024-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
yoshop/source/application/common/model/store/Access.php

61 lines
1.6 KiB
PHP
Raw Normal View History

2020-04-25 22:20:29 +08:00
<?php
namespace app\common\model\store;
use app\common\model\BaseModel;
/**
* 商家用户权限模型
* Class Access
* @package app\common\model\admin
*/
class Access extends BaseModel
{
protected $name = 'store_access';
/**
* 获取所有权限
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
*/
protected static function getAll()
{
$data = static::useGlobalScope(false)->order(['sort' => 'asc', 'create_time' => 'asc'])->select();
return $data ? $data->toArray() : [];
}
/**
* 权限信息
* @param int|array $where
* @return array|false|\PDOStatement|string|\think\Model|static
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
*/
public static function detail($where)
{
$model = static::useGlobalScope(false);
is_array($where) ? $model->where($where) : $model->where('access_id', '=', $where);
return $model->find();
}
/**
* 获取权限url集
* @param $accessIds
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
*/
public static function getAccessUrls($accessIds)
{
$urls = [];
foreach (static::getAll() as $item) {
in_array($item['access_id'], $accessIds) && $urls[] = $item['url'];
}
return $urls;
}
}