Subversion Repositories php_users

Rev

Rev 10 | Rev 22 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 10 Rev 20
Line -... Line 1...
-
 
1
There are two pair of classes here.
-
 
2
 
-
 
3
users implements a login class for PHP.
-
 
4
usersDataSourceMysqli implements the data access (ie, data back end)
-
 
5
 
-
 
6
usersPermissions extends users by adding logical permissions
-
 
7
usersPermissionsDataSourceMysqli extends usersDataSourceMysqli
-
 
8
 
1
This is a Users Login class for PHP, designed to be a self contained
9
This is a Users Login class for PHP, designed to be a self contained
2
system to handle user login and administration. It is also designed to
10
system to handle user login and administration. It is also designed to
3
be programmatically modifiable by the programmer, ie adding new columns
11
be programmatically modifiable by the programmer, ie adding new columns
4
is fairly simple.
12
is fairly simple.
5
 
13
 
Line 11... Line 19...
11
   table, giving the user some limitations on what they can access in
19
   table, giving the user some limitations on what they can access in
12
   our app.
20
   our app.
13
   
21
   
14
   UsersInitDB.php creates and initializes the table structure for 
22
   UsersInitDB.php creates and initializes the table structure for 
15
   UsersTestExtended.php as an example of using it in an installer.
23
   UsersTestExtended.php as an example of using it in an installer.
-
 
24
   
-
 
25
   scripts containing the words Permissions are for the userPermissions
-
 
26
   class.
16
 
27
 
17
documentation contains users.class.txt which is the source from our 
28
documentation contains users.class.txt which is the source from our 
18
dokuwiki site
29
dokuwiki site
19
 
30
 
20
http://kb.unixservertech.com/software/dailydata/libraries/php_user
31
http://kb.unixservertech.com/software/dailydata/libraries/php_user