Просто создайте user.php файл в папке application / classes / model и поместите его внутрь:
<?php
defined('SYSPATH') or die('No direct access allowed.');
class Model_User extends Model_Auth_User
{
public function create_user($values, $expected)
{
// Your definition of the function
}
}
После проверки функции регистра, вотместо для других полей (строка 22-27):
$user->create_user($fields, array(
'username',
'password',
'email',
'user_type',
'other field',
'other field2',
));
Конечно, вам нужно иметь other_field
и other_field2
в вашей таблице.