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.
72 lines
1.5 KiB
72 lines
1.5 KiB
4 months ago
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
|
||
|
namespace app\admin\info;
|
||
|
|
||
|
use longbingcore\permissions\PermissionAbstract;
|
||
|
|
||
|
/**
|
||
|
* 模块功能权限
|
||
|
* Class PermissionAdmin
|
||
|
*/
|
||
|
class PermissionAdmin extends PermissionAbstract {
|
||
|
|
||
|
const tabbarKey = null;
|
||
|
//后台管理菜单对应key[必填] , 当前模块文件夹名称
|
||
|
const adminMenuKey = 'admin';
|
||
|
public $saasKey ;
|
||
|
const apiPaths = [];
|
||
|
|
||
|
|
||
|
public function __construct(int $uniacid,$infoConfigOptions = [])
|
||
|
{
|
||
|
$this->saasKey = longbing_get_auth_prefix('AUTH_MINI') ;
|
||
|
parent::__construct($uniacid, self::tabbarKey, self::adminMenuKey, $this->saasKey, self::apiPaths , $infoConfigOptions);
|
||
|
}
|
||
|
|
||
|
|
||
|
/**
|
||
|
* 返回saas端授权结果
|
||
|
* @return bool
|
||
|
*/
|
||
|
public function sAuth(): bool
|
||
|
{
|
||
|
return true ;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 返回p端授权结果
|
||
|
* @return bool
|
||
|
*/
|
||
|
public function pAuth(): bool
|
||
|
{
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 返回c端授权结果
|
||
|
*
|
||
|
* @param int $user_id
|
||
|
* @return bool
|
||
|
* @author ArtizanZhang
|
||
|
* @DataTime: 2019/12/9 17:13
|
||
|
*/
|
||
|
public function cAuth(int $user_id): bool
|
||
|
{
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 获取授权数量
|
||
|
*
|
||
|
* @author shuixian
|
||
|
* @DataTime: 2019/12/19 19:02
|
||
|
*/
|
||
|
public function getAuthNumber(){
|
||
|
$authNumber = $this->getAuthVaule( $this->saasKey ,2 ) ;
|
||
|
$authNumber = $authNumber == 0 ? 99999999 : $authNumber ;
|
||
|
return $authNumber ;
|
||
|
}
|
||
|
}
|