egroupware/about.php

38 lines
888 B
PHP
Raw Normal View History

2000-12-23 01:45:58 +01:00
<?php
2007-05-26 21:06:12 +02:00
/**
* eGroupWare: About informations
*
* rewrite of the old PHPLib based about page
* it now uses eTemplate
* new class about ist stored at phpgwapi/inc/class.about.inc.php
*
* This is NO typical eTemplate application as it is not stored in the
* correct namespace
*
* LICENSE: GPL.
*
* @package api
* @subpackage about
* @author Sebastian Ebling <hudeldudel@php.net>
* @author Ralf Becker <RalfBecker@outdoor-training.de>
* @license http://www.gnu.org/copyleft/gpl.html
* @link http://www.egroupware.org
* @version SVN: $Id$
*/
$GLOBALS['egw_info'] = array(
'flags' => array(
2007-05-26 21:06:12 +02:00
'currentapp' => 'home', //'about',
'disable_Template_class' => true,
'noheader' => true,
'nonavbar' => true
)
);
2007-05-26 21:06:12 +02:00
include('header.inc.php');
// create the about page
2007-05-26 21:06:12 +02:00
require_once(EGW_API_INC.'/class.about.inc.php');
2007-05-26 21:06:12 +02:00
$aboutPage = new about();