Add enable flag

This commit is contained in:
Miles Lott 2001-06-03 20:56:46 +00:00
parent 798ff60cb9
commit 6bb6470ec8
6 changed files with 51 additions and 10 deletions

View File

@ -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(

View File

@ -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';

View File

@ -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')
);
?>

View File

@ -11,11 +11,12 @@
/* $Id$ */
$setup_info['infolog']['name'] = 'infolog';
$setup_info['infolog']['title'] = 'Info Log';
$setup_info['infolog']['version'] = '0.9.11';
$setup_info['infolog']['name'] = 'infolog';
$setup_info['infolog']['title'] = 'Info Log';
$setup_info['infolog']['version'] = '0.9.11';
$setup_info['infolog']['app_order'] = 20;
$setup_info['infolog']['tables'] = array('phpgw_infolog');
$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';

View File

@ -1,10 +1,11 @@
<?php
/* Basic information about this app */
$setup_info['phpgwapi']['name'] = 'phpgwapi';
$setup_info['phpgwapi']['title'] = 'phpgwapi';
$setup_info['phpgwapi']['version'] = '0.9.13.002';
$setup_info['phpgwapi']['name'] = 'phpgwapi';
$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';

View File

@ -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';