Changeset 3326 for trunk/modules/auth
- Timestamp:
- 08/09/2008 04:24:30 PM (4 months ago)
- Location:
- trunk/modules/auth
- Files:
-
- 12 modified
-
config/auth.php (modified) (1 diff)
-
controllers/auth_demo.php (modified) (1 diff)
-
libraries/Auth.php (modified) (2 diffs)
-
libraries/drivers/Auth.php (modified) (1 diff)
-
libraries/drivers/Auth/File.php (modified) (1 diff)
-
libraries/drivers/Auth/ORM.php (modified) (1 diff)
-
models/auth_role.php (modified) (1 diff)
-
models/auth_user.php (modified) (1 diff)
-
models/auth_user_token.php (modified) (1 diff)
-
models/role.php (modified) (1 diff)
-
models/user.php (modified) (1 diff)
-
models/user_token.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/modules/auth/config/auth.php
r3114 r3326 1 <?php defined('SYSPATH') or die('No direct script access.');1 <?php 2 2 /** 3 3 * Auth library configuration. By default, Auth will use the controller -
trunk/modules/auth/controllers/auth_demo.php
r3267 r3326 1 <?php defined('SYSPATH') or die('No direct script access.');1 <?php 2 2 /** 3 3 * Auth module demo controller. This controller should NOT be used in production. -
trunk/modules/auth/libraries/Auth.php
r3163 r3326 1 <?php defined('SYSPATH') or die('No direct script access.');1 <?php 2 2 /** 3 3 * User authorization library. Handles user login and logout, as well as secure … … 6 6 * @package Auth 7 7 * @author Kohana Team 8 * @copyright (c) 2007 Kohana Team8 * @copyright (c) 2007-2008 Kohana Team 9 9 * @license http://kohanaphp.com/license.html 10 10 */ -
trunk/modules/auth/libraries/drivers/Auth.php
r3114 r3326 1 <?php defined('SYSPATH') or die('No direct script access.');1 <?php 2 2 /** 3 3 * Auth driver interface. -
trunk/modules/auth/libraries/drivers/Auth/File.php
r3114 r3326 1 <?php defined('SYSPATH') or die('No direct script access.');1 <?php 2 2 /** 3 3 * File Auth driver. -
trunk/modules/auth/libraries/drivers/Auth/ORM.php
r3273 r3326 1 <?php defined('SYSPATH') or die('No direct script access.');1 <?php 2 2 /** 3 3 * ORM Auth driver. -
trunk/modules/auth/models/auth_role.php
r3153 r3326 1 <?php defined('SYSPATH') or die('No direct script access.');1 <?php 2 2 3 3 class Auth_Role_Model extends ORM { -
trunk/modules/auth/models/auth_user.php
r3267 r3326 1 <?php defined('SYSPATH') or die('No direct script access.');1 <?php 2 2 3 3 class Auth_User_Model extends ORM { -
trunk/modules/auth/models/auth_user_token.php
r3092 r3326 1 <?php defined('SYSPATH') or die('No direct script access.');1 <?php 2 2 3 3 class Auth_User_Token_Model extends ORM { -
trunk/modules/auth/models/role.php
r3092 r3326 1 <?php defined('SYSPATH') or die('No direct script access.');1 <?php 2 2 3 3 class Role_Model extends Auth_Role_Model { -
trunk/modules/auth/models/user.php
r3092 r3326 1 <?php defined('SYSPATH') or die('No direct script access.');1 <?php 2 2 3 3 class User_Model extends Auth_User_Model { -
trunk/modules/auth/models/user_token.php
r3092 r3326 1 <?php defined('SYSPATH') or die('No direct script access.');1 <?php 2 2 3 3 class User_Token_Model extends Auth_User_Token_Model {
