Файл: chatigniter v2/application/modules/chat/config/authentication.php
Строк: 47
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* User table
*
* This table should contain the username and password fields specified below. It can contain any other fields, such as "first_name"
*/
$config['authentication']['user_table'] = 'users';
/**
* User identifier field
*
* This field will usually be "id" or "user_id" but you could use something like "username"
*/
$config['authentication']['identifier_field'] = 'id';
/**
* Username field
*
* This field can be named what ever you like, an example would be "email"
*/
$config['authentication']['username_field'] = 'username';
/**
* Email field
*
* This field can be named what ever you like, an example would be "email"
*/
$config['authentication']['email_field'] = 'email';
/**
* Password field
*/
$config['authentication']['password_field'] = 'password';
/* End of file authentication.php */
/* Location: ./application/config/authentication.php */