Skip to content
This repository has been archived by the owner on Feb 25, 2020. It is now read-only.

jmcneese/permissionable

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Permissionable Plugin for CakePHP 1.3+

Permissionable provides row level permissions to a CakePHP application that mimic the UNIX filesystem methods by providing owner, group and other permission levels.

Installation

  • checkout the code $ cd /path/to/your/app/plugins && git clone git://github.com/jmcneese/permissionable.git
  • create needed schema $ cake schema create Permissionable.permission
  • add the component to needed controllers (or AppController) public $components = array('Permissionable.Permissionable');
  • modify permissionable/controllers/components/permissionable.php to set user_id, primary group_id and secondary group_ids, so Permissionable knows who the logged in user is
  • add the behavior to needed models (or AppModel) public $actsAs = array('Permissionable.Permissionable' => array('defaultBits'=>480));

Documentation

Further documentation including additional ways of configuring Permissionable can be found here and here.

Reporting issues

If you have any issues with Permissionable please open a ticket on the github issue tracker

Contributing

If you'd like to contribute to Permissionable, feel free to fork the project and submit patches!

About

A CakePHP 1.3 plugin that provides UNIX-like row-level permissions for model data.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages