75 lines
912 B
PHP
75 lines
912 B
PHP
<?php
|
|
|
|
|
|
|
|
global $app_list_strings;
|
|
|
|
|
|
|
|
$mfp_modules = Array(
|
|
|
|
'EcmReceipts' => array(
|
|
|
|
'name' => $app_list_strings['moduleList']['EcmReceipts'],
|
|
|
|
'prefix' => 'off_',
|
|
|
|
'id' => '',
|
|
|
|
'focus' => ''
|
|
|
|
),
|
|
|
|
'EcmDocumentTemplates' => array(
|
|
|
|
'name' => $app_list_strings['moduleList']['EcmDocumentTemplates'],
|
|
|
|
'prefix' => 'dt_',
|
|
|
|
'id' => '',
|
|
|
|
'focus' => ''
|
|
|
|
),
|
|
|
|
'Accounts' => array(
|
|
|
|
'name' => $app_list_strings['moduleList']['Accounts'],
|
|
|
|
'prefix' => 'acc_',
|
|
|
|
'id' => '',
|
|
|
|
'focus' => ''
|
|
|
|
),
|
|
|
|
'Contacts' => array(
|
|
|
|
'name' => $app_list_strings['moduleList']['Contacts'],
|
|
|
|
'prefix' => 'con_',
|
|
|
|
'id' => '',
|
|
|
|
'focus' => ''
|
|
|
|
),
|
|
|
|
'Users' => array(
|
|
|
|
'name' => $app_list_strings['moduleList']['Users'],
|
|
|
|
'prefix' => 'us_',
|
|
|
|
'id' => '',
|
|
|
|
'focus' => ''
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
|
|
|
?>
|