Add php files
This commit is contained in:
290
include/modules_override.php
Executable file
290
include/modules_override.php
Executable file
@@ -0,0 +1,290 @@
|
||||
<?php
|
||||
|
||||
if(!defined('sugarEntry') || !sugarEntry)
|
||||
die('Not A Valid Entry Point');
|
||||
|
||||
/*********************************************************************************
|
||||
* SugarCRM is a customer relationship management program developed by
|
||||
* SugarCRM, Inc. Copyright (C) 2004-2010 SugarCRM Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it under
|
||||
* the terms of the GNU Affero General Public License version 3 as published by the
|
||||
* Free Software Foundation with the addition of the following permission added
|
||||
* to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
|
||||
* IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
|
||||
* OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||
* FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
|
||||
* details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License along with
|
||||
* this program; if not, see http://www.gnu.org/licenses or write to the Free
|
||||
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||||
* 02110-1301 USA.
|
||||
*
|
||||
* You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
|
||||
* SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
|
||||
*
|
||||
* The interactive user interfaces in modified source and object code versions
|
||||
* of this program must display Appropriate Legal Notices, as required under
|
||||
* Section 5 of the GNU Affero General Public License version 3.
|
||||
*
|
||||
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
|
||||
* these Appropriate Legal Notices must retain the display of the "Powered by
|
||||
* SugarCRM" logo. If the display of the logo is not reasonably feasible for
|
||||
* technical reasons, the Appropriate Legal Notices must display the words
|
||||
*
|
||||
* "Powered by SugarCRM".
|
||||
********************************************************************************/
|
||||
|
||||
/*********************************************************************************
|
||||
* Description: Executes a step in the installation process.
|
||||
********************************************************************************/
|
||||
|
||||
$beanList['EcmCalls'] = 'EcmCall';
|
||||
$beanFiles['EcmCall'] = 'modules/EcmCalls/EcmCall.php';
|
||||
$moduleList[] = 'EcmCalls';
|
||||
|
||||
$beanList['EcmTransactions'] = 'EcmTransaction';
|
||||
$beanFiles['EcmTransaction'] = 'modules/EcmTransactions/EcmTransaction.php';
|
||||
$moduleList[] = 'EcmTransactions';
|
||||
|
||||
$beanList['EcmReturns'] = 'EcmReturn';
|
||||
$beanFiles['EcmReturn'] = 'modules/EcmReturns/EcmReturn.php';
|
||||
$moduleList[] = 'EcmReturns';
|
||||
|
||||
$beanList['EcmPaymentStates'] = 'EcmPaymentState';
|
||||
$beanFiles['EcmPaymentState'] = 'modules/EcmPaymentStates/EcmPaymentState.php';
|
||||
$moduleList[] = 'EcmPaymentStates';
|
||||
|
||||
$beanList['EcmPrices'] = 'EcmPrice';
|
||||
$beanFiles['EcmPrice'] = 'modules/EcmPrices/EcmPrice.php';
|
||||
$moduleList[] = 'EcmPrices';
|
||||
|
||||
$beanList['EcmDevices'] = 'EcmDevice';
|
||||
$beanFiles['EcmDevice'] = 'modules/EcmDevices/EcmDevice.php';
|
||||
$moduleList[] = 'EcmDevices';
|
||||
|
||||
$beanList['EcmNewKpkws'] = 'EcmNewKpkw';
|
||||
$beanFiles['EcmNewKpkw'] = 'modules/EcmNewKpkws/EcmNewKpkw.php';
|
||||
$moduleList[] = 'EcmNewKpkws';
|
||||
|
||||
$beanList['EcmNoteOuts'] = 'EcmNoteOut';
|
||||
$beanFiles['EcmNoteOut'] = 'modules/EcmNoteOuts/EcmNoteOut.php';
|
||||
$moduleList[] = 'EcmNoteOuts';
|
||||
|
||||
$beanList['EcmAccountCategories'] = 'EcmAccountCategory';
|
||||
$beanFiles['EcmAccountCategory'] = 'modules/EcmAccountCategories/EcmAccountCategory.php';
|
||||
$moduleList[] = 'EcmAccountCategories';
|
||||
|
||||
$beanList['EcmMailingMessages'] = 'EcmMailingMessage';
|
||||
$beanFiles['EcmMailingMessage'] = 'modules/EcmMailingMessages/EcmMailingMessage.php';
|
||||
$moduleList[] = 'EcmMailingMessages';
|
||||
|
||||
$beanList['EcmMailingCategories'] = 'EcmMailingCategory';
|
||||
$beanFiles['EcmMailingCategory'] = 'modules/EcmMailingCategories/EcmMailingCategory.php';
|
||||
$moduleList[] = 'EcmMailingCategories';
|
||||
|
||||
$beanList['EcmCommunes'] = 'EcmCommune';
|
||||
$beanFiles['EcmCommune'] = 'modules/EcmCommunes/EcmCommune.php';
|
||||
$moduleList[] = 'EcmCommunes';
|
||||
|
||||
$beanList['EcmAgreements'] = 'EcmAgreement';
|
||||
$beanFiles['EcmAgreement'] = 'modules/EcmAgreements/EcmAgreement.php';
|
||||
$moduleList[] = 'EcmAgreements';
|
||||
|
||||
$beanList['EcmKpkw'] = 'EcmKpkw';
|
||||
$beanFiles['EcmKpkw'] = 'modules/EcmKpkw/EcmKpkw.php';
|
||||
$moduleList[] = 'EcmKpkw';
|
||||
|
||||
$beanList['EcmCashs'] = 'EcmCash';
|
||||
$beanFiles['EcmCash'] = 'modules/EcmCashs/EcmCash.php';
|
||||
$moduleList[] = 'EcmCashs';
|
||||
|
||||
$beanList['EcmCalendars'] = 'EcmCalendar';
|
||||
$beanFiles['EcmCalendar'] = 'modules/EcmCalendars/EcmCalendar.php';
|
||||
$moduleList[] = 'EcmCalendars';
|
||||
|
||||
$beanList['EcmProductStockIndexs'] = 'EcmProductStockIndex';
|
||||
$beanFiles['EcmProductStockIndex'] = 'modules/EcmProductStockIndexs/EcmProductStockIndex.php';
|
||||
$moduleList[] = 'EcmProductStockIndexs';
|
||||
|
||||
$beanList['EcmDesigns'] = 'EcmDesign';
|
||||
$beanFiles['EcmDesign'] = 'modules/EcmDesigns/EcmDesign.php';
|
||||
$moduleList[] = 'EcmDesigns';
|
||||
|
||||
$beanList['EcmPriceBooks'] = 'EcmPriceBook';
|
||||
$beanFiles['EcmPriceBook'] = 'modules/EcmPriceBooks/EcmPriceBook.php';
|
||||
$moduleList[] = 'EcmPriceBooks';
|
||||
|
||||
$beanList['EcmProductCategories'] = 'EcmProductCategory';
|
||||
$beanFiles['EcmProductCategory'] = 'modules/EcmProductCategories/EcmProductCategory.php';
|
||||
$moduleList[] = 'EcmProductCategories';
|
||||
|
||||
$beanList['EcmPayments'] = 'EcmPayment';
|
||||
$beanFiles['EcmPayment'] = 'modules/EcmPayments/EcmPayment.php';
|
||||
$moduleList[] = 'EcmPayments';
|
||||
|
||||
$beanList['EcmPaymentStates'] = 'EcmPaymentState';
|
||||
$beanFiles['EcmPaymentState'] = 'modules/EcmPaymentStates/EcmPaymentState.php';
|
||||
$moduleList[] = 'EcmPaymentStates';
|
||||
|
||||
$beanList['EcmProducts'] = 'EcmProduct';
|
||||
$beanFiles['EcmProduct'] = 'modules/EcmProducts/EcmProduct.php';
|
||||
$moduleList[] = 'EcmProducts';
|
||||
|
||||
$beanList['EcmProductB2Bs'] = 'EcmProductB2B';
|
||||
$beanFiles['EcmProductB2B'] = 'modules/EcmProductB2Bs/EcmProductB2B.php';
|
||||
$moduleList[] = 'EcmProductB2Bs';
|
||||
|
||||
$beanList['EcmGroupSales'] = 'EcmGroupSale';
|
||||
$beanFiles['EcmGroupSale'] = 'modules/EcmGroupSales/EcmGroupSale.php';
|
||||
$moduleList[] = 'EcmGroupSales';
|
||||
|
||||
$beanList['EcmVats'] = 'EcmVat';
|
||||
$beanFiles['EcmVat'] = 'modules/EcmVats/EcmVat.php';
|
||||
$moduleList[] = 'EcmVats';
|
||||
|
||||
$beanList['EcmQuotes'] = 'EcmQuote';
|
||||
$beanFiles['EcmQuote'] = 'modules/EcmQuotes/EcmQuote.php';
|
||||
$moduleList[] = 'EcmQuotes';
|
||||
|
||||
$beanList['EcmReports'] = 'EcmReport';
|
||||
$beanFiles['EcmReport'] = 'modules/EcmReports/EcmReport.php';
|
||||
$moduleList[] = 'EcmReports';
|
||||
|
||||
$beanList['EcmStockDocCorrects'] = 'EcmStockDocCorrect';
|
||||
$beanFiles['EcmStockDocCorrect'] = 'modules/EcmStockDocCorrects/EcmStockDocCorrect.php';
|
||||
$moduleList[] = 'EcmStockDocCorrects';
|
||||
|
||||
$beanList['EcmStocks'] = 'EcmStock';
|
||||
$beanFiles['EcmStock'] = 'modules/EcmStocks/EcmStock.php';
|
||||
$moduleList[] = 'EcmStocks';
|
||||
|
||||
|
||||
$beanList['EcmStockOperations'] = 'EcmStockOperation';
|
||||
$beanFiles['EcmStockOperation'] = 'modules/EcmStockOperations/EcmStockOperation.php';
|
||||
$moduleList[] = 'EcmStockOperations';
|
||||
|
||||
$beanList['EcmStockDocOuts'] = 'EcmStockDocOut';
|
||||
$beanFiles['EcmStockDocOut'] = 'modules/EcmStockDocOuts/EcmStockDocOut.php';
|
||||
$moduleList[] = 'EcmStockDocOuts';
|
||||
|
||||
$beanList['EcmStockDocMoves'] = 'EcmStockDocMove';
|
||||
$beanFiles['EcmStockDocMove'] = 'modules/EcmStockDocMoves/EcmStockDocMove.php';
|
||||
$moduleList[] = 'EcmStockDocMoves';
|
||||
|
||||
$beanList['EcmStockStates'] = 'EcmStockState';
|
||||
$beanFiles['EcmStockState'] = 'modules/EcmStockStates/EcmStockState.php';
|
||||
$moduleList[] = 'EcmStockStates';
|
||||
|
||||
$beanList['EcmStockDocInsideOuts'] = 'EcmStockDocInsideOut';
|
||||
$beanFiles['EcmStockDocInsideOut'] = 'modules/EcmStockDocInsideOuts/EcmStockDocInsideOut.php';
|
||||
$moduleList[] = 'EcmStockDocInsideOuts';
|
||||
|
||||
$beanList['EcmStockDocInsideIns'] = 'EcmStockDocInsideIn';
|
||||
$beanFiles['EcmStockDocInsideIn'] = 'modules/EcmStockDocInsideIns/EcmStockDocInsideIn.php';
|
||||
$moduleList[] = 'EcmStockDocInsideIns';
|
||||
|
||||
$beanList['EcmStockDocIns'] = 'EcmStockDocIn';
|
||||
$beanFiles['EcmStockDocIn'] = 'modules/EcmStockDocIns/EcmStockDocIn.php';
|
||||
$moduleList[] = 'EcmStockDocIns';
|
||||
|
||||
$beanList['EcmCharts'] = 'EcmChart';
|
||||
$beanFiles['EcmChart'] = 'modules/EcmCharts/EcmChart.php';
|
||||
$moduleList[] = 'EcmCharts';
|
||||
|
||||
$beanList['EcmSales'] = 'EcmSale';
|
||||
$beanFiles['EcmSale'] = 'modules/EcmSales/EcmSale.php';
|
||||
$moduleList[] = 'EcmSales';
|
||||
|
||||
$beanList['EcmServiceNews'] = 'EcmServiceNew';
|
||||
$beanFiles['EcmServiceNew'] = 'modules/EcmServiceNews/EcmServiceNew.php';
|
||||
$moduleList[] = 'EcmServiceNews';
|
||||
// fk
|
||||
$beanList['EcmFkBooks'] = 'EcmFkBook';
|
||||
$beanFiles['EcmFkBook'] = 'modules/EcmFkBooks/EcmFkBook.php';
|
||||
$moduleList[] = 'EcmFkBooks';
|
||||
|
||||
$beanList['EcmFkPackages'] = 'EcmFkPackage';
|
||||
$beanFiles['EcmFkPackage'] = 'modules/EcmFkPackages/EcmFkPackage.php';
|
||||
$moduleList[] = 'EcmFkPackages';
|
||||
|
||||
$beanList['EcmFkVatKinds'] = 'EcmFkVatKind';
|
||||
$beanFiles['EcmFkVatKind'] = 'modules/EcmFkVatKinds/EcmFkVatKind.php';
|
||||
$moduleList[] = 'EcmFkVatKinds';
|
||||
|
||||
$beanList['EcmFkVatRegisters'] = 'EcmFkVatRegister';
|
||||
$beanFiles['EcmFkVatRegister'] = 'modules/EcmFkVatRegisters/EcmFkVatRegister.php';
|
||||
$moduleList[] = 'EcmFkVatRegisters';
|
||||
|
||||
$beanList['EcmFkVatRegisters'] = 'EcmFkVatRegister';
|
||||
$beanFiles['EcmFkVatRegister'] = 'modules/EcmFkVatRegisters/EcmFkVatRegister.php';
|
||||
$moduleList[] = 'EcmFkVatRegisters';
|
||||
|
||||
$beanList['EcmFkVats'] = 'EcmFkVat';
|
||||
$beanFiles['EcmFkVat'] = 'modules/EcmFkVats/EcmFkVat.php';
|
||||
$moduleList[] = 'EcmFkVats';
|
||||
// fk end
|
||||
$beanList['EcmReceipts'] = 'EcmReceipt';
|
||||
$beanFiles['EcmReceipt'] = 'modules/EcmReceipts/EcmReceipt.php';
|
||||
$moduleList[] = 'EcmReceipts';
|
||||
|
||||
$beanList['EcmPurchaseOrders'] = 'EcmPurchaseOrder';
|
||||
$beanFiles['EcmPurchaseOrder'] = 'modules/EcmPurchaseOrders/EcmPurchaseOrder.php';
|
||||
$moduleList[] = 'EcmPurchaseOrders';
|
||||
|
||||
$beanList['EcmInsideOrders'] = 'EcmInsideOrder';
|
||||
$beanFiles['EcmInsideOrder'] = 'modules/EcmInsideOrders/EcmInsideOrder.php';
|
||||
$moduleList[] = 'EcmInsideOrders';
|
||||
|
||||
$beanList['EcmPaymentStates'] = 'EcmPaymentState';
|
||||
$beanFiles['EcmPaymentState'] = 'modules/EcmPaymentStates/EcmPaymentState.php';
|
||||
$moduleList[] = 'EcmPaymentStates';
|
||||
|
||||
$beanList['EcmAccountings'] = 'EcmAccounting';
|
||||
$beanFiles['EcmAccounting'] = 'modules/EcmAccountings/EcmAccounting.php';
|
||||
$moduleList[] = 'EcmAccountings';
|
||||
|
||||
$beanList['EcmPrepaymentInvoices'] = 'EcmPrepaymentInvoice';
|
||||
$beanFiles['EcmPrepaymentInvoice'] = 'modules/EcmPrepaymentInvoices/EcmPrepaymentInvoice.php';
|
||||
$moduleList[] = 'EcmPrepaymentInvoices';
|
||||
|
||||
$beanList['EcmWorkers'] = 'EcmWorker';
|
||||
$beanFiles['EcmWorker'] = 'modules/EcmWorkers/EcmWorker.php';
|
||||
$moduleList[] = 'EcmWorkers';
|
||||
|
||||
$beanList['EcmRegisterTypes'] = 'EcmRegisterTypes';
|
||||
$beanFiles['EcmRegisterTypes'] = 'modules/EcmRegisterTypes/EcmRegisterTypes.php';
|
||||
$moduleList[] = 'EcmRegisterTypes';
|
||||
|
||||
|
||||
$beanList['EcmPrivateDocuments'] = 'EcmPrivateDocument';
|
||||
$beanFiles['EcmPrivateDocument'] = 'modules/EcmPrivateDocuments/EcmPrivateDocument.php';
|
||||
$moduleList[] = 'EcmPrivateDocuments';
|
||||
|
||||
$beanList['EcmActions'] = 'EcmAction';
|
||||
$beanFiles['EcmAction'] = 'modules/EcmActions/EcmAction.php';
|
||||
$moduleList[] = 'EcmActions';
|
||||
|
||||
$beanList['EcmSyntheticAccounts'] = 'EcmSyntheticAccount';
|
||||
$beanFiles['EcmSyntheticAccount'] = 'modules/EcmSyntheticAccounts/EcmSyntheticAccount.php';
|
||||
$moduleList[] = 'EcmSyntheticAccounts';
|
||||
|
||||
$beanList['EcmWorkCards'] = 'EcmWorkCard';
|
||||
$beanFiles['EcmWorkCard'] = 'modules/EcmWorkCards/EcmWorkCard.php';
|
||||
$moduleList[] = 'EcmWorkCards';
|
||||
|
||||
$beanList['EcmResourcess'] = 'EcmResources';
|
||||
$beanFiles['EcmResources'] = 'modules/EcmResourcess/EcmResources.php';
|
||||
$moduleList[] = 'EcmResourcess';
|
||||
|
||||
$beanList['EcmSysInfos'] = 'EcmSysInfo';
|
||||
$beanFiles['EcmSysInfo'] = 'modules/EcmSysInfos/EcmSysInfo.php';
|
||||
$moduleList[] = 'EcmSysInfos';
|
||||
|
||||
$beanList['EcmInventorys'] = 'EcmInventory';
|
||||
$beanFiles['EcmInventory'] = 'modules/EcmInventorys/EcmInventory.php';
|
||||
$moduleList[] = 'EcmInventorys';
|
||||
Reference in New Issue
Block a user