mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 07:53:39 +01:00
Add enable flag
This commit is contained in:
parent
798ff60cb9
commit
6bb6470ec8
@ -16,6 +16,7 @@
|
||||
$setup_info['addressbook']['title'] = 'Addressbook';
|
||||
$setup_info['addressbook']['version'] = '0.9.11';
|
||||
$setup_info['addressbook']['app_order'] = 4;
|
||||
$setup_info['addressbook']['enable'] = 1;
|
||||
|
||||
/* The tables this app creates */
|
||||
$setup_info['addressbook']['tables'] = array(
|
||||
|
@ -1,9 +1,22 @@
|
||||
<?php
|
||||
/**************************************************************************\
|
||||
* phpGroupWare - Chora *
|
||||
* http://www.phpgroupware.org *
|
||||
* -------------------------------------------- *
|
||||
* 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['admin']['name'] = 'admin';
|
||||
$setup_info['admin']['title'] = 'Administration';
|
||||
$setup_info['admin']['version'] = '0.9.13.001';
|
||||
$setup_info['admin']['app_order'] = 1;
|
||||
$setup_info['admin']['tables'] = '';
|
||||
$setup_info['admin']['enable'] = 1;
|
||||
|
||||
/* The hooks this app includes, needed for hooks registration */
|
||||
$setup_info['admin']['hooks'][] = 'preferences';
|
||||
|
@ -1,8 +1,21 @@
|
||||
<?php
|
||||
/**************************************************************************\
|
||||
* phpGroupWare - Calendar *
|
||||
* http://www.phpgroupware.org *
|
||||
* -------------------------------------------- *
|
||||
* 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['calendar']['name'] = 'calendar';
|
||||
$setup_info['calendar']['title'] = 'Calendar';
|
||||
$setup_info['calendar']['version'] = '0.9.11';
|
||||
$setup_info['calendar']['app_order'] = 3;
|
||||
$setup_info['calendar']['enable'] = 1;
|
||||
|
||||
$setup_info['calendar']['tables'][] = 'phpgw_cal';
|
||||
$setup_info['calendar']['tables'][] = 'phpgw_cal_holidays';
|
||||
@ -10,12 +23,11 @@
|
||||
$setup_info['calendar']['tables'][] = 'phpgw_cal_user';
|
||||
|
||||
/* The hooks this app includes, needed for hooks registration */
|
||||
$setup_info['calendar']['hooks'][] = 'preferences';
|
||||
$setup_info['calendar']['hooks'] = array('preferences','admin');
|
||||
|
||||
/* Dependencies for this app to work */
|
||||
$setup_info['calendar']['depends'][] = array(
|
||||
'appname' => 'phpgwapi',
|
||||
'versions' => Array('0.9.10', '0.9.11' , '0.9.12', '0.9.13')
|
||||
);
|
||||
|
||||
?>
|
||||
|
@ -16,6 +16,7 @@
|
||||
$setup_info['infolog']['version'] = '0.9.11';
|
||||
$setup_info['infolog']['app_order'] = 20;
|
||||
$setup_info['infolog']['tables'] = array('phpgw_infolog');
|
||||
$setup_info['infolog']['enable'] = 1;
|
||||
|
||||
/* The hooks this app includes, needed for hooks registration */
|
||||
$setup_info['infolog']['hooks'][] = 'preferences';
|
||||
|
@ -4,7 +4,8 @@
|
||||
$setup_info['phpgwapi']['title'] = 'phpgwapi';
|
||||
$setup_info['phpgwapi']['version'] = '0.9.13.002';
|
||||
$setup_info['phpgwapi']['versions']['current_header'] = '1.16';
|
||||
// $setup_info['phpgwapi']['app_order'] = '6';
|
||||
$setup_info['phpgwapi']['enable'] = 2;
|
||||
$setup_info['phpgwapi']['app_order'] = 1;
|
||||
|
||||
/* The tables this app creates */
|
||||
$setup_info['phpgwapi']['tables'][] = 'phpgw_sessions';
|
||||
|
@ -1,9 +1,22 @@
|
||||
<?php
|
||||
/**************************************************************************\
|
||||
* phpGroupWare - Preferences *
|
||||
* http://www.phpgroupware.org *
|
||||
* -------------------------------------------- *
|
||||
* 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['preferences']['name'] = 'preferences';
|
||||
$setup_info['preferences']['title'] = 'Preferences';
|
||||
$setup_info['preferences']['version'] = '0.9.11';
|
||||
$setup_info['preferences']['app_order'] = 1;
|
||||
$setup_info['preferences']['tables'] = '';
|
||||
$setup_info['preferences']['enable'] = 2;
|
||||
|
||||
/* The hooks this app includes, needed for hooks registration */
|
||||
//$setup_info['admin']['hooks'][] = 'preferences';
|
||||
|
Loading…
Reference in New Issue
Block a user