mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 14:41:29 +01:00
fix home-accounts in egw_customfields and egw_links to api-accounts
This commit is contained in:
parent
af9d5a6a66
commit
d5c65bb384
@ -12,7 +12,7 @@
|
|||||||
/* Basic information about this app */
|
/* Basic information about this app */
|
||||||
$setup_info['api']['name'] = 'api';
|
$setup_info['api']['name'] = 'api';
|
||||||
$setup_info['api']['title'] = 'EGroupware API';
|
$setup_info['api']['title'] = 'EGroupware API';
|
||||||
$setup_info['api']['version'] = '16.1.001';
|
$setup_info['api']['version'] = '16.1.002';
|
||||||
$setup_info['api']['versions']['current_header'] = '1.29';
|
$setup_info['api']['versions']['current_header'] = '1.29';
|
||||||
$setup_info['api']['enable'] = 3;
|
$setup_info['api']['enable'] = 3;
|
||||||
$setup_info['api']['app_order'] = 1;
|
$setup_info['api']['app_order'] = 1;
|
||||||
|
@ -51,9 +51,14 @@ function api_upgrade14_3_907()
|
|||||||
return $GLOBALS['setup_info']['api']['currentver'] = '16.1';
|
return $GLOBALS['setup_info']['api']['currentver'] = '16.1';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Add archive folder to mail accounts
|
||||||
|
*
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
function api_upgrade16_1()
|
function api_upgrade16_1()
|
||||||
{
|
{
|
||||||
$GLOBALS['egw_setup']->oProc->AddColumn('egw_ea_accounts','acc_folder_archive', array(
|
$GLOBALS['egw_setup']->oProc->AddColumn('egw_ea_accounts','acc_folder_archive', array(
|
||||||
'type' => 'varchar',
|
'type' => 'varchar',
|
||||||
'precision' => '128',
|
'precision' => '128',
|
||||||
'comment' => 'archive folder'
|
'comment' => 'archive folder'
|
||||||
@ -61,3 +66,22 @@ function api_upgrade16_1()
|
|||||||
|
|
||||||
return $GLOBALS['setup_info']['api']['currentver'] = '16.1.001';
|
return $GLOBALS['setup_info']['api']['currentver'] = '16.1.001';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fix home-accounts in egw_customfields and egw_links to api-accounts
|
||||||
|
*
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
function api_upgrade16_1_001()
|
||||||
|
{
|
||||||
|
$db = new EGroupware\Api\Db;
|
||||||
|
foreach(array(
|
||||||
|
'cf_type' => 'egw_customfields',
|
||||||
|
'link_app1' => 'egw_links',
|
||||||
|
'link_app2' => 'egw_links',
|
||||||
|
) as $col => $table)
|
||||||
|
{
|
||||||
|
$db->query("UPDATE $table SET $col='api-accounts' WHERE $col='home-accounts'", __LINE__, __FILE__);
|
||||||
|
}
|
||||||
|
return $GLOBALS['setup_info']['api']['currentver'] = '16.1.002';
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user