Adding user accounts.
This commit is contained in:
parent
a07ba4020c
commit
188162f0a2
22 changed files with 800 additions and 16 deletions
20
PHPCI/Model/User.php
Normal file
20
PHPCI/Model/User.php
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* User model for table: user
|
||||
*/
|
||||
|
||||
namespace PHPCI\Model;
|
||||
|
||||
require_once(APPLICATION_PATH . 'PHPCI/Model/Base/UserBase.php');
|
||||
|
||||
use PHPCI\Model\Base\UserBase;
|
||||
|
||||
/**
|
||||
* User Model
|
||||
* @uses PHPCI\Model\Base\UserBase
|
||||
*/
|
||||
class User extends UserBase
|
||||
{
|
||||
// This class has been left blank so that you can modify it - changes in this file will not be overwritten.
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue