mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-27 16:29:22 +01:00
setup.inc changes to work with setup3
This commit is contained in:
parent
7827d25bfe
commit
ac6d6d42b6
@ -4,7 +4,13 @@
|
|||||||
$setup_info['phpwebhosting']['version'] = '0.9.13.001';
|
$setup_info['phpwebhosting']['version'] = '0.9.13.001';
|
||||||
$setup_info['phpwebhosting']['app_order'] = 10;
|
$setup_info['phpwebhosting']['app_order'] = 10;
|
||||||
|
|
||||||
$hooks = Array();
|
/* The hooks this app includes, needed for hooks registration */
|
||||||
$hooks_string = implode (',', $hooks);
|
$setup_info['phpwebhosting']['hooks'][] = 'preferences';
|
||||||
$setup_info['phpwebhosting']['hooks'] = $hooks_string;
|
|
||||||
|
/* Dependencies for this app to work */
|
||||||
|
$setup_info['phpwebhosting']['depends'][] = array(
|
||||||
|
'appname' => 'phpgwapi',
|
||||||
|
'versions' => Array('0.9.10', '0.9.11' , '0.9.12')
|
||||||
|
);
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
@ -4,7 +4,14 @@
|
|||||||
$setup_info['preferences']['version'] = '0.9.11';
|
$setup_info['preferences']['version'] = '0.9.11';
|
||||||
$setup_info['preferences']['app_order'] = 1;
|
$setup_info['preferences']['app_order'] = 1;
|
||||||
$setup_info['preferences']['tables'] = '';
|
$setup_info['preferences']['tables'] = '';
|
||||||
$hooks = Array();
|
|
||||||
$hooks_string = implode (',', $hooks);
|
/* The hooks this app includes, needed for hooks registration */
|
||||||
$setup_info['preferences']['hooks'] = $hooks_string;
|
//$setup_info['admin']['hooks'][] = 'preferences';
|
||||||
|
//$setup_info['admin']['hooks'][] = 'admin';
|
||||||
|
|
||||||
|
/* Dependacies for this app to work */
|
||||||
|
$setup_info['preferences']['depends'][] = array(
|
||||||
|
'appname' => 'phpgwapi',
|
||||||
|
'versions' => Array('0.9.10', '0.9.11' , '0.9.12')
|
||||||
|
);
|
||||||
?>
|
?>
|
||||||
|
Loading…
Reference in New Issue
Block a user