createloop / php-rbac
rbac
1.1.1
2014-09-24 07:02 UTC
Requires
- php: >=5.4.0
This package is not auto-updated.
Last update: 2024-11-09 17:03:49 UTC
README
Installation:
{ "require": { "createloop/php-rbac": "1.1.*@dev" } }
Defautl Usage:
- 把DB資料夾裡的sql 部屬在database (預設載體為Mysql,以PDO實現,要用不同儲存方式請看 Custom Usage)
- 調整Storage/config.php 裡面的連線參數設定 或是 new MysqlStorage 帶入連線必要參數
Custom Usage:
- 可選擇自行實現儲存載體,只要繼承RBAC\Interfaces\IStroage ,實作裡面的方法即可。
Usage:
驗證:
$rbac = new Rbac("user_id",new ProxyFactory(IStorage storage), IStorage storage); $rbac->auth("controller/action/resource","get"); //return true or false
建構新 resource:
$admin = new admin(new ProxyFactory(IStorage $storage), IStorage $storage); $resource = $admin->createResource($name, $resource);
建構新 Role:
$admin = new admin(new ProxyFactory(IStorage $storage), IStorage $storage); $role = $resource = $admin->createRole($name);
賦予Role Resource:
$role->addResource($resource);
License
Composer is licensed under the MIT License - see the LICENSE file for details