Updated to work with KH 3.1
This commit is contained in:
37
application/classes/auth/tsm.php
Normal file
37
application/classes/auth/tsm.php
Normal file
@@ -0,0 +1,37 @@
|
||||
<?php defined('SYSPATH') or die('No direct access allowed.');
|
||||
|
||||
/**
|
||||
* OSB Auth driver.
|
||||
*
|
||||
* @package PTA
|
||||
* @subpackage Account
|
||||
* @category Auth
|
||||
* @author Deon George
|
||||
* @copyright (c) phpTSMadmin Development Team
|
||||
* @license http://phptsmadmin.sf.net/license.html
|
||||
*/
|
||||
class Auth_TSM extends Auth_ORM {
|
||||
/**
|
||||
* Logs a user in.
|
||||
*
|
||||
* @param string username
|
||||
* @param string password
|
||||
* @param boolean enable autologin
|
||||
* @return boolean
|
||||
*/
|
||||
protected function _login($user, $password, $remember) {
|
||||
if ( ! is_object($user))
|
||||
{
|
||||
$username = $user;
|
||||
|
||||
// Load the user
|
||||
$user = ORM::factory('admin')
|
||||
->where('ADMIN_NAME','=',$username)
|
||||
->find();
|
||||
}
|
||||
|
||||
// Normally, if we get this far, we are already logged in.
|
||||
return TRUE;
|
||||
}
|
||||
}
|
||||
?>
|
Reference in New Issue
Block a user