It is fairly simple to add and delete applications to/from phpGroupWare.
To make things easy for developers we go ahead and load the following files.
You will need to create the following directories for your code
(replace 'appname' with your application name)
`-- appname `-- images | `-- navbar.gif `-- inc | |-- functions.inc.php | |-- header.inc.php | `-- footer.inc.php `-- templates `-- default
To make the application aware of your application, add your application details to the applications table. This can be done via the GUI administration screen, or via a sql script.
insert into applications (app_name, app_title, app_enabled) values ('appname', 'The App name', 1);