2002-02-06 10:03:11 +01:00
|
|
|
<?php
|
|
|
|
/**************************************************************************\
|
2004-01-27 17:58:19 +01:00
|
|
|
* eGroupWare - Editable Templates *
|
|
|
|
* http://www.egroupware.org *
|
2002-02-06 10:03:11 +01:00
|
|
|
" Written by Ralf Becker <RalfBecker@outdoor-training.de> *
|
|
|
|
* -------------------------------------------- *
|
|
|
|
* This program is free software; you can redistribute it and/or modify it *
|
|
|
|
* under the terms of the GNU General Public License as published by the *
|
|
|
|
* Free Software Foundation; either version 2 of the License, or (at your *
|
|
|
|
* option) any later version. *
|
|
|
|
\**************************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
$setup_info['etemplate']['name'] = 'etemplate';
|
2005-11-09 21:50:45 +01:00
|
|
|
$setup_info['etemplate']['version'] = '1.2';
|
2004-03-28 14:46:09 +02:00
|
|
|
$setup_info['etemplate']['app_order'] = 60; // just behind the developers-tools
|
2005-11-09 21:50:45 +01:00
|
|
|
$setup_info['etemplate']['tables'] = array('egw_etemplate');
|
2002-02-06 10:03:11 +01:00
|
|
|
$setup_info['etemplate']['enable'] = 1;
|
|
|
|
|
2002-10-28 12:41:58 +01:00
|
|
|
$setup_info['etemplate']['author'] =
|
|
|
|
$setup_info['etemplate']['maintainer'] = array(
|
2002-10-28 01:18:04 +01:00
|
|
|
'name' => 'Ralf Becker',
|
|
|
|
'email' => 'ralfbecker@outdoor-training.de'
|
|
|
|
);
|
2002-10-27 18:31:02 +01:00
|
|
|
$setup_info['etemplate']['license'] = 'GPL';
|
2002-05-11 23:01:43 +02:00
|
|
|
$setup_info['etemplate']['description'] =
|
2004-01-27 17:58:19 +01:00
|
|
|
'<b>eTemplates</b> are a new widget-based template system for eGroupWare with an
|
2002-10-27 18:31:02 +01:00
|
|
|
interactive editor and a database table-editor (creates tables_current.inc.php and
|
|
|
|
updates automaticaly tables_update.inc.php).';
|
|
|
|
$setup_info['etemplate']['note'] =
|
2003-06-14 15:48:50 +02:00
|
|
|
'For <b>more information</b> check out the <a href="etemplate/doc/etemplate.html" target="_blank">Tutorial</a>,
|
|
|
|
the <a href="etemplate/doc/referenz.html" target="_blank">Referenz Documentation</a>
|
2003-10-26 09:56:17 +01:00
|
|
|
or the <a href="http://www.egroupware.org/wiki/etemplate" target="_blank">eTemplate page in our Wiki</a>.';
|
2002-05-11 23:01:43 +02:00
|
|
|
|
2002-02-06 10:03:11 +01:00
|
|
|
/* The hooks this app includes, needed for hooks registration */
|
2003-10-26 09:56:17 +01:00
|
|
|
$setup_info['etemplate']['hooks'][] = 'sidebox_menu';
|
2002-02-06 10:03:11 +01:00
|
|
|
|
2002-04-28 17:54:11 +02:00
|
|
|
/* Dependencies for this app to work */
|
2002-02-06 10:03:11 +01:00
|
|
|
$setup_info['etemplate']['depends'][] = array(
|
|
|
|
'appname' => 'phpgwapi',
|
2006-03-08 22:41:25 +01:00
|
|
|
'versions' => Array('1.0.0','1.0.1','1.2','1.3')
|
2002-02-06 10:03:11 +01:00
|
|
|
);
|
|
|
|
?>
|