All Projects → josegonzalez → cakephp-trackable

josegonzalez / cakephp-trackable

Licence: MIT License
CakePHP2: Unmaintained plugin for tracking who created/modified a record

Programming Languages

PHP
23972 projects - #3 most used programming language

Build Status Coverage Status Total Downloads Latest Stable Version Documentation Status Gratipay

Trackable Behavior Plugin

The Trackable Behavior Plugin allows you to easily keep track of who created a record and the person that last modified it

Background

There were a bunch of troll posts of how to set the current user as the modifier of a record, and I decided to codify these as a plugin. Since I was using the Authsome Component, I ended up adding Authsome support as well :)

Requirements

  • PHP 5.2+
  • CakePHP 2.x
  • Talent, Commitment, Skill

Installation

[Using Composer]

Add the plugin to your project's composer.json - something like this:

  {
    "require": {
      "josegonzalez/cakephp-trackable": "dev-master"
    }
  }

Because this plugin has the type cakephp-plugin set in its own composer.json, Composer will install it inside your /Plugins directory, rather than in the usual vendors file. It is recommended that you add /Plugins/Trackable to your .gitignore file. (Why? read this.)

[Manual]

[GIT Submodule]

In your app directory type:

	git submodule add git://github.com/josegonzalez/trackable-behavior.git Plugin/Trackable
	git submodule init
	git submodule update

[GIT Clone]

In your Plugin directory type

	git clone git://github.com/josegonzalez/trackable-behavior.git Trackable

Enable plugin

In 2.0 you need to enable the plugin your app/Config/bootstrap.php file:

	CakePlugin::load('Upload');

If you are already using CakePlugin::loadAll();, then this is not necessary.

Usage

In the model that needs to be tracked, add:

	public $actsAs = array('Trackable.Trackable');

Then, so long as you are using either of the following methods, the id will be properly set:

Here is an example of the second method:

	class Post extends Model {

		public $actsAs = array('Trackable');

		public function myCustomSave($data, $user_id) {
			$this->trackable_id = $user_id;
			return $this->save($data);
		}

	}

Options

  • fields: (default: array) An array of fields mapping to a list of events when that field should be updated. Possible events are create, read, update, delete. Example:

      class Post extends Model {
    
      	public $actsAs = array('Trackable.Trackable' => array(
      		'fields' => array(
      			'created_by' => array('create'),
      			'last_read_by' => array('read'),
      			'modified_by' => array('update'),
      			'deleted_by' => array('delete'),
      		)
      	));
      }
    
  • user_model: (default: User) name of User model

  • user_primaryKey: (default: id) field to use as user_id from the User model

  • auto_bind: (default: true) automatically bind the model to the User model

  • user_singleton: (default: true) Use the User::get() syntax

  • required: (default: array('save')) Events where trackable_id is REQUIRED before the action is performed. Possible events are create, read, update, delete.

Todo

  • Unit Tests
  • More Documentation

License

Copyright (c) 2009 Jose Diaz-Gonzalez

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].