egroupware_official/etemplate/setup/setup.inc.php

44 lines
1.7 KiB
PHP
Raw Normal View History

2002-02-06 10:03:11 +01:00
<?php
/**
* eGroupWare - EditableTemplates
*
* @link http://www.egroupware.org
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
* @author Ralf Becker <RalfBecker@outdoor-training.de>
* @copyright 2002-8 by RalfBecker@outdoor-training.de
* @package etemplate
* @subpackage setup
* @version $Id$
*/
2002-02-06 10:03:11 +01:00
$setup_info['etemplate']['name'] = 'etemplate';
2010-09-05 17:24:34 +02:00
$setup_info['etemplate']['version'] = '1.8';
$setup_info['etemplate']['app_order'] = 60; // just behind the developers-tools
$setup_info['etemplate']['tables'] = array('egw_etemplate');
$setup_info['etemplate']['enable'] = 1;
$setup_info['etemplate']['index'] = 'etemplate.editor.edit';
2002-02-06 10:03:11 +01:00
$setup_info['etemplate']['author'] =
$setup_info['etemplate']['maintainer'] = array(
'name' => 'Ralf Becker',
'email' => 'ralfbecker@outdoor-training.de'
);
$setup_info['etemplate']['license'] = 'GPL';
$setup_info['etemplate']['description'] =
'<b>eTemplates</b> are a new widget-based template system for eGroupWare with an
interactive editor and a database table-editor (creates tables_current.inc.php and
updates automaticaly tables_update.inc.php).';
$setup_info['etemplate']['note'] =
'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>
or the <a href="http://www.egroupware.org/wiki/etemplate" target="_blank">eTemplate page in our Wiki</a>.';
2002-02-06 10:03:11 +01:00
/* The hooks this app includes, needed for hooks registration */
$setup_info['etemplate']['hooks'][] = 'sidebox_menu';
2002-05-11 23:01:43 +02:00
/* Dependencies for this app to work */
$setup_info['etemplate']['depends'][] = array(
'appname' => 'phpgwapi',
2010-09-05 17:24:34 +02:00
'versions' => Array('1.7','1.8','1.9')
);