//login/classes/auth/login/simpleauth.php
namespace Login;
class Auth_Login_SimpleAuth extends \Auth\Auth_Login_SimpleAuth{
//put your code here
function before(){
parent::before();
}
function test(){
echo 'test';
}
}
I added the following in bootstrap file
Autoloader::add_classes(array(
// Add classes you want to override here
// Example: 'View' => APPPATH.'classes/view.php',
'Auth_Login_SimpleAuth'=>APPPATH.'modules'.DS.'login/classes/auth/login/simpleauth.php'
));
It looks like you're new here. If you want to get involved, click one of these buttons!