5ae287246fd95d47d1b4b04abaf9f234dfef5043
[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['tc']['name']      = 'tc';
16         $setup_info['tc']['title']     = '3rd Counselor';
17         $setup_info['tc']['version']   = '0.5.0';
18         $setup_info['tc']['app_order'] = 8;
19         $setup_info['tc']['enable']    = 1;
20         
21         /* some info's for about.php and apps.phpgroupware.org */
22         $setup_info['tc']['author']    = 'Alan J. Pippin';
23         $setup_info['tc']['license']   = 'GPL';
24         $setup_info['tc']['description'] =
25                 'This app provides tools to help manage a Priesthood Elders Quorum or High Priest Group';
26         $setup_info['tc']['note'] =
27                 'This was created for the Miramont Ward.';
28         $setup_info['tc']['maintainer'] = 'Alan J. Pippin';
29         $setup_info['tc']['maintainer_email'] = 'apippin@pippins.net';
30         
31         /* The tables this app creates */
32         /* This APP requires manual table creation */
33         /* Manually import the tc/sql/tc.sql file into mysql */
34
35         /* The hooks this app includes, needed for hooks registration */
36         $setup_info['tc']['hooks'] = Array(
37                 'preferences',
38                 'manual',
39                 'add_def_prefs'
40         );
41
42         /* Dependacies for this app to work */
43         $setup_info['tc']['depends'][] = array(
44                  'appname' => 'phpgwapi',
45                  'versions' => Array('0.9.10', '0.9.11' , '0.9.12', '0.9.13', '0.9.14', '0.9.16')
46         );
47 ?>