161 lines
3.2 KiB
PHP
161 lines
3.2 KiB
PHP
<?php defined('BASEPATH') || exit("No direct script access allowed");
|
|
|
|
/**
|
|
* Rules for login page.
|
|
*
|
|
* @var array
|
|
*/
|
|
$config['auth/login'] = array(
|
|
array(
|
|
'field' => 'username',
|
|
'label' => _('Username'),
|
|
'rules' => 'required|trim',
|
|
),
|
|
array(
|
|
'field' => 'password',
|
|
'label' => _('Password'),
|
|
'rules' => 'required|trim',
|
|
),
|
|
array(
|
|
'field' => 'remember',
|
|
'label' => _('Remember me on this computer'),
|
|
'rules' => 'integer',
|
|
),
|
|
);
|
|
|
|
/**
|
|
* Rules for forgotten password page.
|
|
*
|
|
* @var array
|
|
*/
|
|
$config['auth/forgot_password'] = array(
|
|
array(
|
|
'field' => 'email',
|
|
'label' => _('Email address'),
|
|
'rules' => 'required|valid_email|trim',
|
|
),
|
|
);
|
|
|
|
/**
|
|
* Rules for creating users.
|
|
*
|
|
* @var array
|
|
*/
|
|
$config['users/create'] = array(
|
|
array(
|
|
'field' => 'username',
|
|
'label' => _('Username'),
|
|
'rules' => 'required|min_length[4]|max_length[20]|unique[users.username]|trim',
|
|
),
|
|
array(
|
|
'field' => 'email',
|
|
'label' => _('Email address'),
|
|
'rules' => 'required|valid_email|trim',
|
|
),
|
|
array(
|
|
'field' => 'password',
|
|
'label' => _('Password'),
|
|
'rules' => 'required|min_length[6]|matches[password_confirm]',
|
|
),
|
|
array(
|
|
'field' => 'password_confirm',
|
|
'label' => _('Confirm password'),
|
|
'rules' => 'required',
|
|
),
|
|
array(
|
|
'field' => 'firstname',
|
|
'label' => _('First name'),
|
|
'rules' => 'required|max_length[50]|trim',
|
|
),
|
|
array(
|
|
'field' => 'lastname',
|
|
'label' => _('Last name'),
|
|
'rules' => 'required|max_length[50]|trim',
|
|
),
|
|
array(
|
|
'field' => 'institution',
|
|
'label' => _('Institution'),
|
|
'rules' => 'max_length[100]|trim',
|
|
),
|
|
array(
|
|
'field' => 'phone',
|
|
'label' => _('Phone number'),
|
|
'rules' => 'regex_match[/^\+\d{2,4}\s\d{2,4}\s\d{3,10}+$/i]|trim',
|
|
),
|
|
);
|
|
|
|
/**
|
|
* Rules for editing users.
|
|
*
|
|
* @var array
|
|
*/
|
|
$config['users/edit'] = array(
|
|
array(
|
|
'field' => 'firstname',
|
|
'label' => _('First name'),
|
|
'rules' => 'required|max_length[50]|trim',
|
|
),
|
|
array(
|
|
'field' => 'lastname',
|
|
'label' => _('Last name'),
|
|
'rules' => 'required|max_length[50]|trim',
|
|
),
|
|
array(
|
|
'field' => 'email',
|
|
'label' => _('Email address'),
|
|
'rules' => 'required|valid_email|trim',
|
|
),
|
|
array(
|
|
'field' => 'institution',
|
|
'label' => _('Institution'),
|
|
'rules' => 'max_length[100]|trim',
|
|
),
|
|
array(
|
|
'field' => 'phone',
|
|
'label' => _('Phone number'),
|
|
'rules' => 'regex_match[/^\+\d{2,4}\s\d{2,4}\s\d{3,10}+$/i]|trim',
|
|
),
|
|
);
|
|
|
|
/**
|
|
* Rules for the settings page.
|
|
*
|
|
* @var array
|
|
*/
|
|
$config['auth/settings'] = array(
|
|
array(
|
|
'field' => 'firstname',
|
|
'label' => _('First name'),
|
|
'rules' => 'required|max_length[50]|trim',
|
|
),
|
|
array(
|
|
'field' => 'lastname',
|
|
'label' => _('Last name'),
|
|
'rules' => 'required|max_length[50]|trim',
|
|
),
|
|
array(
|
|
'field' => 'email',
|
|
'label' => _('Email address'),
|
|
'rules' => 'required|valid_email|trim',
|
|
),
|
|
array(
|
|
'field' => 'institution',
|
|
'label' => _('Institution'),
|
|
'rules' => 'max_length[100]|trim',
|
|
),
|
|
array(
|
|
'field' => 'phone',
|
|
'label' => _('Phone number'),
|
|
'rules' => 'regex_match[/^\+\d{2,4}\s\d{2,4}\s\d{3,10}+$/i]|trim',
|
|
),
|
|
array(
|
|
'field' => 'new_password',
|
|
'label' => _('New password'),
|
|
'rules' => 'min_length[6]|matches[new_password_confirm]',
|
|
),
|
|
);
|
|
|
|
/* End of file form_validation.php */
|
|
/* Location: ./application/config/form_validation.php */
|
|
|