Skip to content

articioch/users

 
 

Repository files navigation

Users Plugin for CakePHP

The users plugin is for allowing users to register and login manage their profile. It also allows admins to manage the users.

The plugin is thought as a base to extend your app specific users controller and model from.

Installation

The plugin is pretty easy to set up, all you need to do is to copy it to you application plugins folder and load the needed tables. You can create database tables using either the schema shell or the CakeDC Migrations plugin:

cake schema create -plugin users -name users

or

cake migration all -plugin users

You will also need the CakeDC Search plugin, just grab it and put it into your application's plugin folder.

How to use it

You can use the plugin as it comes if you're happy with it or, more common, extend your app specific user implementation from the plugin.

The plugin itself is already capable of:

  • User registration
  • Account verification by a token sent via email
  • User login (email / password)
  • Password reset based on requesting a token by email and entering a new password
  • Simple profiles for users
  • User search
  • User management using the "admin" section

How to extend the plugin

Extending the controller

Declare the controller class

App::import('Controller', 'Users.Users');
AppUsersController extends UsersController

In the case you want to extend also the user model it's required to set the right user class in the beforeFilter() because the controller will use the inherited model which would be Users.User.

public function beforeFilter() {
	parent::beforeFilter();
	$this->User = ClassRegistry::init('AppUser');
}

You can overwrite the render() method to fall back to the plugin views in the case you want to use some of them

public function render($action = null, $layout = null, $file = null) {
	if (!file_exists(VIEWS . 'app_users' . DS . $action . '.ctp')) {
		$file = App::pluginPath('users') . 'views' . DS . 'users' . DS . $action . '.ctp';
	}
	return parent::render($action, $layout, $file);
}

Extending the model

Declare the model

App::import('Model', 'Users.User');
AppUser extends User {
	public $useTable = 'users';
	public $name = 'AppUser';
}

It's important to override the AppUser::useTable property with the 'users' table.

You can override/extend all methods or properties like validation rules to suit your needs.

Requirements

Support

For support and feature request, please visit the Users Plugin Support Site.

For more information about our Professional CakePHP Services please visit the Cake Development Corporation website.

License

Copyright 2009-2010, Cake Development Corporation

Licensed under The MIT License
Redistributions of files must retain the above copyright notice.

Copyright

Copyright 2009-2010
Cake Development Corporation
1785 E. Sahara Avenue, Suite 490-423
Las Vegas, Nevada 89104
http://cakedc.com

About

CakePHP Users Plugin

Resources

License

Stars

Watchers

Forks

Packages

No packages published