setup.inc changes to work with setup3

This commit is contained in:
Miles Lott 2001-05-29 14:15:53 +00:00
parent 7827d25bfe
commit ac6d6d42b6
2 changed files with 19 additions and 6 deletions

View File

@ -4,7 +4,13 @@
$setup_info['phpwebhosting']['version'] = '0.9.13.001';
$setup_info['phpwebhosting']['app_order'] = 10;
$hooks = Array();
$hooks_string = implode (',', $hooks);
$setup_info['phpwebhosting']['hooks'] = $hooks_string;
/* The hooks this app includes, needed for hooks registration */
$setup_info['phpwebhosting']['hooks'][] = 'preferences';
/* Dependencies for this app to work */
$setup_info['phpwebhosting']['depends'][] = array(
'appname' => 'phpgwapi',
'versions' => Array('0.9.10', '0.9.11' , '0.9.12')
);
?>

View File

@ -4,7 +4,14 @@
$setup_info['preferences']['version'] = '0.9.11';
$setup_info['preferences']['app_order'] = 1;
$setup_info['preferences']['tables'] = '';
$hooks = Array();
$hooks_string = implode (',', $hooks);
$setup_info['preferences']['hooks'] = $hooks_string;
/* The hooks this app includes, needed for hooks registration */
//$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')
);
?>