<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* Userlib Configurations
*
* Contains all config settings for the Userlib class
*
* @package BackendPro
* @subpackage Configurations
* @author Adam Price
* @copyright Copyright (c) 2008, Adam Price
* @license http://www.gnu.org/licenses/lgpl.html
* @link http://www.kaydoo.co.uk/projects/backendpro
* @filesource
*/
// ------------------------------------------------------------------------
/**
* Authentication Actions
*
* These are all the actions performed when an auth process
* has been completed DO NOT SEND THE LOGIN ACTIONS BACK TO
* THE LOGIN CONTROLLER, IT WILL CAUSE AN INFINITE LOOP
*/
$config['userlib_action_login'] = '';
$config['userlib_action_logout'] = '';
$config['userlib_action_register'] ='';
$config['userlib_action_activation'] ='';
$config['userlib_action_forgotten_password'] = 'auth/login';
$config['userlib_action_admin_login'] = 'admin';
$config['userlib_action_admin_logout'] = '';
/**
* User Profile Fields
*
* Define here all custom user profile fields and their respective rules.
* To define a new custom profile field, you must specify an
* associative array from the database column name => Full Name/Rule.
* If no rule is given for a specific field it will not be validated.
*/
$config['userlib_profile_fields'] = array();
$config['userlib_profile_rules'] = array();
/* End of file userlib.php */
/* Location: ./modules/auth/config/userlib.php */