Frank Bardon wrote on Monday 18th of July 2011:Simplest way to start would be to duplicate the simpleauth classes as a starting point into your app/classes/auto folder. Then add functionality from there.
Harro Verton wrote on Tuesday 19th of July 2011:Fuel autoloads everything, no need to load something manually unless you haven't followed the naming conventions. Do not modify the auth package itself. That will make updates to newer versions difficult. Copy the class file to your app folder, maintaining the same file structure (a class called Auth_This_That goes into app/auth/this/that.php). Also copy the auth config file to app/config, and modify it there to use your driver.
Autoloader::add_classes(array( // Add classes you want to override here 'Arr' => APPPATH.'classes/arr.php', 'Date' => APPPATH.'classes/date.php', 'Form' => APPPATH.'classes/form.php', 'Str' => APPPATH.'classes/str.php', 'Pagination' => APPPATH.'classes/pagination.php', 'Validation' => APPPATH.'classes/validation.php', 'Auth_Login_SimpleAuth' => APPPATH.'classes/auth/login/simpleauth.php', ));
It looks like you're new here. If you want to get involved, click one of these buttons!