Initial commit
[eq/.git] / setup / setup.inc.php
1 <?php
2         /**************************************************************************\
3         * phpGroupWare                                                             *
4         * http://www.phpgroupware.org                                              *
5         * --------------------------------------------                             *
6         *  This program is free software; you can redistribute it and/or modify it *
7         *  under the terms of the GNU General Public License as published by the   *
8         *  Free Software Foundation; either version 2 of the License, or (at your  *
9         *  option) any later version.                                              *
10         \**************************************************************************/
11
12         /* $Id: setup.inc.php,v 1.9.4.2 2004/03/07 02:14:23 skwashd Exp $ */
13
14         /* Basic information about this app */
15         $setup_info['eq']['name']      = 'eq';
16         $setup_info['eq']['title']     = 'Elders Quorum Tools';
17         $setup_info['eq']['version']   = '0.0.1.001';
18         $setup_info['eq']['app_order'] = 8;
19         $setup_info['eq']['enable']    = 1;
20         
21         /* some info's for about.php and apps.phpgroupware.org */
22         $setup_info['eq']['author']    = 'Alan J. Pippin';
23         $setup_info['eq']['license']   = 'GPL';
24         $setup_info['eq']['description'] =
25                 'This app provides tools to help manage an Elders Quorum';
26         $setup_info['eq']['note'] =
27                 'This was created for the Miramont Ward.';
28         $setup_info['eq']['maintainer'] = 'Alan J. Pippin';
29         $setup_info['eq']['maintainer_email'] = 'apippin@pippins.net';
30         
31         /* The tables this app creates */
32         /* $setup_info['eq']['tables']    = Array('eq'); */
33
34         /* The hooks this app includes, needed for hooks registration */
35         $setup_info['eq']['hooks'] = Array(
36                 'preferences',
37                 'manual',
38                 'add_def_prefs'
39         );
40
41         /* Dependacies for this app to work */
42         $setup_info['eq']['depends'][] = array(
43                          'appname' => 'phpgwapi',
44                          'versions' => Array('0.9.10', '0.9.11' , '0.9.12', '0.9.13', '0.9.14', '0.9.16')
45                 );
46 ?>