Skip to content
/ cith Public

A Simple and complete authentication library for Codeigniter.

License

Notifications You must be signed in to change notification settings

HexSeed/cith

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

CITH

A Simple and complete authentication library for Codeigniter.

Installation:

First you will need to add a copy of cith.php in the app/libraries . After that we should add the configuration variables in app/config/config.php .

// - Auth Security
$config['Cith_cryptCost'] = '12';
$config['Cith_loginPage'] = '/login';

// - Auth Database
$config['Cith_table'] = 'accounts'; // Accounts table name.
$config['Cith_loginIndex'] = 'email'; // Username or Email column name.
$config['Cith_passIndex'] = 'password'; // Password column name.

Now you can load the library in a controller, with: (we recommend load it in the constructor)

 $this->load->library('cith');

How to use:
  • Creating a new account:

In the array you can put how many items do you want, all will be written in the database, but remember, you need to put the configured login and password indexes.

$this->cith->register([
      'email' => '[email protected]', // required item
      'password' => 'admin', // required item
      'nickname' => 'Super Admin' // optional item
], false) // if you want a session to be created after the registration, set true.
  • Logging in a account:

This function can return invalid-login, invalid-password or authenticated.

this->cith->login('[email protected]', 'admin');
  • Logging out a account:

If you call without any parameter this function will redirect to login page.

this->cith->logout('/exit-page');
  • Retrieving account data.

This will return a object with all account data, you can set the boolean to true if you want a uncached data, this will request a updated data from database.

this->cith->account(false);
  • Defining a restricted area, with only logged in accounts.

Will redirect if the session does not exists, you can set the boolean to true if you want to check the password in the database, for any password changes or something else.

this->cith->force(false);

Releases

No releases published

Packages

No packages published

Languages