Chapter 22. Guidelines

Table of Contents
Requirements
Writing/porting your application

Requirements

These guidelines must be followed for any application that wants considered for inclusion into phpGroupWare deluxe.

For applications that do not meet these requirements, they can be available to users via the phpGroupWare Apps project, or whatever means the developers decide.If you need help converting your application to templates and our lang support, we will try to connect you with someone to help.

Writing/porting your application

Include files

Each PHP page you write will need to include the header.inc.php along with a few variables.This is done by putting this at the top of each PHP page.
<?php
  $phpgw_info["flags"]["currentapp"] = "appname";
  include("../header.inc.php");
  ?>
			
Of course change application name to fit. This include will provide the following things: