This release intends to add somes stuff requested.
The list are modified and somes fields are added to the user information.
The UserManager-full package will include the installation package and a simple INSTALL doc.
This package is right to use with mysql and IFX
Somes bugs are corrected,
You can Now move a children to another parent without deleting/creating it
SQL optimizations
Here under is the Dbschema done with Informix,
Update to your Db...
All Db version will follow
create table usr
(
usr_id nchar(30),
usr_login nchar(50),
usr_firstname nchar(100),
usr_lastname nchar(100),
usr_email nchar(200),
usr_passwd nchar(20),
usr_description nchar(255),
site_id nchar(30),
primary key (usr_id) constraint usr_id
);
create table grp
(
grp_id nchar(30),
grp_name nchar(100),
grp_description nchar(255) not null ,
site_id nchar(30),
primary key (grp_id) constraint grp_id_key
);... read more
I integrate 3 packages. One to acces the DB, composed of the metabase classes and the recordset encapsulation class.
The second is the BaseClass Packages, that is the classes to access to the groups, users, applications objects.
And the Last is the WebInterface.
The DbSchema will follow.
You can take a look at the code ;-)
Here we start the Usermanagement project.
First of all base classes are uploaded.
To be checked
Next, backoffice interface will follow
Note that It is based on the MetaBase done By Manuel Lemos available on http://phpclasses.upperdesign.com
pH