source: branches/2.5/workflow/setup/setup.inc.php @ 8232

Revision 8232, 2.8 KB checked in by douglas, 10 years ago (diff)

Ticket #0000 - Copiadas as alterações do Trunk. Versão final 2.5.1.

  • Property svn:executable set to *
Line 
1<?php
2        /**************************************************************************\
3        * eGroupWare - PHPBrain                                                    *
4        * http://www.egroupware.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        /* Basic information about this app */
13        $setup_info['workflow']['name']                 = 'workflow';
14        $setup_info['workflow']['title']                = 'Workflow Management';
15        $setup_info['workflow']['version']              = '2.5.1';
16        $setup_info['workflow']['app_order']    = 10;
17        $setup_info['workflow']['enable']               = 1;
18        $setup_info['workflow']['author']               = 'See changeLog for complete list of developers.';
19        $setup_info['workflow']['note']                 = 'Workflow Engine';
20        $setup_info['workflow']['license']              = 'GPL';
21        $setup_info['workflow']['description']          = 'Workflow Management';
22        $setup_info['workflow']['maintainer']           = 'Mauricio Luiz Viani';
23        $setup_info['workflow']['maintainer_email']     = 'viani@celepar.pr.gov.br';
24        $setup_info['workflow']['tables']               = array(
25                                                                'egw_wf_activities',
26                                                                'egw_wf_activity_roles',
27                                                                'egw_wf_instance_activities',
28                                                                'egw_wf_instances',
29                                                                'egw_wf_processes',
30                                                                'egw_wf_roles',
31                                                                'egw_wf_transitions',
32                                                                'egw_wf_user_roles',
33                                                                'egw_wf_workitems',
34                                                                'egw_wf_process_config',
35                                                                'egw_wf_activity_agents',
36                                                                'egw_wf_agent_mail_smtp',
37                                                                'egw_wf_interinstance_relations',
38                                                                'egw_wf_external_application',
39                                                                'egw_wf_admin_access',
40                                                                'egw_wf_user_cache',
41                                                                'egw_wf_jobs',
42                                                                'egw_wf_job_logs'
43                                                        );
44
45        /* The hooks this app includes, needed for hooks registration */
46        $setup_info['workflow']['hooks'][] = 'about';
47        $setup_info['workflow']['hooks'][] = 'admin';
48        $setup_info['workflow']['hooks'][] = 'add_def_pref';
49        $setup_info['workflow']['hooks'][] = 'config';
50        $setup_info['workflow']['hooks'][] = 'manual';
51        $setup_info['workflow']['hooks'][] = 'preferences';
52        $setup_info['workflow']['hooks'][] = 'settings';
53        $setup_info['workflow']['hooks'][] = 'sidebox_menu';
54        $setup_info['workflow']['hooks'][] = 'acl_manager';
55        $setup_info['workflow']['hooks'][] = 'deleteaccount';
56        $setup_info['workflow']['hooks'][] = 'home';
57
58        /* Dependencies for this app to work */
59        $setup_info['workflow']['depends'][] = array(
60                'appname' => 'phpgwapi',
61                'versions' => Array('2.5.1.1')
62        );
63        $setup_info['workflow']['depends'][] = array(
64                'appname' => 'preferences',
65                'versions' => Array('2.5.1')
66        );
67?>
Note: See TracBrowser for help on using the repository browser.