slimphp /
Slim
Slim is a PHP micro framework that helps you quickly write simple yet powerful web applications and APIs.
95/100 healthLoading repository data…
xiidea / repository
A simple yet easy to implement Role Based Access Control Library for popular PHP framework Codeigniter
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
A simple yet easy to implement Role Based Access Control Library for popular PHP framework Codeigniter
Installation of this library is simple 4 steps
Put ezRbac in the third_party Directory of your application (or use composer command)
Run the SQL in schema directory or create three tables in your database manually.
Set $config['enable_hooks'] = TRUE; at ./application/config/config.php
Set $config['encryption_key'] = SOME_SECRET_KEY; at ./application/config/config.php
Add a hook in ./application/config/hooks.php
$hook['post_controller_constructor'] = array(
'class' => 'EzRbacHook',
'function' => 'accessCheck',
'filename' => 'EzRbacHook.php',
'filepath' => 'third_party/ezRbac'
);
Define a public function named access_map in your controller something like bellow:
public function access_map(){
return array(
'index'=>'view',
'update'=>'edit'
);
}
The index of the array is the actual action name, and the value mapped to the access privileges configured as $config['default_access_map'] = array("view", "create", "edit", "delete", "publish")
##Default credential
If you have imported the provided data.sql then the default credential is
user: admin@admin.com
password: 123456
logout url : /index.php/welcome/index/rbac/logout
acl manage url : /index.php/welcome/index/rbac/gui
If you have enabled the routing(see How to eneable Routing) then you can access all url like /rbac/(logout|gui)
Its easy to enable with 2 steps
Set $config['use_routing'] = true; at ./ezRbac/config/ez_rbac.php
set $route['^(rbac)/(.+)$'] = $route['default_controller']."/index/$1/$2"; at /application/config/routes.php (where rbac can be replaced whatever you like by setting the $config['ezrbac_url'] = 'rbac'; )
Most of the customization can be done through setting configuration values. you can customize configuration in two ways:
You can override the view file also. just copy the view files into /application/views/ezrbac/ and modify as per your need. Currently only views in login directory is extensible.
public_controller
type: array
default : array()
List of public controller which access will not be checked by our library
ajax_no_permission_msg
type: string
default : You do not have permission to perform this action!
Message to return while performing an ajax request instead of viewing the full restricted page, so you can handle the situation by your self.
default_access
type: boolean
default : FALSE
The default access for a unknown method TRUE for give access denied otherwise.
default_access_map
type: array
default : array("view", "create", "edit", "delete", "publish")
Access Map array Used by the system. You can name these as you like and you can add/remove access name.
autologin_cookie_life
type: int
default : 2592000 (30 days)
The time in second to remember user login session with remember me checked.
autologin_cookie_name
type: string
default : ezrbac_remember_me
The autologin cookie name used to store user data with remember me checked.
redirect_url
type: string
default : ""
The redirect url if access denied for a resource url(should be a public controller). Leave it empty if you are not sure about this
login_url
type: string
default : ""
If you like to handle login then set your login url(should be a public controller) here, Leave it empty to let me handle it!! when you handling login,
use $this->ezrbac->getCurrentUser($user) to register the user session.
login_session_key
type: string
default : access_role
Login check session key name, used to check if a user is logged in or not. Without modification of core library,
you may use any of these: user_id/user_email/access_role
password_min_length
type: int
default : 6
The password validation rule check for minimum length.
password_recovery_email
type: string
default : noreply@yourdomain.com
The From email for password recovery email
password_recovery_email_name type: string default : EzRbac The From name for password recovery email
array(
'id' => 'id',
'email' => 'email',
'password' => 'password',
'salt' => 'salt',
'user_role_id' => 'user_role_id',
'last_login' => 'last_login',
'last_login_ip' => 'last_login_ip',
'reset_request_code' => 'reset_request_code',
'reset_request_time' => 'reset_request_time',
'reset_request_ip' => 'reset_request_ip',
'verification_status' => 'verification_status',
'status' => 'status'
);
The database field map for your existing system. Helpful to adapt your db without modifying the code!!
array(
'id' => 'id',
'role_name' => 'role_name'
);
The database field map for your existing system. Helpful to adapt your db without modifying the code!!
user_meta_user_id
type: string
default : user_id
The foreign key name in user meta table
show_password_reset_mail
type: boolean
default : FALSE
Enable showing the email on browser rather then sending it. for debug purpose. do not set true in the production
override_email_function
type: string|false
default : FALSE
You can use your own function to send email. if you set this value to 'name_of_your_function'. name_of_your_function($option) will be called to send email
where $option = array('subject'=>'','from'=>'', 'from_name'=>'', 'to'=>'','body'=>'');
enable_ezrbac_gui
type: boolean
default : TRUE
Enable or disable the management interface
ezrbac_gui_url
type: string
default : gui
Url identifier for ezrbac gui interface access
ezrbac_password
type: string
default : hardtoremember
Password to access management interface of ACL
ezrbac_url
type: string
default : rbac
Ezrbac specific url identifier.
use_assets_within_package
type: boolean
default : TRUE
This configuration value tell the library from where it should use the resource. if set to true the js/css/images used in the library views will be served from the assets directory in package (helpful for quick setup).
For advance user it will be better to copy the contents of assets directory in a web accessible location
and set the $config['assets_base_directory']='the/relative/path/of/assets/directory/from/root'
assets_base_directory
type: string
default : rbac
Optional only used if you set the the $config['use_assets_within_package']=false;
Then set the relative path of assets directory from root
use_routing
type: boolean
default : FALSE
enable clean url for management interface by adding routing rule. if $config['ezrbac_url']='rbac' then you can add $route['^(rbac)/(.+)$'] = $route['default_controller']."/index/$1/$2"; and set the value to true.
To use this library you need Codeigniter 3.0+ For older version use 2.x branch
Selected from shared topics, language and repository description—not editorial ratings.
slimphp /
Slim is a PHP micro framework that helps you quickly write simple yet powerful web applications and APIs.
95/100 healthmockery /
Mockery is a simple yet flexible PHP mock object framework for use in unit testing with PHPUnit, PHPSpec or any other testing framework. Its core goal is to offer a test double framework with a succinct API capable of clearly defining all possible object operations and interactions using a human readable Domain Specific Language (DSL).
91/100 healthpassword_recovery_subject
type: string
default : Password Reset Request
The subject for password recovery email
auto_login_table
type: string
default : user_autologin
The database table name used to store auto login data
user_table
type: string
default : system_users
The database table name used to store user data
user_meta_table
type: string
default : user_meta
The database table name used to store user meta data
user_role_table
type: string
default : user_role
The database table name used to store user role info
access_map_table
type: string
default : user_access_map
The database table name used to store Access Control List as per user role
schema_user_table
type: array
default:
TruCopilot /
A high-performance backend cache system. It is intended for use in speeding up dynamic web applications by alleviating database load. Well implemented, it can drops the database load to almost nothing, yielding faster page load times for users, better resource utilization. It is simple yet powerful.
92/100 healthinfureal /
Simple but yet powerful library for running almost all artisan commands.
50/100 healthmarius-wieschollek /
A simple, yet feature rich password manager for Nextcloud
72/100 healthsalahhusa9 /
Laravel Updater is a simple yet powerful package for updater your Laravel applications. It makes it easy to upgrade your application to the latest version with just one command.
73/100 health