0
0
Fork 0
mirror of https://github.com/salesagility/SuiteCRM.git synced 2025-03-13 04:53:21 +00:00
salesagility_SuiteCRM/modules/DynamicFields/UpgradeFields.php

134 lines
5.4 KiB
PHP
Raw Permalink Normal View History

2013-09-23 19:30:44 +00:00
<?php
2018-07-12 10:40:10 +00:00
if (!defined('sugarEntry') || !sugarEntry) {
die('Not A Valid Entry Point');
2018-07-19 10:23:31 +00:00
}
/**
*
2013-09-23 19:30:44 +00:00
* SugarCRM Community Edition is a customer relationship management program developed by
* SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc.
*
* SuiteCRM is an extension to SugarCRM Community Edition developed by SalesAgility Ltd.
* Copyright (C) 2011 - 2018 SalesAgility Ltd.
2014-07-07 15:33:23 +00:00
*
2013-09-23 19:30:44 +00:00
* 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.
2014-07-07 15:33:23 +00:00
*
2013-09-23 19:30:44 +00:00
* 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
2013-09-23 19:30:44 +00:00
* details.
2014-07-07 15:33:23 +00:00
*
2013-09-23 19:30:44 +00:00
* 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.
2014-07-07 15:33:23 +00:00
*
2013-09-23 19:30:44 +00:00
* You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
* SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
2014-07-07 15:33:23 +00:00
*
2013-09-23 19:30:44 +00:00
* 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.
2014-07-07 15:33:23 +00:00
*
2013-09-23 19:30:44 +00:00
* 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
2014-07-07 15:33:23 +00:00
* SugarCRM" logo and "Supercharged by SuiteCRM" logo. If the display of the logos is not
* reasonably feasible for technical reasons, the Appropriate Legal Notices must
* display the words "Powered by SugarCRM" and "Supercharged by SuiteCRM".
*/
2013-09-23 19:30:44 +00:00
require_once('modules/DynamicFields/FieldCases.php');
require_once('modules/DynamicFields/DynamicField.php');
$db = DBManagerFactory::getInstance();
2018-07-12 10:40:10 +00:00
if (!isset($db)) {
$db = DBManagerFactory::getInstance();
2013-09-23 19:30:44 +00:00
}
2018-07-12 14:44:43 +00:00
$result = $db->query('SELECT * FROM fields_meta_data WHERE deleted = 0 ORDER BY custom_module');
2013-09-23 19:30:44 +00:00
$modules = array();
/*
* get the real field_meta_data
*/
2018-07-12 10:40:10 +00:00
while ($row = $db->fetchByAssoc($result)) {
$the_modules = $row['custom_module'];
if (!isset($modules[$the_modules])) {
$modules[$the_modules] = array();
}
$modules[$the_modules][$row['name']] = $row['name'];
2013-09-23 19:30:44 +00:00
}
Merge branch 'hotfix-7.8.x' into hotfix # Conflicts: # .gitignore # .travis.yml # ModuleInstall/ModuleScanner.php # README.md # composer.json # composer.lock # data/Link2.php # data/Relationships/M2MRelationship.php # data/Relationships/One2MBeanRelationship.php # data/SugarBean.php # include/EditView/SugarVCR.php # include/InlineEditing/InlineEditing.php # include/InlineEditing/inlineEditing.js # include/ListView/ListViewData.php # include/ListView/ListViewDisplay.php # include/ListView/ListViewSmarty.php # include/MVC/SugarApplication.php # include/MVC/View/SugarView.php # include/MVC/View/views/view.list.php # include/MVC/View/views/view.sugarpdf.php # include/MassUpdate.php # include/Popups/PopupSmarty.php # include/SearchForm/SearchForm.php # include/SearchForm/SearchForm2.php # include/StateChecker.php # include/StateCheckerCestAbstract.php # include/StateCheckerCodeceptionTrait.php # include/StateCheckerConfig.php # include/StateCheckerPHPUnitTestCaseAbstract.php # include/StateCheckerTrait.php # include/StateCheckerUnitAbstract.php # include/StateSaver.php # include/SugarEmailAddress/SugarEmailAddress.php # include/SugarFields/Fields/Address/DetailView.tpl # include/SugarFields/Fields/Address/en_us.DetailView.tpl # include/SugarObjects/forms/PersonFormBase.php # include/SugarTheme/SugarTheme.php # include/Sugarpdf/Sugarpdf.php # include/TimeDate.php # include/database/DBManager.php # include/entryPoint.php # include/generic/LayoutManager.php # include/generic/Save2.php # include/generic/SugarWidgets/SugarWidgetFieldcurrency.php # include/generic/SugarWidgets/SugarWidgetFieldenum.php # include/generic/SugarWidgets/SugarWidgetFieldfloat.php # include/generic/SugarWidgets/SugarWidgetFieldid.php # include/generic/SugarWidgets/SugarWidgetFieldint.php # include/generic/SugarWidgets/SugarWidgetFieldmultienum.php # include/generic/SugarWidgets/SugarWidgetFieldname.php # include/generic/SugarWidgets/SugarWidgetFieldsingleenum.php # include/generic/SugarWidgets/SugarWidgetFieldtext.php # include/generic/SugarWidgets/SugarWidgetFielduser_name.php # include/generic/SugarWidgets/SugarWidgetFieldvarchar.php # include/generic/SugarWidgets/SugarWidgetReportField.php # include/generic/SugarWidgets/SugarWidgetSubPanelConcat.php # include/generic/SugarWidgets/SugarWidgetSubPanelEditRoleButton.php # include/generic/SugarWidgets/SugarWidgetSubPanelEditSecurityGroupUserButton.php # include/generic/SugarWidgets/SugarWidgetSubPanelRelFieldEditButton.php # include/generic/SugarWidgets/SugarWidgetSubPanelRemoveButtonAccount.php # include/generic/SugarWidgets/SugarWidgetSubPanelRemoveButtonProjects.php # include/javascript/jsAlerts.php # include/language/en_us.lang.php # include/nusoap/nusoap.php # include/social/hooks.php # include/upload_file.php # include/utils.php # include/utils/db_utils.php # include/utils/file_utils.php # include/utils/layout_utils.php # include/utils/logic_utils.php # include/utils/mvc_utils.php # include/utils/security_utils.php # install/install_utils.php # install/seed_data/quotes_SeedData.php # modules/ACL/ACLController.php # modules/ACLActions/ACLAction.php # modules/ACLRoles/ACLRole.php # modules/AM_ProjectTemplates/controller.php # modules/AM_ProjectTemplates/views/view.ganttchart.php # modules/AOD_Index/views/view.indexdata.php # modules/AOD_IndexEvent/AOD_IndexEvent_sugar.php # modules/AOP_Case_Updates/AOPAssignManager.php # modules/AOP_Case_Updates/CaseUpdatesHook.php # modules/AOR_Conditions/AOR_Condition.php # modules/AOR_Fields/AOR_Field.php # modules/AOR_Reports/AOR_Report.js # modules/AOR_Reports/AOR_Report.php # modules/AOR_Reports/Menu.php # modules/AOR_Reports/aor_utils.php # modules/AOR_Reports/controller.php # modules/AOR_Reports/views/view.detail.php # modules/AOS_Contracts/AOS_Contracts.php # modules/AOS_Line_Item_Groups/AOS_Line_Item_Groups.php # modules/AOS_PDF_Templates/generatePdf.php # modules/AOS_Products_Quotes/AOS_Products_Quotes.php # modules/AOS_Products_Quotes/AOS_Utils.php # modules/AOS_Quotes/converToInvoice.php # modules/AOS_Quotes/createContract.php # modules/AOW_Actions/AOW_Action.php # modules/AOW_Actions/actions/templateParser.php # modules/AOW_Conditions/AOW_Condition.php # modules/AOW_WorkFlow/AOW_WorkFlow.php # modules/AOW_WorkFlow/aow_utils.php # modules/Accounts/AccountFormBase.php # modules/Activities/Popup_picker.php # modules/Administration/Diagnostic.php # modules/Administration/DiagnosticRun.php # modules/Administration/DisplayWarnings.php # modules/Administration/Locale.php # modules/Administration/RebuildFulltextIndices.php # modules/Administration/RebuildRelationship.php # modules/Administration/RepairFieldCasing.php # modules/Administration/RepairIndex.php # modules/Administration/RepairSeedUsers.php # modules/Administration/Upgrade.php # modules/Administration/UpgradeFields.php # modules/Administration/UpgradeWizard_commit.php # modules/Administration/index.tpl # modules/Administration/language/en_us.lang.php # modules/Administration/updater_utils.php # modules/Calendar/CalendarUtils.php # modules/Calendar/views/view.getgr.php # modules/Calls/Call.php # modules/Calls/Dashlets/MyCallsDashlet/MyCallsDashlet.php # modules/Campaigns/GenerateWebToLeadForm.php # modules/Campaigns/ProcessBouncedEmails.php # modules/Campaigns/Schedule.php # modules/Campaigns/WizardHome.php # modules/Campaigns/WizardMarketing.php # modules/Campaigns/language/en_us.lang.php # modules/Campaigns/utils.php # modules/Cases/Case.php # modules/Cases/views/view.edit.php # modules/Contacts/views/view.retrieveemail.php # modules/Currencies/Currency.php # modules/DocumentRevisions/DocumentRevision.php # modules/Documents/Document.php # modules/Documents/TreeData.php # modules/DynamicFields/UpgradeFields.php # modules/DynamicFields/templates/Fields/TemplateCurrency.php # modules/DynamicFields/templates/Fields/TemplateDecimal.php # modules/DynamicFields/templates/Fields/TemplateField.php # modules/DynamicFields/templates/Fields/TemplateFloat.php # modules/DynamicFields/templates/Fields/TemplateInt.php # modules/EAPM/EAPM.php # modules/EmailMan/EmailMan.php # modules/EmailMarketing/EmailMarketing.php # modules/EmailTemplates/EmailTemplate.php # modules/Emails/Email.php # modules/Emails/EmailUI.php # modules/Emails/EmailUIAjax.php # modules/Emails/ListViewGroup.php # modules/Emails/templates/addressSearch.tpl # modules/Emails/templates/advancedSearch.tpl # modules/FP_events/controller.php # modules/FP_events/responseEntryPoint.php # modules/Favorites/Favorites.php # modules/Home/UnifiedSearchAdvanced.php # modules/Import/UsersLastImport.php # modules/Import/views/view.last.php # modules/InboundEmail/InboundEmail.php # modules/Leads/Lead.php # modules/Meetings/Dashlets/MyMeetingsDashlet/MyMeetingsDashlet.php # modules/Meetings/Meeting.php # modules/Meetings/language/en_us.lang.php # modules/Meetings/views/view.listbytype.php # modules/MySettings/StoreQuery.php # modules/OAuthTokens/OAuthToken.php # modules/Opportunities/Opportunity.php # modules/Opportunities/OpportunityFormBase.php # modules/Project/Project.php # modules/Project/controller.php # modules/Project/delete_project_tasks.php # modules/Project/language/en_us.lang.php # modules/Project/views/view.ganttchart.php # modules/ProjectTask/ProjectTask.php # modules/ProjectTask/views/view.list.php # modules/ProspectLists/ProspectList.php # modules/ProspectLists/TargetListUpdate.php # modules/Prospects/Prospect.php # modules/Relationships/RelationshipHandler.php # modules/Releases/Release.php # modules/Roles/Role.php # modules/SavedSearch/SavedSearch.php # modules/SavedSearch/UpgradeSavedSearch.php # modules/Schedulers/Scheduler.php # modules/Schedulers/views/view.detail.php # modules/Schedulers/views/view.edit.php # modules/SchedulersJobs/SchedulersJob.php # modules/SecurityGroups/AssignGroups.php # modules/SecurityGroups/SaveSecurityGroupUserRelationship.php # modules/SecurityGroups/SecurityGroup.php # modules/SecurityGroups/language/en_us.lang.php # modules/Studio/config.php # modules/SugarFeed/Dashlets/SugarFeedDashlet/SugarFeedDashlet.php # modules/SugarFeed/SugarFeed.php # modules/SugarFeed/SugarFeedFlush.php # modules/Tasks/Task.php # modules/Trackers/BreadCrumbStack.php # modules/Trackers/store/DatabaseStore.php # modules/Trackers/store/TrackerQueriesDatabaseStore.php # modules/Trackers/store/TrackerSessionsDatabaseStore.php # modules/UpgradeWizard/layouts.php # modules/UpgradeWizard/silentUpgrade_dce_step1.php # modules/UpgradeWizard/silentUpgrade_dce_step2.php # modules/UpgradeWizard/silentUpgrade_step1.php # modules/UpgradeWizard/silentUpgrade_step2.php # modules/UpgradeWizard/uw_ajax.php # modules/UpgradeWizard/uw_main.tpl # modules/UpgradeWizard/uw_utils.php # modules/UserPreferences/UserPreference.php # modules/Users/ChangePassword.php # modules/Users/Changenewpassword.php # modules/Users/Error.php # modules/Users/Save.php # modules/Users/User.php # modules/Users/authentication/EmailAuthenticate/EmailAuthenticateUser.php # modules/Users/authentication/LDAPAuthenticate/LDAPAuthenticateUser.php # modules/Users/language/en_us.lang.php # modules/Users/reassignUserRecords.php # modules/Users/tpls/EditViewFooter.tpl # modules/Users/views/view.edit.php # modules/jjwg_Address_Cache/jjwg_Address_Cache.php # modules/jjwg_Areas/jjwg_Areas.php # modules/jjwg_Maps/jjwg_Maps.php # modules/jjwg_Markers/jjwg_Markers.php # modules/vCals/vCal.php # service/core/SoapHelperWebService.php # service/core/SugarWebServiceImpl.php # service/v3/SugarWebServiceImplv3.php # service/v3/SugarWebServiceUtilv3.php # service/v3_1/SugarWebServiceImplv3_1.php # service/v4/SugarWebServiceImplv4.php # service/v4/SugarWebServiceUtilv4.php # service/v4_1/SugarWebServiceImplv4_1.php # soap/SoapData.php # soap/SoapDeprecated.php # soap/SoapHelperFunctions.php # soap/SoapPortalHelper.php # soap/SoapPortalUsers.php # soap/SoapRelationshipHelper.php # soap/SoapSugarUsers.php # suitecrm_version.php # tests/phpunit.xml.dist # tests/tests/configTest.php # tests/tests/include/MVC/Controller/ControllerFactoryTest.php # tests/tests/include/MVC/Controller/SugarControllerTest.php # tests/tests/include/MVC/SugarApplicationTest.php # tests/tests/include/MVC/SugarModuleTest.php # tests/tests/include/MVC/View/SugarViewTest.php # tests/tests/include/MVC/View/ViewFactoryTest.php # tests/tests/include/MVC/View/views/view.ajaxTest.php # tests/tests/include/MVC/View/views/view.ajaxuiTest.php # tests/tests/include/MVC/View/views/view.classicTest.php # tests/tests/include/MVC/View/views/view.detailTest.php # tests/tests/include/MVC/View/views/view.editTest.php # tests/tests/include/MVC/View/views/view.favoritesTest.php # tests/tests/include/MVC/View/views/view.htmlTest.php # tests/tests/include/MVC/View/views/view.importvcardTest.php # tests/tests/include/MVC/View/views/view.importvcardsaveTest.php # tests/tests/include/MVC/View/views/view.jsonTest.php # tests/tests/include/MVC/View/views/view.listTest.php # tests/tests/include/MVC/View/views/view.metadataTest.php # tests/tests/include/MVC/View/views/view.modulelistmenuTest.php # tests/tests/include/MVC/View/views/view.multieditTest.php # tests/tests/include/MVC/View/views/view.noaccessTest.php # tests/tests/include/MVC/View/views/view.popupTest.php # tests/tests/include/MVC/View/views/view.quickTest.php # tests/tests/include/MVC/View/views/view.quickcreateTest.php # tests/tests/include/MVC/View/views/view.quickeditTest.php # tests/tests/include/MVC/View/views/view.serializedTest.php # tests/tests/include/MVC/View/views/view.sugarpdfTest.php # tests/tests/include/MVC/View/views/view.vcardTest.php # tests/tests/include/MVC/View/views/view.xmlTest.php # tests/tests/include/utils/LogicHookTest.php # tests/tests/include/utils/activityUtilsTest.php # tests/tests/include/utils/arrayUtilsTest.php # tests/tests/include/utils/autoloaderTest.php # tests/tests/include/utils/dbUtilsTest.php # tests/tests/include/utils/encryptionUtilsTest.php # tests/tests/include/utils/fileUtilsTest.php # tests/tests/include/utils/layoutUtilsTest.php # tests/tests/include/utils/logicUtilsTest.php # tests/tests/include/utils/mvcUtilsTest.php # tests/tests/include/utils/phpZipUtilsTest.php # tests/tests/include/utils/progressBarUtilsTest.php # tests/tests/include/utils/securityUtilsTest.php # tests/tests/include/utils/sugarFileUtilsTest.php # tests/tests/include/utils/zipUtilsTest.php # tests/tests/modules/ACLActions/ACLActionTest.php # tests/tests/modules/ACLRoles/ACLRoleTest.php # tests/tests/modules/AM_ProjectTemplates/AM_ProjectTemplatesTest.php # tests/tests/modules/AM_TaskTemplates/AM_TaskTemplatesTest.php # tests/tests/modules/AOD_Index/AOD_IndexTest.php # tests/tests/modules/AOD_IndexEvent/AOD_IndexEventTest.php # tests/tests/modules/AOK_KnowledgeBase/AOK_KnowledgeBaseTest.php # tests/tests/modules/AOK_Knowledge_Base_Categories/AOK_Knowledge_Base_CategoriesTest.php # tests/tests/modules/AOP_Case_Events/AOP_Case_EventsTest.php # tests/tests/modules/AOP_Case_Updates/AOP_Case_UpdatesTest.php # tests/tests/modules/AOR_Charts/AOR_ChartTest.php # tests/tests/modules/AOR_Conditions/AOR_ConditionTest.php # tests/tests/modules/AOR_Fields/AOR_FieldTest.php # tests/tests/modules/AOR_Reports/AOR_ReportTest.php # tests/tests/modules/AOR_Scheduled_Reports/AOR_Scheduled_ReportsTest.php # tests/tests/modules/AOS_Contracts/AOS_ContractsTest.php # tests/tests/modules/AOS_Invoices/AOS_InvoicesTest.php # tests/tests/modules/AOS_Line_Item_Groups/AOS_Line_Item_GroupsTest.php # tests/tests/modules/AOS_PDF_Templates/AOS_PDF_TemplatesTest.php # tests/tests/modules/AOS_Product_Categories/AOS_Product_CategoriesTest.php # tests/tests/modules/AOS_Products/AOS_ProductsTest.php # tests/tests/modules/AOS_Products_Quotes/AOS_Products_QuotesTest.php # tests/tests/modules/AOS_Quotes/AOS_QuotesTest.php # tests/tests/modules/AOW_Actions/AOW_ActionTest.php # tests/tests/modules/AOW_Conditions/AOW_ConditionTest.php # tests/tests/modules/AOW_Processed/AOW_ProcessedTest.php # tests/tests/modules/AOW_WorkFlow/AOW_WorkFlowTest.php # tests/tests/modules/Accounts/AccountTest.php # tests/tests/modules/Administration/AdministrationTest.php # tests/tests/modules/Alerts/AlertTest.php # tests/tests/modules/Audit/AuditTest.php # tests/tests/modules/Bugs/BugTest.php # tests/tests/modules/Calls/CallTest.php # tests/tests/modules/Calls_Reschedule/Calls_RescheduleTest.php # tests/tests/modules/CampaignLog/CampaignLogTest.php # tests/tests/modules/CampaignTrackers/CampaignTrackerTest.php # tests/tests/modules/Campaigns/CampaignTest.php # tests/tests/modules/Cases/CaseTest.php # tests/tests/modules/Contacts/ContactTest.php # tests/tests/modules/Currencies/CurrencyTest.php # tests/tests/modules/DocumentRevisions/DocumentRevisionTest.php # tests/tests/modules/Documents/DocumentTest.php # tests/tests/modules/EAPM/EAPMTest.php # tests/tests/modules/EmailAddresses/EmailAddressTest.php # tests/tests/modules/EmailMan/EmailManTest.php # tests/tests/modules/EmailMarketing/EmailMarketingTest.php # tests/tests/modules/EmailTemplates/EmailTemplateTest.php # tests/tests/modules/EmailText/EmailTextTest.php # tests/tests/modules/Emails/EmailTest.php # tests/tests/modules/Employees/EmployeeTest.php # tests/tests/modules/FP_Event_Locations/FP_Event_LocationsTest.php # tests/tests/modules/FP_events/FP_eventsTest.php # tests/tests/modules/Favorites/FavoritesTest.php # tests/tests/modules/Groups/GroupTest.php # tests/tests/modules/InboundEmail/InboundEmailTest.php # tests/tests/modules/Leads/LeadTest.php # tests/tests/modules/Meetings/MeetingTest.php # tests/tests/modules/MergeRecords/MergeRecordTest.php # tests/tests/modules/Notes/NoteTest.php # tests/tests/modules/OAuthKeys/OAuthKeyTest.php # tests/tests/modules/OAuthTokens/OAuthTokenTest.php # tests/tests/modules/Opportunities/OpportunityTest.php # tests/tests/modules/Project/ProjectTest.php # tests/tests/modules/ProjectTask/ProjectTaskTest.php # tests/tests/modules/ProspectLists/ProspectListTest.php # tests/tests/modules/Prospects/ProspectTest.php # tests/tests/modules/Relationships/RelationshipTest.php # tests/tests/modules/Releases/ReleaseTest.php # tests/tests/modules/Roles/RoleTest.php # tests/tests/modules/SavedSearch/SavedSearchTest.php # tests/tests/modules/Schedulers/SchedulerTest.php # tests/tests/modules/SchedulersJobs/SchedulersJobTest.php # tests/tests/modules/SecurityGroups/SecurityGroupTest.php # tests/tests/modules/SugarFeed/SugarFeedTest.php # tests/tests/modules/Tasks/TaskTest.php # tests/tests/modules/Trackers/TrackerTest.php # tests/tests/modules/UserPreferences/UserPreferenceTest.php # tests/tests/modules/Users/UserTest.php # tests/tests/modules/iCals/iCalTest.php # tests/tests/modules/jjwg_Address_Cache/jjwg_Address_CacheTest.php # tests/tests/modules/jjwg_Areas/jjwg_AreasTest.php # tests/tests/modules/jjwg_Maps/jjwg_MapsTest.php # tests/tests/modules/jjwg_Markers/jjwg_MarkersTest.php # tests/tests/modules/vCals/vCalTest.php # themes/SuiteP/css/style.css # themes/SuiteP/include/SearchForm/tpls/header.tpl # themes/SuiteP/modules/Calendar/tpls/header.tpl
2018-08-31 12:58:25 +00:00
2013-09-23 19:30:44 +00:00
$simulate = false;
2018-07-12 10:40:10 +00:00
if (!isset($_REQUEST['run'])) {
$simulate = true;
echo "SIMULATION MODE - NO CHANGES WILL BE MADE EXCEPT CLEARING CACHE";
2018-07-19 10:23:31 +00:00
}
2013-09-23 19:30:44 +00:00
2018-07-12 10:40:10 +00:00
foreach ($modules as $the_module=>$fields) {
if (isset($beanList[$the_module])) {
$class_name = $beanList[$the_module];
echo "<br><br>Scanning $the_module <br>";
2013-09-23 19:30:44 +00:00
2018-07-12 10:40:10 +00:00
require_once($beanFiles[$class_name]);
$mod = new $class_name();
if (!$db->tableExists($mod->table_name . "_cstm")) {
Replace explicit bean instantiations in files 511 - 520 - File: '... /modules/EmailTemplates/CheckDeletable.php' - Replaced 1 occurrence(s) of 'new EmailTemplate()' - File: '... /modules/EmailTemplates/DetailView.php' - Replaced 1 occurrence(s) of 'new EmailTemplate()' - Replaced 1 occurrence(s) of 'new Note()' - File: '... /modules/EmailTemplates/EmailTemplate.php' - Replaced 3 occurrence(s) of 'new Lead()' - Replaced 3 occurrence(s) of 'new Prospect()' - Replaced 3 occurrence(s) of 'new Contact()' - Replaced 3 occurrence(s) of 'new Account()' - Replaced 1 occurrence(s) of 'new EmailTemplate()' - Replaced 2 occurrence(s) of 'new User()' - Replaced 1 occurrence(s) of 'new FP_events()' - File: '... /modules/EmailTemplates/templateFields.php' - Replaced 1 occurrence(s) of 'new Lead()' - Replaced 1 occurrence(s) of 'new Prospect()' - Replaced 1 occurrence(s) of 'new Contact()' - File: '... /modules/EmailTemplates/PopupDocumentsCampaignTemplate.php' - Replaced 1 occurrence(s) of 'new Document()' - File: '... /modules/EmailTemplates/Save.php' - Replaced 1 occurrence(s) of 'new EmailTemplate()' - File: '... /modules/DynamicFields/UpgradeFields.php' - Replaced 1 occurrence(s) of 'new DynamicField()' - File: '... /modules/DynamicFields/DynamicField.php' - Replaced 1 occurrence(s) of 'new FieldsMetaData()' - File: '... /modules/AOW_Actions/actions/actionCreateRecord.php' - Replaced 2 occurrence(s) of 'new ACLRole()' - Replaced 1 occurrence(s) of 'new AOBH_BusinessHours()' - Replaced 1 occurrence(s) of 'new SecurityGroup()' - File: '... /modules/AOW_Actions/actions/templateParser.php' - Replaced 1 occurrence(s) of 'new Contact()'
2020-01-22 13:51:50 +00:00
$mod->custom_fields = BeanFactory::newBean('DynamicFields');
2018-07-12 10:40:10 +00:00
$mod->custom_fields->setup($mod);
$mod->custom_fields->createCustomTable();
}
2013-09-23 19:30:44 +00:00
2018-07-12 10:40:10 +00:00
$result = $db->query("DESCRIBE $mod->table_name" . "_cstm");
Merge branch 'hotfix-7.8.x' into hotfix # Conflicts: # .gitignore # .travis.yml # ModuleInstall/ModuleScanner.php # README.md # composer.json # composer.lock # data/Link2.php # data/Relationships/M2MRelationship.php # data/Relationships/One2MBeanRelationship.php # data/SugarBean.php # include/EditView/SugarVCR.php # include/InlineEditing/InlineEditing.php # include/InlineEditing/inlineEditing.js # include/ListView/ListViewData.php # include/ListView/ListViewDisplay.php # include/ListView/ListViewSmarty.php # include/MVC/SugarApplication.php # include/MVC/View/SugarView.php # include/MVC/View/views/view.list.php # include/MVC/View/views/view.sugarpdf.php # include/MassUpdate.php # include/Popups/PopupSmarty.php # include/SearchForm/SearchForm.php # include/SearchForm/SearchForm2.php # include/StateChecker.php # include/StateCheckerCestAbstract.php # include/StateCheckerCodeceptionTrait.php # include/StateCheckerConfig.php # include/StateCheckerPHPUnitTestCaseAbstract.php # include/StateCheckerTrait.php # include/StateCheckerUnitAbstract.php # include/StateSaver.php # include/SugarEmailAddress/SugarEmailAddress.php # include/SugarFields/Fields/Address/DetailView.tpl # include/SugarFields/Fields/Address/en_us.DetailView.tpl # include/SugarObjects/forms/PersonFormBase.php # include/SugarTheme/SugarTheme.php # include/Sugarpdf/Sugarpdf.php # include/TimeDate.php # include/database/DBManager.php # include/entryPoint.php # include/generic/LayoutManager.php # include/generic/Save2.php # include/generic/SugarWidgets/SugarWidgetFieldcurrency.php # include/generic/SugarWidgets/SugarWidgetFieldenum.php # include/generic/SugarWidgets/SugarWidgetFieldfloat.php # include/generic/SugarWidgets/SugarWidgetFieldid.php # include/generic/SugarWidgets/SugarWidgetFieldint.php # include/generic/SugarWidgets/SugarWidgetFieldmultienum.php # include/generic/SugarWidgets/SugarWidgetFieldname.php # include/generic/SugarWidgets/SugarWidgetFieldsingleenum.php # include/generic/SugarWidgets/SugarWidgetFieldtext.php # include/generic/SugarWidgets/SugarWidgetFielduser_name.php # include/generic/SugarWidgets/SugarWidgetFieldvarchar.php # include/generic/SugarWidgets/SugarWidgetReportField.php # include/generic/SugarWidgets/SugarWidgetSubPanelConcat.php # include/generic/SugarWidgets/SugarWidgetSubPanelEditRoleButton.php # include/generic/SugarWidgets/SugarWidgetSubPanelEditSecurityGroupUserButton.php # include/generic/SugarWidgets/SugarWidgetSubPanelRelFieldEditButton.php # include/generic/SugarWidgets/SugarWidgetSubPanelRemoveButtonAccount.php # include/generic/SugarWidgets/SugarWidgetSubPanelRemoveButtonProjects.php # include/javascript/jsAlerts.php # include/language/en_us.lang.php # include/nusoap/nusoap.php # include/social/hooks.php # include/upload_file.php # include/utils.php # include/utils/db_utils.php # include/utils/file_utils.php # include/utils/layout_utils.php # include/utils/logic_utils.php # include/utils/mvc_utils.php # include/utils/security_utils.php # install/install_utils.php # install/seed_data/quotes_SeedData.php # modules/ACL/ACLController.php # modules/ACLActions/ACLAction.php # modules/ACLRoles/ACLRole.php # modules/AM_ProjectTemplates/controller.php # modules/AM_ProjectTemplates/views/view.ganttchart.php # modules/AOD_Index/views/view.indexdata.php # modules/AOD_IndexEvent/AOD_IndexEvent_sugar.php # modules/AOP_Case_Updates/AOPAssignManager.php # modules/AOP_Case_Updates/CaseUpdatesHook.php # modules/AOR_Conditions/AOR_Condition.php # modules/AOR_Fields/AOR_Field.php # modules/AOR_Reports/AOR_Report.js # modules/AOR_Reports/AOR_Report.php # modules/AOR_Reports/Menu.php # modules/AOR_Reports/aor_utils.php # modules/AOR_Reports/controller.php # modules/AOR_Reports/views/view.detail.php # modules/AOS_Contracts/AOS_Contracts.php # modules/AOS_Line_Item_Groups/AOS_Line_Item_Groups.php # modules/AOS_PDF_Templates/generatePdf.php # modules/AOS_Products_Quotes/AOS_Products_Quotes.php # modules/AOS_Products_Quotes/AOS_Utils.php # modules/AOS_Quotes/converToInvoice.php # modules/AOS_Quotes/createContract.php # modules/AOW_Actions/AOW_Action.php # modules/AOW_Actions/actions/templateParser.php # modules/AOW_Conditions/AOW_Condition.php # modules/AOW_WorkFlow/AOW_WorkFlow.php # modules/AOW_WorkFlow/aow_utils.php # modules/Accounts/AccountFormBase.php # modules/Activities/Popup_picker.php # modules/Administration/Diagnostic.php # modules/Administration/DiagnosticRun.php # modules/Administration/DisplayWarnings.php # modules/Administration/Locale.php # modules/Administration/RebuildFulltextIndices.php # modules/Administration/RebuildRelationship.php # modules/Administration/RepairFieldCasing.php # modules/Administration/RepairIndex.php # modules/Administration/RepairSeedUsers.php # modules/Administration/Upgrade.php # modules/Administration/UpgradeFields.php # modules/Administration/UpgradeWizard_commit.php # modules/Administration/index.tpl # modules/Administration/language/en_us.lang.php # modules/Administration/updater_utils.php # modules/Calendar/CalendarUtils.php # modules/Calendar/views/view.getgr.php # modules/Calls/Call.php # modules/Calls/Dashlets/MyCallsDashlet/MyCallsDashlet.php # modules/Campaigns/GenerateWebToLeadForm.php # modules/Campaigns/ProcessBouncedEmails.php # modules/Campaigns/Schedule.php # modules/Campaigns/WizardHome.php # modules/Campaigns/WizardMarketing.php # modules/Campaigns/language/en_us.lang.php # modules/Campaigns/utils.php # modules/Cases/Case.php # modules/Cases/views/view.edit.php # modules/Contacts/views/view.retrieveemail.php # modules/Currencies/Currency.php # modules/DocumentRevisions/DocumentRevision.php # modules/Documents/Document.php # modules/Documents/TreeData.php # modules/DynamicFields/UpgradeFields.php # modules/DynamicFields/templates/Fields/TemplateCurrency.php # modules/DynamicFields/templates/Fields/TemplateDecimal.php # modules/DynamicFields/templates/Fields/TemplateField.php # modules/DynamicFields/templates/Fields/TemplateFloat.php # modules/DynamicFields/templates/Fields/TemplateInt.php # modules/EAPM/EAPM.php # modules/EmailMan/EmailMan.php # modules/EmailMarketing/EmailMarketing.php # modules/EmailTemplates/EmailTemplate.php # modules/Emails/Email.php # modules/Emails/EmailUI.php # modules/Emails/EmailUIAjax.php # modules/Emails/ListViewGroup.php # modules/Emails/templates/addressSearch.tpl # modules/Emails/templates/advancedSearch.tpl # modules/FP_events/controller.php # modules/FP_events/responseEntryPoint.php # modules/Favorites/Favorites.php # modules/Home/UnifiedSearchAdvanced.php # modules/Import/UsersLastImport.php # modules/Import/views/view.last.php # modules/InboundEmail/InboundEmail.php # modules/Leads/Lead.php # modules/Meetings/Dashlets/MyMeetingsDashlet/MyMeetingsDashlet.php # modules/Meetings/Meeting.php # modules/Meetings/language/en_us.lang.php # modules/Meetings/views/view.listbytype.php # modules/MySettings/StoreQuery.php # modules/OAuthTokens/OAuthToken.php # modules/Opportunities/Opportunity.php # modules/Opportunities/OpportunityFormBase.php # modules/Project/Project.php # modules/Project/controller.php # modules/Project/delete_project_tasks.php # modules/Project/language/en_us.lang.php # modules/Project/views/view.ganttchart.php # modules/ProjectTask/ProjectTask.php # modules/ProjectTask/views/view.list.php # modules/ProspectLists/ProspectList.php # modules/ProspectLists/TargetListUpdate.php # modules/Prospects/Prospect.php # modules/Relationships/RelationshipHandler.php # modules/Releases/Release.php # modules/Roles/Role.php # modules/SavedSearch/SavedSearch.php # modules/SavedSearch/UpgradeSavedSearch.php # modules/Schedulers/Scheduler.php # modules/Schedulers/views/view.detail.php # modules/Schedulers/views/view.edit.php # modules/SchedulersJobs/SchedulersJob.php # modules/SecurityGroups/AssignGroups.php # modules/SecurityGroups/SaveSecurityGroupUserRelationship.php # modules/SecurityGroups/SecurityGroup.php # modules/SecurityGroups/language/en_us.lang.php # modules/Studio/config.php # modules/SugarFeed/Dashlets/SugarFeedDashlet/SugarFeedDashlet.php # modules/SugarFeed/SugarFeed.php # modules/SugarFeed/SugarFeedFlush.php # modules/Tasks/Task.php # modules/Trackers/BreadCrumbStack.php # modules/Trackers/store/DatabaseStore.php # modules/Trackers/store/TrackerQueriesDatabaseStore.php # modules/Trackers/store/TrackerSessionsDatabaseStore.php # modules/UpgradeWizard/layouts.php # modules/UpgradeWizard/silentUpgrade_dce_step1.php # modules/UpgradeWizard/silentUpgrade_dce_step2.php # modules/UpgradeWizard/silentUpgrade_step1.php # modules/UpgradeWizard/silentUpgrade_step2.php # modules/UpgradeWizard/uw_ajax.php # modules/UpgradeWizard/uw_main.tpl # modules/UpgradeWizard/uw_utils.php # modules/UserPreferences/UserPreference.php # modules/Users/ChangePassword.php # modules/Users/Changenewpassword.php # modules/Users/Error.php # modules/Users/Save.php # modules/Users/User.php # modules/Users/authentication/EmailAuthenticate/EmailAuthenticateUser.php # modules/Users/authentication/LDAPAuthenticate/LDAPAuthenticateUser.php # modules/Users/language/en_us.lang.php # modules/Users/reassignUserRecords.php # modules/Users/tpls/EditViewFooter.tpl # modules/Users/views/view.edit.php # modules/jjwg_Address_Cache/jjwg_Address_Cache.php # modules/jjwg_Areas/jjwg_Areas.php # modules/jjwg_Maps/jjwg_Maps.php # modules/jjwg_Markers/jjwg_Markers.php # modules/vCals/vCal.php # service/core/SoapHelperWebService.php # service/core/SugarWebServiceImpl.php # service/v3/SugarWebServiceImplv3.php # service/v3/SugarWebServiceUtilv3.php # service/v3_1/SugarWebServiceImplv3_1.php # service/v4/SugarWebServiceImplv4.php # service/v4/SugarWebServiceUtilv4.php # service/v4_1/SugarWebServiceImplv4_1.php # soap/SoapData.php # soap/SoapDeprecated.php # soap/SoapHelperFunctions.php # soap/SoapPortalHelper.php # soap/SoapPortalUsers.php # soap/SoapRelationshipHelper.php # soap/SoapSugarUsers.php # suitecrm_version.php # tests/phpunit.xml.dist # tests/tests/configTest.php # tests/tests/include/MVC/Controller/ControllerFactoryTest.php # tests/tests/include/MVC/Controller/SugarControllerTest.php # tests/tests/include/MVC/SugarApplicationTest.php # tests/tests/include/MVC/SugarModuleTest.php # tests/tests/include/MVC/View/SugarViewTest.php # tests/tests/include/MVC/View/ViewFactoryTest.php # tests/tests/include/MVC/View/views/view.ajaxTest.php # tests/tests/include/MVC/View/views/view.ajaxuiTest.php # tests/tests/include/MVC/View/views/view.classicTest.php # tests/tests/include/MVC/View/views/view.detailTest.php # tests/tests/include/MVC/View/views/view.editTest.php # tests/tests/include/MVC/View/views/view.favoritesTest.php # tests/tests/include/MVC/View/views/view.htmlTest.php # tests/tests/include/MVC/View/views/view.importvcardTest.php # tests/tests/include/MVC/View/views/view.importvcardsaveTest.php # tests/tests/include/MVC/View/views/view.jsonTest.php # tests/tests/include/MVC/View/views/view.listTest.php # tests/tests/include/MVC/View/views/view.metadataTest.php # tests/tests/include/MVC/View/views/view.modulelistmenuTest.php # tests/tests/include/MVC/View/views/view.multieditTest.php # tests/tests/include/MVC/View/views/view.noaccessTest.php # tests/tests/include/MVC/View/views/view.popupTest.php # tests/tests/include/MVC/View/views/view.quickTest.php # tests/tests/include/MVC/View/views/view.quickcreateTest.php # tests/tests/include/MVC/View/views/view.quickeditTest.php # tests/tests/include/MVC/View/views/view.serializedTest.php # tests/tests/include/MVC/View/views/view.sugarpdfTest.php # tests/tests/include/MVC/View/views/view.vcardTest.php # tests/tests/include/MVC/View/views/view.xmlTest.php # tests/tests/include/utils/LogicHookTest.php # tests/tests/include/utils/activityUtilsTest.php # tests/tests/include/utils/arrayUtilsTest.php # tests/tests/include/utils/autoloaderTest.php # tests/tests/include/utils/dbUtilsTest.php # tests/tests/include/utils/encryptionUtilsTest.php # tests/tests/include/utils/fileUtilsTest.php # tests/tests/include/utils/layoutUtilsTest.php # tests/tests/include/utils/logicUtilsTest.php # tests/tests/include/utils/mvcUtilsTest.php # tests/tests/include/utils/phpZipUtilsTest.php # tests/tests/include/utils/progressBarUtilsTest.php # tests/tests/include/utils/securityUtilsTest.php # tests/tests/include/utils/sugarFileUtilsTest.php # tests/tests/include/utils/zipUtilsTest.php # tests/tests/modules/ACLActions/ACLActionTest.php # tests/tests/modules/ACLRoles/ACLRoleTest.php # tests/tests/modules/AM_ProjectTemplates/AM_ProjectTemplatesTest.php # tests/tests/modules/AM_TaskTemplates/AM_TaskTemplatesTest.php # tests/tests/modules/AOD_Index/AOD_IndexTest.php # tests/tests/modules/AOD_IndexEvent/AOD_IndexEventTest.php # tests/tests/modules/AOK_KnowledgeBase/AOK_KnowledgeBaseTest.php # tests/tests/modules/AOK_Knowledge_Base_Categories/AOK_Knowledge_Base_CategoriesTest.php # tests/tests/modules/AOP_Case_Events/AOP_Case_EventsTest.php # tests/tests/modules/AOP_Case_Updates/AOP_Case_UpdatesTest.php # tests/tests/modules/AOR_Charts/AOR_ChartTest.php # tests/tests/modules/AOR_Conditions/AOR_ConditionTest.php # tests/tests/modules/AOR_Fields/AOR_FieldTest.php # tests/tests/modules/AOR_Reports/AOR_ReportTest.php # tests/tests/modules/AOR_Scheduled_Reports/AOR_Scheduled_ReportsTest.php # tests/tests/modules/AOS_Contracts/AOS_ContractsTest.php # tests/tests/modules/AOS_Invoices/AOS_InvoicesTest.php # tests/tests/modules/AOS_Line_Item_Groups/AOS_Line_Item_GroupsTest.php # tests/tests/modules/AOS_PDF_Templates/AOS_PDF_TemplatesTest.php # tests/tests/modules/AOS_Product_Categories/AOS_Product_CategoriesTest.php # tests/tests/modules/AOS_Products/AOS_ProductsTest.php # tests/tests/modules/AOS_Products_Quotes/AOS_Products_QuotesTest.php # tests/tests/modules/AOS_Quotes/AOS_QuotesTest.php # tests/tests/modules/AOW_Actions/AOW_ActionTest.php # tests/tests/modules/AOW_Conditions/AOW_ConditionTest.php # tests/tests/modules/AOW_Processed/AOW_ProcessedTest.php # tests/tests/modules/AOW_WorkFlow/AOW_WorkFlowTest.php # tests/tests/modules/Accounts/AccountTest.php # tests/tests/modules/Administration/AdministrationTest.php # tests/tests/modules/Alerts/AlertTest.php # tests/tests/modules/Audit/AuditTest.php # tests/tests/modules/Bugs/BugTest.php # tests/tests/modules/Calls/CallTest.php # tests/tests/modules/Calls_Reschedule/Calls_RescheduleTest.php # tests/tests/modules/CampaignLog/CampaignLogTest.php # tests/tests/modules/CampaignTrackers/CampaignTrackerTest.php # tests/tests/modules/Campaigns/CampaignTest.php # tests/tests/modules/Cases/CaseTest.php # tests/tests/modules/Contacts/ContactTest.php # tests/tests/modules/Currencies/CurrencyTest.php # tests/tests/modules/DocumentRevisions/DocumentRevisionTest.php # tests/tests/modules/Documents/DocumentTest.php # tests/tests/modules/EAPM/EAPMTest.php # tests/tests/modules/EmailAddresses/EmailAddressTest.php # tests/tests/modules/EmailMan/EmailManTest.php # tests/tests/modules/EmailMarketing/EmailMarketingTest.php # tests/tests/modules/EmailTemplates/EmailTemplateTest.php # tests/tests/modules/EmailText/EmailTextTest.php # tests/tests/modules/Emails/EmailTest.php # tests/tests/modules/Employees/EmployeeTest.php # tests/tests/modules/FP_Event_Locations/FP_Event_LocationsTest.php # tests/tests/modules/FP_events/FP_eventsTest.php # tests/tests/modules/Favorites/FavoritesTest.php # tests/tests/modules/Groups/GroupTest.php # tests/tests/modules/InboundEmail/InboundEmailTest.php # tests/tests/modules/Leads/LeadTest.php # tests/tests/modules/Meetings/MeetingTest.php # tests/tests/modules/MergeRecords/MergeRecordTest.php # tests/tests/modules/Notes/NoteTest.php # tests/tests/modules/OAuthKeys/OAuthKeyTest.php # tests/tests/modules/OAuthTokens/OAuthTokenTest.php # tests/tests/modules/Opportunities/OpportunityTest.php # tests/tests/modules/Project/ProjectTest.php # tests/tests/modules/ProjectTask/ProjectTaskTest.php # tests/tests/modules/ProspectLists/ProspectListTest.php # tests/tests/modules/Prospects/ProspectTest.php # tests/tests/modules/Relationships/RelationshipTest.php # tests/tests/modules/Releases/ReleaseTest.php # tests/tests/modules/Roles/RoleTest.php # tests/tests/modules/SavedSearch/SavedSearchTest.php # tests/tests/modules/Schedulers/SchedulerTest.php # tests/tests/modules/SchedulersJobs/SchedulersJobTest.php # tests/tests/modules/SecurityGroups/SecurityGroupTest.php # tests/tests/modules/SugarFeed/SugarFeedTest.php # tests/tests/modules/Tasks/TaskTest.php # tests/tests/modules/Trackers/TrackerTest.php # tests/tests/modules/UserPreferences/UserPreferenceTest.php # tests/tests/modules/Users/UserTest.php # tests/tests/modules/iCals/iCalTest.php # tests/tests/modules/jjwg_Address_Cache/jjwg_Address_CacheTest.php # tests/tests/modules/jjwg_Areas/jjwg_AreasTest.php # tests/tests/modules/jjwg_Maps/jjwg_MapsTest.php # tests/tests/modules/jjwg_Markers/jjwg_MarkersTest.php # tests/tests/modules/vCals/vCalTest.php # themes/SuiteP/css/style.css # themes/SuiteP/include/SearchForm/tpls/header.tpl # themes/SuiteP/modules/Calendar/tpls/header.tpl
2018-08-31 12:58:25 +00:00
2018-07-12 10:40:10 +00:00
while ($row = $db->fetchByAssoc($result)) {
$col = $row['Field'];
$type = $row['Type'];
$fieldDef = $mod->getFieldDefinition($col);
$the_field = get_widget($fieldDef['type']);
$the_field->set($fieldDef);
Merge branch 'hotfix-7.8.x' into hotfix # Conflicts: # .gitignore # .travis.yml # ModuleInstall/ModuleScanner.php # README.md # composer.json # composer.lock # data/Link2.php # data/Relationships/M2MRelationship.php # data/Relationships/One2MBeanRelationship.php # data/SugarBean.php # include/EditView/SugarVCR.php # include/InlineEditing/InlineEditing.php # include/InlineEditing/inlineEditing.js # include/ListView/ListViewData.php # include/ListView/ListViewDisplay.php # include/ListView/ListViewSmarty.php # include/MVC/SugarApplication.php # include/MVC/View/SugarView.php # include/MVC/View/views/view.list.php # include/MVC/View/views/view.sugarpdf.php # include/MassUpdate.php # include/Popups/PopupSmarty.php # include/SearchForm/SearchForm.php # include/SearchForm/SearchForm2.php # include/StateChecker.php # include/StateCheckerCestAbstract.php # include/StateCheckerCodeceptionTrait.php # include/StateCheckerConfig.php # include/StateCheckerPHPUnitTestCaseAbstract.php # include/StateCheckerTrait.php # include/StateCheckerUnitAbstract.php # include/StateSaver.php # include/SugarEmailAddress/SugarEmailAddress.php # include/SugarFields/Fields/Address/DetailView.tpl # include/SugarFields/Fields/Address/en_us.DetailView.tpl # include/SugarObjects/forms/PersonFormBase.php # include/SugarTheme/SugarTheme.php # include/Sugarpdf/Sugarpdf.php # include/TimeDate.php # include/database/DBManager.php # include/entryPoint.php # include/generic/LayoutManager.php # include/generic/Save2.php # include/generic/SugarWidgets/SugarWidgetFieldcurrency.php # include/generic/SugarWidgets/SugarWidgetFieldenum.php # include/generic/SugarWidgets/SugarWidgetFieldfloat.php # include/generic/SugarWidgets/SugarWidgetFieldid.php # include/generic/SugarWidgets/SugarWidgetFieldint.php # include/generic/SugarWidgets/SugarWidgetFieldmultienum.php # include/generic/SugarWidgets/SugarWidgetFieldname.php # include/generic/SugarWidgets/SugarWidgetFieldsingleenum.php # include/generic/SugarWidgets/SugarWidgetFieldtext.php # include/generic/SugarWidgets/SugarWidgetFielduser_name.php # include/generic/SugarWidgets/SugarWidgetFieldvarchar.php # include/generic/SugarWidgets/SugarWidgetReportField.php # include/generic/SugarWidgets/SugarWidgetSubPanelConcat.php # include/generic/SugarWidgets/SugarWidgetSubPanelEditRoleButton.php # include/generic/SugarWidgets/SugarWidgetSubPanelEditSecurityGroupUserButton.php # include/generic/SugarWidgets/SugarWidgetSubPanelRelFieldEditButton.php # include/generic/SugarWidgets/SugarWidgetSubPanelRemoveButtonAccount.php # include/generic/SugarWidgets/SugarWidgetSubPanelRemoveButtonProjects.php # include/javascript/jsAlerts.php # include/language/en_us.lang.php # include/nusoap/nusoap.php # include/social/hooks.php # include/upload_file.php # include/utils.php # include/utils/db_utils.php # include/utils/file_utils.php # include/utils/layout_utils.php # include/utils/logic_utils.php # include/utils/mvc_utils.php # include/utils/security_utils.php # install/install_utils.php # install/seed_data/quotes_SeedData.php # modules/ACL/ACLController.php # modules/ACLActions/ACLAction.php # modules/ACLRoles/ACLRole.php # modules/AM_ProjectTemplates/controller.php # modules/AM_ProjectTemplates/views/view.ganttchart.php # modules/AOD_Index/views/view.indexdata.php # modules/AOD_IndexEvent/AOD_IndexEvent_sugar.php # modules/AOP_Case_Updates/AOPAssignManager.php # modules/AOP_Case_Updates/CaseUpdatesHook.php # modules/AOR_Conditions/AOR_Condition.php # modules/AOR_Fields/AOR_Field.php # modules/AOR_Reports/AOR_Report.js # modules/AOR_Reports/AOR_Report.php # modules/AOR_Reports/Menu.php # modules/AOR_Reports/aor_utils.php # modules/AOR_Reports/controller.php # modules/AOR_Reports/views/view.detail.php # modules/AOS_Contracts/AOS_Contracts.php # modules/AOS_Line_Item_Groups/AOS_Line_Item_Groups.php # modules/AOS_PDF_Templates/generatePdf.php # modules/AOS_Products_Quotes/AOS_Products_Quotes.php # modules/AOS_Products_Quotes/AOS_Utils.php # modules/AOS_Quotes/converToInvoice.php # modules/AOS_Quotes/createContract.php # modules/AOW_Actions/AOW_Action.php # modules/AOW_Actions/actions/templateParser.php # modules/AOW_Conditions/AOW_Condition.php # modules/AOW_WorkFlow/AOW_WorkFlow.php # modules/AOW_WorkFlow/aow_utils.php # modules/Accounts/AccountFormBase.php # modules/Activities/Popup_picker.php # modules/Administration/Diagnostic.php # modules/Administration/DiagnosticRun.php # modules/Administration/DisplayWarnings.php # modules/Administration/Locale.php # modules/Administration/RebuildFulltextIndices.php # modules/Administration/RebuildRelationship.php # modules/Administration/RepairFieldCasing.php # modules/Administration/RepairIndex.php # modules/Administration/RepairSeedUsers.php # modules/Administration/Upgrade.php # modules/Administration/UpgradeFields.php # modules/Administration/UpgradeWizard_commit.php # modules/Administration/index.tpl # modules/Administration/language/en_us.lang.php # modules/Administration/updater_utils.php # modules/Calendar/CalendarUtils.php # modules/Calendar/views/view.getgr.php # modules/Calls/Call.php # modules/Calls/Dashlets/MyCallsDashlet/MyCallsDashlet.php # modules/Campaigns/GenerateWebToLeadForm.php # modules/Campaigns/ProcessBouncedEmails.php # modules/Campaigns/Schedule.php # modules/Campaigns/WizardHome.php # modules/Campaigns/WizardMarketing.php # modules/Campaigns/language/en_us.lang.php # modules/Campaigns/utils.php # modules/Cases/Case.php # modules/Cases/views/view.edit.php # modules/Contacts/views/view.retrieveemail.php # modules/Currencies/Currency.php # modules/DocumentRevisions/DocumentRevision.php # modules/Documents/Document.php # modules/Documents/TreeData.php # modules/DynamicFields/UpgradeFields.php # modules/DynamicFields/templates/Fields/TemplateCurrency.php # modules/DynamicFields/templates/Fields/TemplateDecimal.php # modules/DynamicFields/templates/Fields/TemplateField.php # modules/DynamicFields/templates/Fields/TemplateFloat.php # modules/DynamicFields/templates/Fields/TemplateInt.php # modules/EAPM/EAPM.php # modules/EmailMan/EmailMan.php # modules/EmailMarketing/EmailMarketing.php # modules/EmailTemplates/EmailTemplate.php # modules/Emails/Email.php # modules/Emails/EmailUI.php # modules/Emails/EmailUIAjax.php # modules/Emails/ListViewGroup.php # modules/Emails/templates/addressSearch.tpl # modules/Emails/templates/advancedSearch.tpl # modules/FP_events/controller.php # modules/FP_events/responseEntryPoint.php # modules/Favorites/Favorites.php # modules/Home/UnifiedSearchAdvanced.php # modules/Import/UsersLastImport.php # modules/Import/views/view.last.php # modules/InboundEmail/InboundEmail.php # modules/Leads/Lead.php # modules/Meetings/Dashlets/MyMeetingsDashlet/MyMeetingsDashlet.php # modules/Meetings/Meeting.php # modules/Meetings/language/en_us.lang.php # modules/Meetings/views/view.listbytype.php # modules/MySettings/StoreQuery.php # modules/OAuthTokens/OAuthToken.php # modules/Opportunities/Opportunity.php # modules/Opportunities/OpportunityFormBase.php # modules/Project/Project.php # modules/Project/controller.php # modules/Project/delete_project_tasks.php # modules/Project/language/en_us.lang.php # modules/Project/views/view.ganttchart.php # modules/ProjectTask/ProjectTask.php # modules/ProjectTask/views/view.list.php # modules/ProspectLists/ProspectList.php # modules/ProspectLists/TargetListUpdate.php # modules/Prospects/Prospect.php # modules/Relationships/RelationshipHandler.php # modules/Releases/Release.php # modules/Roles/Role.php # modules/SavedSearch/SavedSearch.php # modules/SavedSearch/UpgradeSavedSearch.php # modules/Schedulers/Scheduler.php # modules/Schedulers/views/view.detail.php # modules/Schedulers/views/view.edit.php # modules/SchedulersJobs/SchedulersJob.php # modules/SecurityGroups/AssignGroups.php # modules/SecurityGroups/SaveSecurityGroupUserRelationship.php # modules/SecurityGroups/SecurityGroup.php # modules/SecurityGroups/language/en_us.lang.php # modules/Studio/config.php # modules/SugarFeed/Dashlets/SugarFeedDashlet/SugarFeedDashlet.php # modules/SugarFeed/SugarFeed.php # modules/SugarFeed/SugarFeedFlush.php # modules/Tasks/Task.php # modules/Trackers/BreadCrumbStack.php # modules/Trackers/store/DatabaseStore.php # modules/Trackers/store/TrackerQueriesDatabaseStore.php # modules/Trackers/store/TrackerSessionsDatabaseStore.php # modules/UpgradeWizard/layouts.php # modules/UpgradeWizard/silentUpgrade_dce_step1.php # modules/UpgradeWizard/silentUpgrade_dce_step2.php # modules/UpgradeWizard/silentUpgrade_step1.php # modules/UpgradeWizard/silentUpgrade_step2.php # modules/UpgradeWizard/uw_ajax.php # modules/UpgradeWizard/uw_main.tpl # modules/UpgradeWizard/uw_utils.php # modules/UserPreferences/UserPreference.php # modules/Users/ChangePassword.php # modules/Users/Changenewpassword.php # modules/Users/Error.php # modules/Users/Save.php # modules/Users/User.php # modules/Users/authentication/EmailAuthenticate/EmailAuthenticateUser.php # modules/Users/authentication/LDAPAuthenticate/LDAPAuthenticateUser.php # modules/Users/language/en_us.lang.php # modules/Users/reassignUserRecords.php # modules/Users/tpls/EditViewFooter.tpl # modules/Users/views/view.edit.php # modules/jjwg_Address_Cache/jjwg_Address_Cache.php # modules/jjwg_Areas/jjwg_Areas.php # modules/jjwg_Maps/jjwg_Maps.php # modules/jjwg_Markers/jjwg_Markers.php # modules/vCals/vCal.php # service/core/SoapHelperWebService.php # service/core/SugarWebServiceImpl.php # service/v3/SugarWebServiceImplv3.php # service/v3/SugarWebServiceUtilv3.php # service/v3_1/SugarWebServiceImplv3_1.php # service/v4/SugarWebServiceImplv4.php # service/v4/SugarWebServiceUtilv4.php # service/v4_1/SugarWebServiceImplv4_1.php # soap/SoapData.php # soap/SoapDeprecated.php # soap/SoapHelperFunctions.php # soap/SoapPortalHelper.php # soap/SoapPortalUsers.php # soap/SoapRelationshipHelper.php # soap/SoapSugarUsers.php # suitecrm_version.php # tests/phpunit.xml.dist # tests/tests/configTest.php # tests/tests/include/MVC/Controller/ControllerFactoryTest.php # tests/tests/include/MVC/Controller/SugarControllerTest.php # tests/tests/include/MVC/SugarApplicationTest.php # tests/tests/include/MVC/SugarModuleTest.php # tests/tests/include/MVC/View/SugarViewTest.php # tests/tests/include/MVC/View/ViewFactoryTest.php # tests/tests/include/MVC/View/views/view.ajaxTest.php # tests/tests/include/MVC/View/views/view.ajaxuiTest.php # tests/tests/include/MVC/View/views/view.classicTest.php # tests/tests/include/MVC/View/views/view.detailTest.php # tests/tests/include/MVC/View/views/view.editTest.php # tests/tests/include/MVC/View/views/view.favoritesTest.php # tests/tests/include/MVC/View/views/view.htmlTest.php # tests/tests/include/MVC/View/views/view.importvcardTest.php # tests/tests/include/MVC/View/views/view.importvcardsaveTest.php # tests/tests/include/MVC/View/views/view.jsonTest.php # tests/tests/include/MVC/View/views/view.listTest.php # tests/tests/include/MVC/View/views/view.metadataTest.php # tests/tests/include/MVC/View/views/view.modulelistmenuTest.php # tests/tests/include/MVC/View/views/view.multieditTest.php # tests/tests/include/MVC/View/views/view.noaccessTest.php # tests/tests/include/MVC/View/views/view.popupTest.php # tests/tests/include/MVC/View/views/view.quickTest.php # tests/tests/include/MVC/View/views/view.quickcreateTest.php # tests/tests/include/MVC/View/views/view.quickeditTest.php # tests/tests/include/MVC/View/views/view.serializedTest.php # tests/tests/include/MVC/View/views/view.sugarpdfTest.php # tests/tests/include/MVC/View/views/view.vcardTest.php # tests/tests/include/MVC/View/views/view.xmlTest.php # tests/tests/include/utils/LogicHookTest.php # tests/tests/include/utils/activityUtilsTest.php # tests/tests/include/utils/arrayUtilsTest.php # tests/tests/include/utils/autoloaderTest.php # tests/tests/include/utils/dbUtilsTest.php # tests/tests/include/utils/encryptionUtilsTest.php # tests/tests/include/utils/fileUtilsTest.php # tests/tests/include/utils/layoutUtilsTest.php # tests/tests/include/utils/logicUtilsTest.php # tests/tests/include/utils/mvcUtilsTest.php # tests/tests/include/utils/phpZipUtilsTest.php # tests/tests/include/utils/progressBarUtilsTest.php # tests/tests/include/utils/securityUtilsTest.php # tests/tests/include/utils/sugarFileUtilsTest.php # tests/tests/include/utils/zipUtilsTest.php # tests/tests/modules/ACLActions/ACLActionTest.php # tests/tests/modules/ACLRoles/ACLRoleTest.php # tests/tests/modules/AM_ProjectTemplates/AM_ProjectTemplatesTest.php # tests/tests/modules/AM_TaskTemplates/AM_TaskTemplatesTest.php # tests/tests/modules/AOD_Index/AOD_IndexTest.php # tests/tests/modules/AOD_IndexEvent/AOD_IndexEventTest.php # tests/tests/modules/AOK_KnowledgeBase/AOK_KnowledgeBaseTest.php # tests/tests/modules/AOK_Knowledge_Base_Categories/AOK_Knowledge_Base_CategoriesTest.php # tests/tests/modules/AOP_Case_Events/AOP_Case_EventsTest.php # tests/tests/modules/AOP_Case_Updates/AOP_Case_UpdatesTest.php # tests/tests/modules/AOR_Charts/AOR_ChartTest.php # tests/tests/modules/AOR_Conditions/AOR_ConditionTest.php # tests/tests/modules/AOR_Fields/AOR_FieldTest.php # tests/tests/modules/AOR_Reports/AOR_ReportTest.php # tests/tests/modules/AOR_Scheduled_Reports/AOR_Scheduled_ReportsTest.php # tests/tests/modules/AOS_Contracts/AOS_ContractsTest.php # tests/tests/modules/AOS_Invoices/AOS_InvoicesTest.php # tests/tests/modules/AOS_Line_Item_Groups/AOS_Line_Item_GroupsTest.php # tests/tests/modules/AOS_PDF_Templates/AOS_PDF_TemplatesTest.php # tests/tests/modules/AOS_Product_Categories/AOS_Product_CategoriesTest.php # tests/tests/modules/AOS_Products/AOS_ProductsTest.php # tests/tests/modules/AOS_Products_Quotes/AOS_Products_QuotesTest.php # tests/tests/modules/AOS_Quotes/AOS_QuotesTest.php # tests/tests/modules/AOW_Actions/AOW_ActionTest.php # tests/tests/modules/AOW_Conditions/AOW_ConditionTest.php # tests/tests/modules/AOW_Processed/AOW_ProcessedTest.php # tests/tests/modules/AOW_WorkFlow/AOW_WorkFlowTest.php # tests/tests/modules/Accounts/AccountTest.php # tests/tests/modules/Administration/AdministrationTest.php # tests/tests/modules/Alerts/AlertTest.php # tests/tests/modules/Audit/AuditTest.php # tests/tests/modules/Bugs/BugTest.php # tests/tests/modules/Calls/CallTest.php # tests/tests/modules/Calls_Reschedule/Calls_RescheduleTest.php # tests/tests/modules/CampaignLog/CampaignLogTest.php # tests/tests/modules/CampaignTrackers/CampaignTrackerTest.php # tests/tests/modules/Campaigns/CampaignTest.php # tests/tests/modules/Cases/CaseTest.php # tests/tests/modules/Contacts/ContactTest.php # tests/tests/modules/Currencies/CurrencyTest.php # tests/tests/modules/DocumentRevisions/DocumentRevisionTest.php # tests/tests/modules/Documents/DocumentTest.php # tests/tests/modules/EAPM/EAPMTest.php # tests/tests/modules/EmailAddresses/EmailAddressTest.php # tests/tests/modules/EmailMan/EmailManTest.php # tests/tests/modules/EmailMarketing/EmailMarketingTest.php # tests/tests/modules/EmailTemplates/EmailTemplateTest.php # tests/tests/modules/EmailText/EmailTextTest.php # tests/tests/modules/Emails/EmailTest.php # tests/tests/modules/Employees/EmployeeTest.php # tests/tests/modules/FP_Event_Locations/FP_Event_LocationsTest.php # tests/tests/modules/FP_events/FP_eventsTest.php # tests/tests/modules/Favorites/FavoritesTest.php # tests/tests/modules/Groups/GroupTest.php # tests/tests/modules/InboundEmail/InboundEmailTest.php # tests/tests/modules/Leads/LeadTest.php # tests/tests/modules/Meetings/MeetingTest.php # tests/tests/modules/MergeRecords/MergeRecordTest.php # tests/tests/modules/Notes/NoteTest.php # tests/tests/modules/OAuthKeys/OAuthKeyTest.php # tests/tests/modules/OAuthTokens/OAuthTokenTest.php # tests/tests/modules/Opportunities/OpportunityTest.php # tests/tests/modules/Project/ProjectTest.php # tests/tests/modules/ProjectTask/ProjectTaskTest.php # tests/tests/modules/ProspectLists/ProspectListTest.php # tests/tests/modules/Prospects/ProspectTest.php # tests/tests/modules/Relationships/RelationshipTest.php # tests/tests/modules/Releases/ReleaseTest.php # tests/tests/modules/Roles/RoleTest.php # tests/tests/modules/SavedSearch/SavedSearchTest.php # tests/tests/modules/Schedulers/SchedulerTest.php # tests/tests/modules/SchedulersJobs/SchedulersJobTest.php # tests/tests/modules/SecurityGroups/SecurityGroupTest.php # tests/tests/modules/SugarFeed/SugarFeedTest.php # tests/tests/modules/Tasks/TaskTest.php # tests/tests/modules/Trackers/TrackerTest.php # tests/tests/modules/UserPreferences/UserPreferenceTest.php # tests/tests/modules/Users/UserTest.php # tests/tests/modules/iCals/iCalTest.php # tests/tests/modules/jjwg_Address_Cache/jjwg_Address_CacheTest.php # tests/tests/modules/jjwg_Areas/jjwg_AreasTest.php # tests/tests/modules/jjwg_Maps/jjwg_MapsTest.php # tests/tests/modules/jjwg_Markers/jjwg_MarkersTest.php # tests/tests/modules/vCals/vCalTest.php # themes/SuiteP/css/style.css # themes/SuiteP/include/SearchForm/tpls/header.tpl # themes/SuiteP/modules/Calendar/tpls/header.tpl
2018-08-31 12:58:25 +00:00
2018-07-12 10:40:10 +00:00
if (!isset($fields[$col]) && $col != 'id_c') {
if (!$simulate) {
$db->query("ALTER TABLE $mod->table_name" . "_cstm DROP COLUMN $col");
}
unset($fields[$col]);
echo "Dropping Column $col from $mod->table_name" . "_cstm for module $the_module<br>";
} else {
if ($col != 'id_c') {
if (trim($the_field->get_db_type()) != trim($type)) {
echo "Fixing Column Type for $col changing $type to ". $the_field->get_db_type() . "<br>";
if (!$simulate) {
$db->query($the_field->get_db_modify_alter_table($mod->table_name . '_cstm'));
}
}
}
Merge branch 'hotfix-7.8.x' into hotfix # Conflicts: # .gitignore # .travis.yml # ModuleInstall/ModuleScanner.php # README.md # composer.json # composer.lock # data/Link2.php # data/Relationships/M2MRelationship.php # data/Relationships/One2MBeanRelationship.php # data/SugarBean.php # include/EditView/SugarVCR.php # include/InlineEditing/InlineEditing.php # include/InlineEditing/inlineEditing.js # include/ListView/ListViewData.php # include/ListView/ListViewDisplay.php # include/ListView/ListViewSmarty.php # include/MVC/SugarApplication.php # include/MVC/View/SugarView.php # include/MVC/View/views/view.list.php # include/MVC/View/views/view.sugarpdf.php # include/MassUpdate.php # include/Popups/PopupSmarty.php # include/SearchForm/SearchForm.php # include/SearchForm/SearchForm2.php # include/StateChecker.php # include/StateCheckerCestAbstract.php # include/StateCheckerCodeceptionTrait.php # include/StateCheckerConfig.php # include/StateCheckerPHPUnitTestCaseAbstract.php # include/StateCheckerTrait.php # include/StateCheckerUnitAbstract.php # include/StateSaver.php # include/SugarEmailAddress/SugarEmailAddress.php # include/SugarFields/Fields/Address/DetailView.tpl # include/SugarFields/Fields/Address/en_us.DetailView.tpl # include/SugarObjects/forms/PersonFormBase.php # include/SugarTheme/SugarTheme.php # include/Sugarpdf/Sugarpdf.php # include/TimeDate.php # include/database/DBManager.php # include/entryPoint.php # include/generic/LayoutManager.php # include/generic/Save2.php # include/generic/SugarWidgets/SugarWidgetFieldcurrency.php # include/generic/SugarWidgets/SugarWidgetFieldenum.php # include/generic/SugarWidgets/SugarWidgetFieldfloat.php # include/generic/SugarWidgets/SugarWidgetFieldid.php # include/generic/SugarWidgets/SugarWidgetFieldint.php # include/generic/SugarWidgets/SugarWidgetFieldmultienum.php # include/generic/SugarWidgets/SugarWidgetFieldname.php # include/generic/SugarWidgets/SugarWidgetFieldsingleenum.php # include/generic/SugarWidgets/SugarWidgetFieldtext.php # include/generic/SugarWidgets/SugarWidgetFielduser_name.php # include/generic/SugarWidgets/SugarWidgetFieldvarchar.php # include/generic/SugarWidgets/SugarWidgetReportField.php # include/generic/SugarWidgets/SugarWidgetSubPanelConcat.php # include/generic/SugarWidgets/SugarWidgetSubPanelEditRoleButton.php # include/generic/SugarWidgets/SugarWidgetSubPanelEditSecurityGroupUserButton.php # include/generic/SugarWidgets/SugarWidgetSubPanelRelFieldEditButton.php # include/generic/SugarWidgets/SugarWidgetSubPanelRemoveButtonAccount.php # include/generic/SugarWidgets/SugarWidgetSubPanelRemoveButtonProjects.php # include/javascript/jsAlerts.php # include/language/en_us.lang.php # include/nusoap/nusoap.php # include/social/hooks.php # include/upload_file.php # include/utils.php # include/utils/db_utils.php # include/utils/file_utils.php # include/utils/layout_utils.php # include/utils/logic_utils.php # include/utils/mvc_utils.php # include/utils/security_utils.php # install/install_utils.php # install/seed_data/quotes_SeedData.php # modules/ACL/ACLController.php # modules/ACLActions/ACLAction.php # modules/ACLRoles/ACLRole.php # modules/AM_ProjectTemplates/controller.php # modules/AM_ProjectTemplates/views/view.ganttchart.php # modules/AOD_Index/views/view.indexdata.php # modules/AOD_IndexEvent/AOD_IndexEvent_sugar.php # modules/AOP_Case_Updates/AOPAssignManager.php # modules/AOP_Case_Updates/CaseUpdatesHook.php # modules/AOR_Conditions/AOR_Condition.php # modules/AOR_Fields/AOR_Field.php # modules/AOR_Reports/AOR_Report.js # modules/AOR_Reports/AOR_Report.php # modules/AOR_Reports/Menu.php # modules/AOR_Reports/aor_utils.php # modules/AOR_Reports/controller.php # modules/AOR_Reports/views/view.detail.php # modules/AOS_Contracts/AOS_Contracts.php # modules/AOS_Line_Item_Groups/AOS_Line_Item_Groups.php # modules/AOS_PDF_Templates/generatePdf.php # modules/AOS_Products_Quotes/AOS_Products_Quotes.php # modules/AOS_Products_Quotes/AOS_Utils.php # modules/AOS_Quotes/converToInvoice.php # modules/AOS_Quotes/createContract.php # modules/AOW_Actions/AOW_Action.php # modules/AOW_Actions/actions/templateParser.php # modules/AOW_Conditions/AOW_Condition.php # modules/AOW_WorkFlow/AOW_WorkFlow.php # modules/AOW_WorkFlow/aow_utils.php # modules/Accounts/AccountFormBase.php # modules/Activities/Popup_picker.php # modules/Administration/Diagnostic.php # modules/Administration/DiagnosticRun.php # modules/Administration/DisplayWarnings.php # modules/Administration/Locale.php # modules/Administration/RebuildFulltextIndices.php # modules/Administration/RebuildRelationship.php # modules/Administration/RepairFieldCasing.php # modules/Administration/RepairIndex.php # modules/Administration/RepairSeedUsers.php # modules/Administration/Upgrade.php # modules/Administration/UpgradeFields.php # modules/Administration/UpgradeWizard_commit.php # modules/Administration/index.tpl # modules/Administration/language/en_us.lang.php # modules/Administration/updater_utils.php # modules/Calendar/CalendarUtils.php # modules/Calendar/views/view.getgr.php # modules/Calls/Call.php # modules/Calls/Dashlets/MyCallsDashlet/MyCallsDashlet.php # modules/Campaigns/GenerateWebToLeadForm.php # modules/Campaigns/ProcessBouncedEmails.php # modules/Campaigns/Schedule.php # modules/Campaigns/WizardHome.php # modules/Campaigns/WizardMarketing.php # modules/Campaigns/language/en_us.lang.php # modules/Campaigns/utils.php # modules/Cases/Case.php # modules/Cases/views/view.edit.php # modules/Contacts/views/view.retrieveemail.php # modules/Currencies/Currency.php # modules/DocumentRevisions/DocumentRevision.php # modules/Documents/Document.php # modules/Documents/TreeData.php # modules/DynamicFields/UpgradeFields.php # modules/DynamicFields/templates/Fields/TemplateCurrency.php # modules/DynamicFields/templates/Fields/TemplateDecimal.php # modules/DynamicFields/templates/Fields/TemplateField.php # modules/DynamicFields/templates/Fields/TemplateFloat.php # modules/DynamicFields/templates/Fields/TemplateInt.php # modules/EAPM/EAPM.php # modules/EmailMan/EmailMan.php # modules/EmailMarketing/EmailMarketing.php # modules/EmailTemplates/EmailTemplate.php # modules/Emails/Email.php # modules/Emails/EmailUI.php # modules/Emails/EmailUIAjax.php # modules/Emails/ListViewGroup.php # modules/Emails/templates/addressSearch.tpl # modules/Emails/templates/advancedSearch.tpl # modules/FP_events/controller.php # modules/FP_events/responseEntryPoint.php # modules/Favorites/Favorites.php # modules/Home/UnifiedSearchAdvanced.php # modules/Import/UsersLastImport.php # modules/Import/views/view.last.php # modules/InboundEmail/InboundEmail.php # modules/Leads/Lead.php # modules/Meetings/Dashlets/MyMeetingsDashlet/MyMeetingsDashlet.php # modules/Meetings/Meeting.php # modules/Meetings/language/en_us.lang.php # modules/Meetings/views/view.listbytype.php # modules/MySettings/StoreQuery.php # modules/OAuthTokens/OAuthToken.php # modules/Opportunities/Opportunity.php # modules/Opportunities/OpportunityFormBase.php # modules/Project/Project.php # modules/Project/controller.php # modules/Project/delete_project_tasks.php # modules/Project/language/en_us.lang.php # modules/Project/views/view.ganttchart.php # modules/ProjectTask/ProjectTask.php # modules/ProjectTask/views/view.list.php # modules/ProspectLists/ProspectList.php # modules/ProspectLists/TargetListUpdate.php # modules/Prospects/Prospect.php # modules/Relationships/RelationshipHandler.php # modules/Releases/Release.php # modules/Roles/Role.php # modules/SavedSearch/SavedSearch.php # modules/SavedSearch/UpgradeSavedSearch.php # modules/Schedulers/Scheduler.php # modules/Schedulers/views/view.detail.php # modules/Schedulers/views/view.edit.php # modules/SchedulersJobs/SchedulersJob.php # modules/SecurityGroups/AssignGroups.php # modules/SecurityGroups/SaveSecurityGroupUserRelationship.php # modules/SecurityGroups/SecurityGroup.php # modules/SecurityGroups/language/en_us.lang.php # modules/Studio/config.php # modules/SugarFeed/Dashlets/SugarFeedDashlet/SugarFeedDashlet.php # modules/SugarFeed/SugarFeed.php # modules/SugarFeed/SugarFeedFlush.php # modules/Tasks/Task.php # modules/Trackers/BreadCrumbStack.php # modules/Trackers/store/DatabaseStore.php # modules/Trackers/store/TrackerQueriesDatabaseStore.php # modules/Trackers/store/TrackerSessionsDatabaseStore.php # modules/UpgradeWizard/layouts.php # modules/UpgradeWizard/silentUpgrade_dce_step1.php # modules/UpgradeWizard/silentUpgrade_dce_step2.php # modules/UpgradeWizard/silentUpgrade_step1.php # modules/UpgradeWizard/silentUpgrade_step2.php # modules/UpgradeWizard/uw_ajax.php # modules/UpgradeWizard/uw_main.tpl # modules/UpgradeWizard/uw_utils.php # modules/UserPreferences/UserPreference.php # modules/Users/ChangePassword.php # modules/Users/Changenewpassword.php # modules/Users/Error.php # modules/Users/Save.php # modules/Users/User.php # modules/Users/authentication/EmailAuthenticate/EmailAuthenticateUser.php # modules/Users/authentication/LDAPAuthenticate/LDAPAuthenticateUser.php # modules/Users/language/en_us.lang.php # modules/Users/reassignUserRecords.php # modules/Users/tpls/EditViewFooter.tpl # modules/Users/views/view.edit.php # modules/jjwg_Address_Cache/jjwg_Address_Cache.php # modules/jjwg_Areas/jjwg_Areas.php # modules/jjwg_Maps/jjwg_Maps.php # modules/jjwg_Markers/jjwg_Markers.php # modules/vCals/vCal.php # service/core/SoapHelperWebService.php # service/core/SugarWebServiceImpl.php # service/v3/SugarWebServiceImplv3.php # service/v3/SugarWebServiceUtilv3.php # service/v3_1/SugarWebServiceImplv3_1.php # service/v4/SugarWebServiceImplv4.php # service/v4/SugarWebServiceUtilv4.php # service/v4_1/SugarWebServiceImplv4_1.php # soap/SoapData.php # soap/SoapDeprecated.php # soap/SoapHelperFunctions.php # soap/SoapPortalHelper.php # soap/SoapPortalUsers.php # soap/SoapRelationshipHelper.php # soap/SoapSugarUsers.php # suitecrm_version.php # tests/phpunit.xml.dist # tests/tests/configTest.php # tests/tests/include/MVC/Controller/ControllerFactoryTest.php # tests/tests/include/MVC/Controller/SugarControllerTest.php # tests/tests/include/MVC/SugarApplicationTest.php # tests/tests/include/MVC/SugarModuleTest.php # tests/tests/include/MVC/View/SugarViewTest.php # tests/tests/include/MVC/View/ViewFactoryTest.php # tests/tests/include/MVC/View/views/view.ajaxTest.php # tests/tests/include/MVC/View/views/view.ajaxuiTest.php # tests/tests/include/MVC/View/views/view.classicTest.php # tests/tests/include/MVC/View/views/view.detailTest.php # tests/tests/include/MVC/View/views/view.editTest.php # tests/tests/include/MVC/View/views/view.favoritesTest.php # tests/tests/include/MVC/View/views/view.htmlTest.php # tests/tests/include/MVC/View/views/view.importvcardTest.php # tests/tests/include/MVC/View/views/view.importvcardsaveTest.php # tests/tests/include/MVC/View/views/view.jsonTest.php # tests/tests/include/MVC/View/views/view.listTest.php # tests/tests/include/MVC/View/views/view.metadataTest.php # tests/tests/include/MVC/View/views/view.modulelistmenuTest.php # tests/tests/include/MVC/View/views/view.multieditTest.php # tests/tests/include/MVC/View/views/view.noaccessTest.php # tests/tests/include/MVC/View/views/view.popupTest.php # tests/tests/include/MVC/View/views/view.quickTest.php # tests/tests/include/MVC/View/views/view.quickcreateTest.php # tests/tests/include/MVC/View/views/view.quickeditTest.php # tests/tests/include/MVC/View/views/view.serializedTest.php # tests/tests/include/MVC/View/views/view.sugarpdfTest.php # tests/tests/include/MVC/View/views/view.vcardTest.php # tests/tests/include/MVC/View/views/view.xmlTest.php # tests/tests/include/utils/LogicHookTest.php # tests/tests/include/utils/activityUtilsTest.php # tests/tests/include/utils/arrayUtilsTest.php # tests/tests/include/utils/autoloaderTest.php # tests/tests/include/utils/dbUtilsTest.php # tests/tests/include/utils/encryptionUtilsTest.php # tests/tests/include/utils/fileUtilsTest.php # tests/tests/include/utils/layoutUtilsTest.php # tests/tests/include/utils/logicUtilsTest.php # tests/tests/include/utils/mvcUtilsTest.php # tests/tests/include/utils/phpZipUtilsTest.php # tests/tests/include/utils/progressBarUtilsTest.php # tests/tests/include/utils/securityUtilsTest.php # tests/tests/include/utils/sugarFileUtilsTest.php # tests/tests/include/utils/zipUtilsTest.php # tests/tests/modules/ACLActions/ACLActionTest.php # tests/tests/modules/ACLRoles/ACLRoleTest.php # tests/tests/modules/AM_ProjectTemplates/AM_ProjectTemplatesTest.php # tests/tests/modules/AM_TaskTemplates/AM_TaskTemplatesTest.php # tests/tests/modules/AOD_Index/AOD_IndexTest.php # tests/tests/modules/AOD_IndexEvent/AOD_IndexEventTest.php # tests/tests/modules/AOK_KnowledgeBase/AOK_KnowledgeBaseTest.php # tests/tests/modules/AOK_Knowledge_Base_Categories/AOK_Knowledge_Base_CategoriesTest.php # tests/tests/modules/AOP_Case_Events/AOP_Case_EventsTest.php # tests/tests/modules/AOP_Case_Updates/AOP_Case_UpdatesTest.php # tests/tests/modules/AOR_Charts/AOR_ChartTest.php # tests/tests/modules/AOR_Conditions/AOR_ConditionTest.php # tests/tests/modules/AOR_Fields/AOR_FieldTest.php # tests/tests/modules/AOR_Reports/AOR_ReportTest.php # tests/tests/modules/AOR_Scheduled_Reports/AOR_Scheduled_ReportsTest.php # tests/tests/modules/AOS_Contracts/AOS_ContractsTest.php # tests/tests/modules/AOS_Invoices/AOS_InvoicesTest.php # tests/tests/modules/AOS_Line_Item_Groups/AOS_Line_Item_GroupsTest.php # tests/tests/modules/AOS_PDF_Templates/AOS_PDF_TemplatesTest.php # tests/tests/modules/AOS_Product_Categories/AOS_Product_CategoriesTest.php # tests/tests/modules/AOS_Products/AOS_ProductsTest.php # tests/tests/modules/AOS_Products_Quotes/AOS_Products_QuotesTest.php # tests/tests/modules/AOS_Quotes/AOS_QuotesTest.php # tests/tests/modules/AOW_Actions/AOW_ActionTest.php # tests/tests/modules/AOW_Conditions/AOW_ConditionTest.php # tests/tests/modules/AOW_Processed/AOW_ProcessedTest.php # tests/tests/modules/AOW_WorkFlow/AOW_WorkFlowTest.php # tests/tests/modules/Accounts/AccountTest.php # tests/tests/modules/Administration/AdministrationTest.php # tests/tests/modules/Alerts/AlertTest.php # tests/tests/modules/Audit/AuditTest.php # tests/tests/modules/Bugs/BugTest.php # tests/tests/modules/Calls/CallTest.php # tests/tests/modules/Calls_Reschedule/Calls_RescheduleTest.php # tests/tests/modules/CampaignLog/CampaignLogTest.php # tests/tests/modules/CampaignTrackers/CampaignTrackerTest.php # tests/tests/modules/Campaigns/CampaignTest.php # tests/tests/modules/Cases/CaseTest.php # tests/tests/modules/Contacts/ContactTest.php # tests/tests/modules/Currencies/CurrencyTest.php # tests/tests/modules/DocumentRevisions/DocumentRevisionTest.php # tests/tests/modules/Documents/DocumentTest.php # tests/tests/modules/EAPM/EAPMTest.php # tests/tests/modules/EmailAddresses/EmailAddressTest.php # tests/tests/modules/EmailMan/EmailManTest.php # tests/tests/modules/EmailMarketing/EmailMarketingTest.php # tests/tests/modules/EmailTemplates/EmailTemplateTest.php # tests/tests/modules/EmailText/EmailTextTest.php # tests/tests/modules/Emails/EmailTest.php # tests/tests/modules/Employees/EmployeeTest.php # tests/tests/modules/FP_Event_Locations/FP_Event_LocationsTest.php # tests/tests/modules/FP_events/FP_eventsTest.php # tests/tests/modules/Favorites/FavoritesTest.php # tests/tests/modules/Groups/GroupTest.php # tests/tests/modules/InboundEmail/InboundEmailTest.php # tests/tests/modules/Leads/LeadTest.php # tests/tests/modules/Meetings/MeetingTest.php # tests/tests/modules/MergeRecords/MergeRecordTest.php # tests/tests/modules/Notes/NoteTest.php # tests/tests/modules/OAuthKeys/OAuthKeyTest.php # tests/tests/modules/OAuthTokens/OAuthTokenTest.php # tests/tests/modules/Opportunities/OpportunityTest.php # tests/tests/modules/Project/ProjectTest.php # tests/tests/modules/ProjectTask/ProjectTaskTest.php # tests/tests/modules/ProspectLists/ProspectListTest.php # tests/tests/modules/Prospects/ProspectTest.php # tests/tests/modules/Relationships/RelationshipTest.php # tests/tests/modules/Releases/ReleaseTest.php # tests/tests/modules/Roles/RoleTest.php # tests/tests/modules/SavedSearch/SavedSearchTest.php # tests/tests/modules/Schedulers/SchedulerTest.php # tests/tests/modules/SchedulersJobs/SchedulersJobTest.php # tests/tests/modules/SecurityGroups/SecurityGroupTest.php # tests/tests/modules/SugarFeed/SugarFeedTest.php # tests/tests/modules/Tasks/TaskTest.php # tests/tests/modules/Trackers/TrackerTest.php # tests/tests/modules/UserPreferences/UserPreferenceTest.php # tests/tests/modules/Users/UserTest.php # tests/tests/modules/iCals/iCalTest.php # tests/tests/modules/jjwg_Address_Cache/jjwg_Address_CacheTest.php # tests/tests/modules/jjwg_Areas/jjwg_AreasTest.php # tests/tests/modules/jjwg_Maps/jjwg_MapsTest.php # tests/tests/modules/jjwg_Markers/jjwg_MarkersTest.php # tests/tests/modules/vCals/vCalTest.php # themes/SuiteP/css/style.css # themes/SuiteP/include/SearchForm/tpls/header.tpl # themes/SuiteP/modules/Calendar/tpls/header.tpl
2018-08-31 12:58:25 +00:00
2018-07-12 10:40:10 +00:00
unset($fields[$col]);
}
}
Merge branch 'hotfix-7.8.x' into hotfix # Conflicts: # .gitignore # .travis.yml # ModuleInstall/ModuleScanner.php # README.md # composer.json # composer.lock # data/Link2.php # data/Relationships/M2MRelationship.php # data/Relationships/One2MBeanRelationship.php # data/SugarBean.php # include/EditView/SugarVCR.php # include/InlineEditing/InlineEditing.php # include/InlineEditing/inlineEditing.js # include/ListView/ListViewData.php # include/ListView/ListViewDisplay.php # include/ListView/ListViewSmarty.php # include/MVC/SugarApplication.php # include/MVC/View/SugarView.php # include/MVC/View/views/view.list.php # include/MVC/View/views/view.sugarpdf.php # include/MassUpdate.php # include/Popups/PopupSmarty.php # include/SearchForm/SearchForm.php # include/SearchForm/SearchForm2.php # include/StateChecker.php # include/StateCheckerCestAbstract.php # include/StateCheckerCodeceptionTrait.php # include/StateCheckerConfig.php # include/StateCheckerPHPUnitTestCaseAbstract.php # include/StateCheckerTrait.php # include/StateCheckerUnitAbstract.php # include/StateSaver.php # include/SugarEmailAddress/SugarEmailAddress.php # include/SugarFields/Fields/Address/DetailView.tpl # include/SugarFields/Fields/Address/en_us.DetailView.tpl # include/SugarObjects/forms/PersonFormBase.php # include/SugarTheme/SugarTheme.php # include/Sugarpdf/Sugarpdf.php # include/TimeDate.php # include/database/DBManager.php # include/entryPoint.php # include/generic/LayoutManager.php # include/generic/Save2.php # include/generic/SugarWidgets/SugarWidgetFieldcurrency.php # include/generic/SugarWidgets/SugarWidgetFieldenum.php # include/generic/SugarWidgets/SugarWidgetFieldfloat.php # include/generic/SugarWidgets/SugarWidgetFieldid.php # include/generic/SugarWidgets/SugarWidgetFieldint.php # include/generic/SugarWidgets/SugarWidgetFieldmultienum.php # include/generic/SugarWidgets/SugarWidgetFieldname.php # include/generic/SugarWidgets/SugarWidgetFieldsingleenum.php # include/generic/SugarWidgets/SugarWidgetFieldtext.php # include/generic/SugarWidgets/SugarWidgetFielduser_name.php # include/generic/SugarWidgets/SugarWidgetFieldvarchar.php # include/generic/SugarWidgets/SugarWidgetReportField.php # include/generic/SugarWidgets/SugarWidgetSubPanelConcat.php # include/generic/SugarWidgets/SugarWidgetSubPanelEditRoleButton.php # include/generic/SugarWidgets/SugarWidgetSubPanelEditSecurityGroupUserButton.php # include/generic/SugarWidgets/SugarWidgetSubPanelRelFieldEditButton.php # include/generic/SugarWidgets/SugarWidgetSubPanelRemoveButtonAccount.php # include/generic/SugarWidgets/SugarWidgetSubPanelRemoveButtonProjects.php # include/javascript/jsAlerts.php # include/language/en_us.lang.php # include/nusoap/nusoap.php # include/social/hooks.php # include/upload_file.php # include/utils.php # include/utils/db_utils.php # include/utils/file_utils.php # include/utils/layout_utils.php # include/utils/logic_utils.php # include/utils/mvc_utils.php # include/utils/security_utils.php # install/install_utils.php # install/seed_data/quotes_SeedData.php # modules/ACL/ACLController.php # modules/ACLActions/ACLAction.php # modules/ACLRoles/ACLRole.php # modules/AM_ProjectTemplates/controller.php # modules/AM_ProjectTemplates/views/view.ganttchart.php # modules/AOD_Index/views/view.indexdata.php # modules/AOD_IndexEvent/AOD_IndexEvent_sugar.php # modules/AOP_Case_Updates/AOPAssignManager.php # modules/AOP_Case_Updates/CaseUpdatesHook.php # modules/AOR_Conditions/AOR_Condition.php # modules/AOR_Fields/AOR_Field.php # modules/AOR_Reports/AOR_Report.js # modules/AOR_Reports/AOR_Report.php # modules/AOR_Reports/Menu.php # modules/AOR_Reports/aor_utils.php # modules/AOR_Reports/controller.php # modules/AOR_Reports/views/view.detail.php # modules/AOS_Contracts/AOS_Contracts.php # modules/AOS_Line_Item_Groups/AOS_Line_Item_Groups.php # modules/AOS_PDF_Templates/generatePdf.php # modules/AOS_Products_Quotes/AOS_Products_Quotes.php # modules/AOS_Products_Quotes/AOS_Utils.php # modules/AOS_Quotes/converToInvoice.php # modules/AOS_Quotes/createContract.php # modules/AOW_Actions/AOW_Action.php # modules/AOW_Actions/actions/templateParser.php # modules/AOW_Conditions/AOW_Condition.php # modules/AOW_WorkFlow/AOW_WorkFlow.php # modules/AOW_WorkFlow/aow_utils.php # modules/Accounts/AccountFormBase.php # modules/Activities/Popup_picker.php # modules/Administration/Diagnostic.php # modules/Administration/DiagnosticRun.php # modules/Administration/DisplayWarnings.php # modules/Administration/Locale.php # modules/Administration/RebuildFulltextIndices.php # modules/Administration/RebuildRelationship.php # modules/Administration/RepairFieldCasing.php # modules/Administration/RepairIndex.php # modules/Administration/RepairSeedUsers.php # modules/Administration/Upgrade.php # modules/Administration/UpgradeFields.php # modules/Administration/UpgradeWizard_commit.php # modules/Administration/index.tpl # modules/Administration/language/en_us.lang.php # modules/Administration/updater_utils.php # modules/Calendar/CalendarUtils.php # modules/Calendar/views/view.getgr.php # modules/Calls/Call.php # modules/Calls/Dashlets/MyCallsDashlet/MyCallsDashlet.php # modules/Campaigns/GenerateWebToLeadForm.php # modules/Campaigns/ProcessBouncedEmails.php # modules/Campaigns/Schedule.php # modules/Campaigns/WizardHome.php # modules/Campaigns/WizardMarketing.php # modules/Campaigns/language/en_us.lang.php # modules/Campaigns/utils.php # modules/Cases/Case.php # modules/Cases/views/view.edit.php # modules/Contacts/views/view.retrieveemail.php # modules/Currencies/Currency.php # modules/DocumentRevisions/DocumentRevision.php # modules/Documents/Document.php # modules/Documents/TreeData.php # modules/DynamicFields/UpgradeFields.php # modules/DynamicFields/templates/Fields/TemplateCurrency.php # modules/DynamicFields/templates/Fields/TemplateDecimal.php # modules/DynamicFields/templates/Fields/TemplateField.php # modules/DynamicFields/templates/Fields/TemplateFloat.php # modules/DynamicFields/templates/Fields/TemplateInt.php # modules/EAPM/EAPM.php # modules/EmailMan/EmailMan.php # modules/EmailMarketing/EmailMarketing.php # modules/EmailTemplates/EmailTemplate.php # modules/Emails/Email.php # modules/Emails/EmailUI.php # modules/Emails/EmailUIAjax.php # modules/Emails/ListViewGroup.php # modules/Emails/templates/addressSearch.tpl # modules/Emails/templates/advancedSearch.tpl # modules/FP_events/controller.php # modules/FP_events/responseEntryPoint.php # modules/Favorites/Favorites.php # modules/Home/UnifiedSearchAdvanced.php # modules/Import/UsersLastImport.php # modules/Import/views/view.last.php # modules/InboundEmail/InboundEmail.php # modules/Leads/Lead.php # modules/Meetings/Dashlets/MyMeetingsDashlet/MyMeetingsDashlet.php # modules/Meetings/Meeting.php # modules/Meetings/language/en_us.lang.php # modules/Meetings/views/view.listbytype.php # modules/MySettings/StoreQuery.php # modules/OAuthTokens/OAuthToken.php # modules/Opportunities/Opportunity.php # modules/Opportunities/OpportunityFormBase.php # modules/Project/Project.php # modules/Project/controller.php # modules/Project/delete_project_tasks.php # modules/Project/language/en_us.lang.php # modules/Project/views/view.ganttchart.php # modules/ProjectTask/ProjectTask.php # modules/ProjectTask/views/view.list.php # modules/ProspectLists/ProspectList.php # modules/ProspectLists/TargetListUpdate.php # modules/Prospects/Prospect.php # modules/Relationships/RelationshipHandler.php # modules/Releases/Release.php # modules/Roles/Role.php # modules/SavedSearch/SavedSearch.php # modules/SavedSearch/UpgradeSavedSearch.php # modules/Schedulers/Scheduler.php # modules/Schedulers/views/view.detail.php # modules/Schedulers/views/view.edit.php # modules/SchedulersJobs/SchedulersJob.php # modules/SecurityGroups/AssignGroups.php # modules/SecurityGroups/SaveSecurityGroupUserRelationship.php # modules/SecurityGroups/SecurityGroup.php # modules/SecurityGroups/language/en_us.lang.php # modules/Studio/config.php # modules/SugarFeed/Dashlets/SugarFeedDashlet/SugarFeedDashlet.php # modules/SugarFeed/SugarFeed.php # modules/SugarFeed/SugarFeedFlush.php # modules/Tasks/Task.php # modules/Trackers/BreadCrumbStack.php # modules/Trackers/store/DatabaseStore.php # modules/Trackers/store/TrackerQueriesDatabaseStore.php # modules/Trackers/store/TrackerSessionsDatabaseStore.php # modules/UpgradeWizard/layouts.php # modules/UpgradeWizard/silentUpgrade_dce_step1.php # modules/UpgradeWizard/silentUpgrade_dce_step2.php # modules/UpgradeWizard/silentUpgrade_step1.php # modules/UpgradeWizard/silentUpgrade_step2.php # modules/UpgradeWizard/uw_ajax.php # modules/UpgradeWizard/uw_main.tpl # modules/UpgradeWizard/uw_utils.php # modules/UserPreferences/UserPreference.php # modules/Users/ChangePassword.php # modules/Users/Changenewpassword.php # modules/Users/Error.php # modules/Users/Save.php # modules/Users/User.php # modules/Users/authentication/EmailAuthenticate/EmailAuthenticateUser.php # modules/Users/authentication/LDAPAuthenticate/LDAPAuthenticateUser.php # modules/Users/language/en_us.lang.php # modules/Users/reassignUserRecords.php # modules/Users/tpls/EditViewFooter.tpl # modules/Users/views/view.edit.php # modules/jjwg_Address_Cache/jjwg_Address_Cache.php # modules/jjwg_Areas/jjwg_Areas.php # modules/jjwg_Maps/jjwg_Maps.php # modules/jjwg_Markers/jjwg_Markers.php # modules/vCals/vCal.php # service/core/SoapHelperWebService.php # service/core/SugarWebServiceImpl.php # service/v3/SugarWebServiceImplv3.php # service/v3/SugarWebServiceUtilv3.php # service/v3_1/SugarWebServiceImplv3_1.php # service/v4/SugarWebServiceImplv4.php # service/v4/SugarWebServiceUtilv4.php # service/v4_1/SugarWebServiceImplv4_1.php # soap/SoapData.php # soap/SoapDeprecated.php # soap/SoapHelperFunctions.php # soap/SoapPortalHelper.php # soap/SoapPortalUsers.php # soap/SoapRelationshipHelper.php # soap/SoapSugarUsers.php # suitecrm_version.php # tests/phpunit.xml.dist # tests/tests/configTest.php # tests/tests/include/MVC/Controller/ControllerFactoryTest.php # tests/tests/include/MVC/Controller/SugarControllerTest.php # tests/tests/include/MVC/SugarApplicationTest.php # tests/tests/include/MVC/SugarModuleTest.php # tests/tests/include/MVC/View/SugarViewTest.php # tests/tests/include/MVC/View/ViewFactoryTest.php # tests/tests/include/MVC/View/views/view.ajaxTest.php # tests/tests/include/MVC/View/views/view.ajaxuiTest.php # tests/tests/include/MVC/View/views/view.classicTest.php # tests/tests/include/MVC/View/views/view.detailTest.php # tests/tests/include/MVC/View/views/view.editTest.php # tests/tests/include/MVC/View/views/view.favoritesTest.php # tests/tests/include/MVC/View/views/view.htmlTest.php # tests/tests/include/MVC/View/views/view.importvcardTest.php # tests/tests/include/MVC/View/views/view.importvcardsaveTest.php # tests/tests/include/MVC/View/views/view.jsonTest.php # tests/tests/include/MVC/View/views/view.listTest.php # tests/tests/include/MVC/View/views/view.metadataTest.php # tests/tests/include/MVC/View/views/view.modulelistmenuTest.php # tests/tests/include/MVC/View/views/view.multieditTest.php # tests/tests/include/MVC/View/views/view.noaccessTest.php # tests/tests/include/MVC/View/views/view.popupTest.php # tests/tests/include/MVC/View/views/view.quickTest.php # tests/tests/include/MVC/View/views/view.quickcreateTest.php # tests/tests/include/MVC/View/views/view.quickeditTest.php # tests/tests/include/MVC/View/views/view.serializedTest.php # tests/tests/include/MVC/View/views/view.sugarpdfTest.php # tests/tests/include/MVC/View/views/view.vcardTest.php # tests/tests/include/MVC/View/views/view.xmlTest.php # tests/tests/include/utils/LogicHookTest.php # tests/tests/include/utils/activityUtilsTest.php # tests/tests/include/utils/arrayUtilsTest.php # tests/tests/include/utils/autoloaderTest.php # tests/tests/include/utils/dbUtilsTest.php # tests/tests/include/utils/encryptionUtilsTest.php # tests/tests/include/utils/fileUtilsTest.php # tests/tests/include/utils/layoutUtilsTest.php # tests/tests/include/utils/logicUtilsTest.php # tests/tests/include/utils/mvcUtilsTest.php # tests/tests/include/utils/phpZipUtilsTest.php # tests/tests/include/utils/progressBarUtilsTest.php # tests/tests/include/utils/securityUtilsTest.php # tests/tests/include/utils/sugarFileUtilsTest.php # tests/tests/include/utils/zipUtilsTest.php # tests/tests/modules/ACLActions/ACLActionTest.php # tests/tests/modules/ACLRoles/ACLRoleTest.php # tests/tests/modules/AM_ProjectTemplates/AM_ProjectTemplatesTest.php # tests/tests/modules/AM_TaskTemplates/AM_TaskTemplatesTest.php # tests/tests/modules/AOD_Index/AOD_IndexTest.php # tests/tests/modules/AOD_IndexEvent/AOD_IndexEventTest.php # tests/tests/modules/AOK_KnowledgeBase/AOK_KnowledgeBaseTest.php # tests/tests/modules/AOK_Knowledge_Base_Categories/AOK_Knowledge_Base_CategoriesTest.php # tests/tests/modules/AOP_Case_Events/AOP_Case_EventsTest.php # tests/tests/modules/AOP_Case_Updates/AOP_Case_UpdatesTest.php # tests/tests/modules/AOR_Charts/AOR_ChartTest.php # tests/tests/modules/AOR_Conditions/AOR_ConditionTest.php # tests/tests/modules/AOR_Fields/AOR_FieldTest.php # tests/tests/modules/AOR_Reports/AOR_ReportTest.php # tests/tests/modules/AOR_Scheduled_Reports/AOR_Scheduled_ReportsTest.php # tests/tests/modules/AOS_Contracts/AOS_ContractsTest.php # tests/tests/modules/AOS_Invoices/AOS_InvoicesTest.php # tests/tests/modules/AOS_Line_Item_Groups/AOS_Line_Item_GroupsTest.php # tests/tests/modules/AOS_PDF_Templates/AOS_PDF_TemplatesTest.php # tests/tests/modules/AOS_Product_Categories/AOS_Product_CategoriesTest.php # tests/tests/modules/AOS_Products/AOS_ProductsTest.php # tests/tests/modules/AOS_Products_Quotes/AOS_Products_QuotesTest.php # tests/tests/modules/AOS_Quotes/AOS_QuotesTest.php # tests/tests/modules/AOW_Actions/AOW_ActionTest.php # tests/tests/modules/AOW_Conditions/AOW_ConditionTest.php # tests/tests/modules/AOW_Processed/AOW_ProcessedTest.php # tests/tests/modules/AOW_WorkFlow/AOW_WorkFlowTest.php # tests/tests/modules/Accounts/AccountTest.php # tests/tests/modules/Administration/AdministrationTest.php # tests/tests/modules/Alerts/AlertTest.php # tests/tests/modules/Audit/AuditTest.php # tests/tests/modules/Bugs/BugTest.php # tests/tests/modules/Calls/CallTest.php # tests/tests/modules/Calls_Reschedule/Calls_RescheduleTest.php # tests/tests/modules/CampaignLog/CampaignLogTest.php # tests/tests/modules/CampaignTrackers/CampaignTrackerTest.php # tests/tests/modules/Campaigns/CampaignTest.php # tests/tests/modules/Cases/CaseTest.php # tests/tests/modules/Contacts/ContactTest.php # tests/tests/modules/Currencies/CurrencyTest.php # tests/tests/modules/DocumentRevisions/DocumentRevisionTest.php # tests/tests/modules/Documents/DocumentTest.php # tests/tests/modules/EAPM/EAPMTest.php # tests/tests/modules/EmailAddresses/EmailAddressTest.php # tests/tests/modules/EmailMan/EmailManTest.php # tests/tests/modules/EmailMarketing/EmailMarketingTest.php # tests/tests/modules/EmailTemplates/EmailTemplateTest.php # tests/tests/modules/EmailText/EmailTextTest.php # tests/tests/modules/Emails/EmailTest.php # tests/tests/modules/Employees/EmployeeTest.php # tests/tests/modules/FP_Event_Locations/FP_Event_LocationsTest.php # tests/tests/modules/FP_events/FP_eventsTest.php # tests/tests/modules/Favorites/FavoritesTest.php # tests/tests/modules/Groups/GroupTest.php # tests/tests/modules/InboundEmail/InboundEmailTest.php # tests/tests/modules/Leads/LeadTest.php # tests/tests/modules/Meetings/MeetingTest.php # tests/tests/modules/MergeRecords/MergeRecordTest.php # tests/tests/modules/Notes/NoteTest.php # tests/tests/modules/OAuthKeys/OAuthKeyTest.php # tests/tests/modules/OAuthTokens/OAuthTokenTest.php # tests/tests/modules/Opportunities/OpportunityTest.php # tests/tests/modules/Project/ProjectTest.php # tests/tests/modules/ProjectTask/ProjectTaskTest.php # tests/tests/modules/ProspectLists/ProspectListTest.php # tests/tests/modules/Prospects/ProspectTest.php # tests/tests/modules/Relationships/RelationshipTest.php # tests/tests/modules/Releases/ReleaseTest.php # tests/tests/modules/Roles/RoleTest.php # tests/tests/modules/SavedSearch/SavedSearchTest.php # tests/tests/modules/Schedulers/SchedulerTest.php # tests/tests/modules/SchedulersJobs/SchedulersJobTest.php # tests/tests/modules/SecurityGroups/SecurityGroupTest.php # tests/tests/modules/SugarFeed/SugarFeedTest.php # tests/tests/modules/Tasks/TaskTest.php # tests/tests/modules/Trackers/TrackerTest.php # tests/tests/modules/UserPreferences/UserPreferenceTest.php # tests/tests/modules/Users/UserTest.php # tests/tests/modules/iCals/iCalTest.php # tests/tests/modules/jjwg_Address_Cache/jjwg_Address_CacheTest.php # tests/tests/modules/jjwg_Areas/jjwg_AreasTest.php # tests/tests/modules/jjwg_Maps/jjwg_MapsTest.php # tests/tests/modules/jjwg_Markers/jjwg_MarkersTest.php # tests/tests/modules/vCals/vCalTest.php # themes/SuiteP/css/style.css # themes/SuiteP/include/SearchForm/tpls/header.tpl # themes/SuiteP/modules/Calendar/tpls/header.tpl
2018-08-31 12:58:25 +00:00
echo count($fields) . " field(s) missing from $mod->table_name" . "_cstm<br>";
2018-07-12 10:40:10 +00:00
foreach ($fields as $field) {
echo "Adding Column $field to $mod->table_name" . "_cstm<br>";
if (!$simulate) {
$the_field = $mod->getFieldDefinition($field);
$field = get_widget($the_field['type']);
$field->set($the_field);
$query = $field->get_db_add_alter_table($mod->table_name . '_cstm');
echo $query;
if (!empty($query)) {
$mod->db->query($query);
}
}
2013-09-23 19:30:44 +00:00
}
2018-07-12 10:40:10 +00:00
}
}
Merge branch 'hotfix-7.8.x' into hotfix # Conflicts: # .gitignore # .travis.yml # ModuleInstall/ModuleScanner.php # README.md # composer.json # composer.lock # data/Link2.php # data/Relationships/M2MRelationship.php # data/Relationships/One2MBeanRelationship.php # data/SugarBean.php # include/EditView/SugarVCR.php # include/InlineEditing/InlineEditing.php # include/InlineEditing/inlineEditing.js # include/ListView/ListViewData.php # include/ListView/ListViewDisplay.php # include/ListView/ListViewSmarty.php # include/MVC/SugarApplication.php # include/MVC/View/SugarView.php # include/MVC/View/views/view.list.php # include/MVC/View/views/view.sugarpdf.php # include/MassUpdate.php # include/Popups/PopupSmarty.php # include/SearchForm/SearchForm.php # include/SearchForm/SearchForm2.php # include/StateChecker.php # include/StateCheckerCestAbstract.php # include/StateCheckerCodeceptionTrait.php # include/StateCheckerConfig.php # include/StateCheckerPHPUnitTestCaseAbstract.php # include/StateCheckerTrait.php # include/StateCheckerUnitAbstract.php # include/StateSaver.php # include/SugarEmailAddress/SugarEmailAddress.php # include/SugarFields/Fields/Address/DetailView.tpl # include/SugarFields/Fields/Address/en_us.DetailView.tpl # include/SugarObjects/forms/PersonFormBase.php # include/SugarTheme/SugarTheme.php # include/Sugarpdf/Sugarpdf.php # include/TimeDate.php # include/database/DBManager.php # include/entryPoint.php # include/generic/LayoutManager.php # include/generic/Save2.php # include/generic/SugarWidgets/SugarWidgetFieldcurrency.php # include/generic/SugarWidgets/SugarWidgetFieldenum.php # include/generic/SugarWidgets/SugarWidgetFieldfloat.php # include/generic/SugarWidgets/SugarWidgetFieldid.php # include/generic/SugarWidgets/SugarWidgetFieldint.php # include/generic/SugarWidgets/SugarWidgetFieldmultienum.php # include/generic/SugarWidgets/SugarWidgetFieldname.php # include/generic/SugarWidgets/SugarWidgetFieldsingleenum.php # include/generic/SugarWidgets/SugarWidgetFieldtext.php # include/generic/SugarWidgets/SugarWidgetFielduser_name.php # include/generic/SugarWidgets/SugarWidgetFieldvarchar.php # include/generic/SugarWidgets/SugarWidgetReportField.php # include/generic/SugarWidgets/SugarWidgetSubPanelConcat.php # include/generic/SugarWidgets/SugarWidgetSubPanelEditRoleButton.php # include/generic/SugarWidgets/SugarWidgetSubPanelEditSecurityGroupUserButton.php # include/generic/SugarWidgets/SugarWidgetSubPanelRelFieldEditButton.php # include/generic/SugarWidgets/SugarWidgetSubPanelRemoveButtonAccount.php # include/generic/SugarWidgets/SugarWidgetSubPanelRemoveButtonProjects.php # include/javascript/jsAlerts.php # include/language/en_us.lang.php # include/nusoap/nusoap.php # include/social/hooks.php # include/upload_file.php # include/utils.php # include/utils/db_utils.php # include/utils/file_utils.php # include/utils/layout_utils.php # include/utils/logic_utils.php # include/utils/mvc_utils.php # include/utils/security_utils.php # install/install_utils.php # install/seed_data/quotes_SeedData.php # modules/ACL/ACLController.php # modules/ACLActions/ACLAction.php # modules/ACLRoles/ACLRole.php # modules/AM_ProjectTemplates/controller.php # modules/AM_ProjectTemplates/views/view.ganttchart.php # modules/AOD_Index/views/view.indexdata.php # modules/AOD_IndexEvent/AOD_IndexEvent_sugar.php # modules/AOP_Case_Updates/AOPAssignManager.php # modules/AOP_Case_Updates/CaseUpdatesHook.php # modules/AOR_Conditions/AOR_Condition.php # modules/AOR_Fields/AOR_Field.php # modules/AOR_Reports/AOR_Report.js # modules/AOR_Reports/AOR_Report.php # modules/AOR_Reports/Menu.php # modules/AOR_Reports/aor_utils.php # modules/AOR_Reports/controller.php # modules/AOR_Reports/views/view.detail.php # modules/AOS_Contracts/AOS_Contracts.php # modules/AOS_Line_Item_Groups/AOS_Line_Item_Groups.php # modules/AOS_PDF_Templates/generatePdf.php # modules/AOS_Products_Quotes/AOS_Products_Quotes.php # modules/AOS_Products_Quotes/AOS_Utils.php # modules/AOS_Quotes/converToInvoice.php # modules/AOS_Quotes/createContract.php # modules/AOW_Actions/AOW_Action.php # modules/AOW_Actions/actions/templateParser.php # modules/AOW_Conditions/AOW_Condition.php # modules/AOW_WorkFlow/AOW_WorkFlow.php # modules/AOW_WorkFlow/aow_utils.php # modules/Accounts/AccountFormBase.php # modules/Activities/Popup_picker.php # modules/Administration/Diagnostic.php # modules/Administration/DiagnosticRun.php # modules/Administration/DisplayWarnings.php # modules/Administration/Locale.php # modules/Administration/RebuildFulltextIndices.php # modules/Administration/RebuildRelationship.php # modules/Administration/RepairFieldCasing.php # modules/Administration/RepairIndex.php # modules/Administration/RepairSeedUsers.php # modules/Administration/Upgrade.php # modules/Administration/UpgradeFields.php # modules/Administration/UpgradeWizard_commit.php # modules/Administration/index.tpl # modules/Administration/language/en_us.lang.php # modules/Administration/updater_utils.php # modules/Calendar/CalendarUtils.php # modules/Calendar/views/view.getgr.php # modules/Calls/Call.php # modules/Calls/Dashlets/MyCallsDashlet/MyCallsDashlet.php # modules/Campaigns/GenerateWebToLeadForm.php # modules/Campaigns/ProcessBouncedEmails.php # modules/Campaigns/Schedule.php # modules/Campaigns/WizardHome.php # modules/Campaigns/WizardMarketing.php # modules/Campaigns/language/en_us.lang.php # modules/Campaigns/utils.php # modules/Cases/Case.php # modules/Cases/views/view.edit.php # modules/Contacts/views/view.retrieveemail.php # modules/Currencies/Currency.php # modules/DocumentRevisions/DocumentRevision.php # modules/Documents/Document.php # modules/Documents/TreeData.php # modules/DynamicFields/UpgradeFields.php # modules/DynamicFields/templates/Fields/TemplateCurrency.php # modules/DynamicFields/templates/Fields/TemplateDecimal.php # modules/DynamicFields/templates/Fields/TemplateField.php # modules/DynamicFields/templates/Fields/TemplateFloat.php # modules/DynamicFields/templates/Fields/TemplateInt.php # modules/EAPM/EAPM.php # modules/EmailMan/EmailMan.php # modules/EmailMarketing/EmailMarketing.php # modules/EmailTemplates/EmailTemplate.php # modules/Emails/Email.php # modules/Emails/EmailUI.php # modules/Emails/EmailUIAjax.php # modules/Emails/ListViewGroup.php # modules/Emails/templates/addressSearch.tpl # modules/Emails/templates/advancedSearch.tpl # modules/FP_events/controller.php # modules/FP_events/responseEntryPoint.php # modules/Favorites/Favorites.php # modules/Home/UnifiedSearchAdvanced.php # modules/Import/UsersLastImport.php # modules/Import/views/view.last.php # modules/InboundEmail/InboundEmail.php # modules/Leads/Lead.php # modules/Meetings/Dashlets/MyMeetingsDashlet/MyMeetingsDashlet.php # modules/Meetings/Meeting.php # modules/Meetings/language/en_us.lang.php # modules/Meetings/views/view.listbytype.php # modules/MySettings/StoreQuery.php # modules/OAuthTokens/OAuthToken.php # modules/Opportunities/Opportunity.php # modules/Opportunities/OpportunityFormBase.php # modules/Project/Project.php # modules/Project/controller.php # modules/Project/delete_project_tasks.php # modules/Project/language/en_us.lang.php # modules/Project/views/view.ganttchart.php # modules/ProjectTask/ProjectTask.php # modules/ProjectTask/views/view.list.php # modules/ProspectLists/ProspectList.php # modules/ProspectLists/TargetListUpdate.php # modules/Prospects/Prospect.php # modules/Relationships/RelationshipHandler.php # modules/Releases/Release.php # modules/Roles/Role.php # modules/SavedSearch/SavedSearch.php # modules/SavedSearch/UpgradeSavedSearch.php # modules/Schedulers/Scheduler.php # modules/Schedulers/views/view.detail.php # modules/Schedulers/views/view.edit.php # modules/SchedulersJobs/SchedulersJob.php # modules/SecurityGroups/AssignGroups.php # modules/SecurityGroups/SaveSecurityGroupUserRelationship.php # modules/SecurityGroups/SecurityGroup.php # modules/SecurityGroups/language/en_us.lang.php # modules/Studio/config.php # modules/SugarFeed/Dashlets/SugarFeedDashlet/SugarFeedDashlet.php # modules/SugarFeed/SugarFeed.php # modules/SugarFeed/SugarFeedFlush.php # modules/Tasks/Task.php # modules/Trackers/BreadCrumbStack.php # modules/Trackers/store/DatabaseStore.php # modules/Trackers/store/TrackerQueriesDatabaseStore.php # modules/Trackers/store/TrackerSessionsDatabaseStore.php # modules/UpgradeWizard/layouts.php # modules/UpgradeWizard/silentUpgrade_dce_step1.php # modules/UpgradeWizard/silentUpgrade_dce_step2.php # modules/UpgradeWizard/silentUpgrade_step1.php # modules/UpgradeWizard/silentUpgrade_step2.php # modules/UpgradeWizard/uw_ajax.php # modules/UpgradeWizard/uw_main.tpl # modules/UpgradeWizard/uw_utils.php # modules/UserPreferences/UserPreference.php # modules/Users/ChangePassword.php # modules/Users/Changenewpassword.php # modules/Users/Error.php # modules/Users/Save.php # modules/Users/User.php # modules/Users/authentication/EmailAuthenticate/EmailAuthenticateUser.php # modules/Users/authentication/LDAPAuthenticate/LDAPAuthenticateUser.php # modules/Users/language/en_us.lang.php # modules/Users/reassignUserRecords.php # modules/Users/tpls/EditViewFooter.tpl # modules/Users/views/view.edit.php # modules/jjwg_Address_Cache/jjwg_Address_Cache.php # modules/jjwg_Areas/jjwg_Areas.php # modules/jjwg_Maps/jjwg_Maps.php # modules/jjwg_Markers/jjwg_Markers.php # modules/vCals/vCal.php # service/core/SoapHelperWebService.php # service/core/SugarWebServiceImpl.php # service/v3/SugarWebServiceImplv3.php # service/v3/SugarWebServiceUtilv3.php # service/v3_1/SugarWebServiceImplv3_1.php # service/v4/SugarWebServiceImplv4.php # service/v4/SugarWebServiceUtilv4.php # service/v4_1/SugarWebServiceImplv4_1.php # soap/SoapData.php # soap/SoapDeprecated.php # soap/SoapHelperFunctions.php # soap/SoapPortalHelper.php # soap/SoapPortalUsers.php # soap/SoapRelationshipHelper.php # soap/SoapSugarUsers.php # suitecrm_version.php # tests/phpunit.xml.dist # tests/tests/configTest.php # tests/tests/include/MVC/Controller/ControllerFactoryTest.php # tests/tests/include/MVC/Controller/SugarControllerTest.php # tests/tests/include/MVC/SugarApplicationTest.php # tests/tests/include/MVC/SugarModuleTest.php # tests/tests/include/MVC/View/SugarViewTest.php # tests/tests/include/MVC/View/ViewFactoryTest.php # tests/tests/include/MVC/View/views/view.ajaxTest.php # tests/tests/include/MVC/View/views/view.ajaxuiTest.php # tests/tests/include/MVC/View/views/view.classicTest.php # tests/tests/include/MVC/View/views/view.detailTest.php # tests/tests/include/MVC/View/views/view.editTest.php # tests/tests/include/MVC/View/views/view.favoritesTest.php # tests/tests/include/MVC/View/views/view.htmlTest.php # tests/tests/include/MVC/View/views/view.importvcardTest.php # tests/tests/include/MVC/View/views/view.importvcardsaveTest.php # tests/tests/include/MVC/View/views/view.jsonTest.php # tests/tests/include/MVC/View/views/view.listTest.php # tests/tests/include/MVC/View/views/view.metadataTest.php # tests/tests/include/MVC/View/views/view.modulelistmenuTest.php # tests/tests/include/MVC/View/views/view.multieditTest.php # tests/tests/include/MVC/View/views/view.noaccessTest.php # tests/tests/include/MVC/View/views/view.popupTest.php # tests/tests/include/MVC/View/views/view.quickTest.php # tests/tests/include/MVC/View/views/view.quickcreateTest.php # tests/tests/include/MVC/View/views/view.quickeditTest.php # tests/tests/include/MVC/View/views/view.serializedTest.php # tests/tests/include/MVC/View/views/view.sugarpdfTest.php # tests/tests/include/MVC/View/views/view.vcardTest.php # tests/tests/include/MVC/View/views/view.xmlTest.php # tests/tests/include/utils/LogicHookTest.php # tests/tests/include/utils/activityUtilsTest.php # tests/tests/include/utils/arrayUtilsTest.php # tests/tests/include/utils/autoloaderTest.php # tests/tests/include/utils/dbUtilsTest.php # tests/tests/include/utils/encryptionUtilsTest.php # tests/tests/include/utils/fileUtilsTest.php # tests/tests/include/utils/layoutUtilsTest.php # tests/tests/include/utils/logicUtilsTest.php # tests/tests/include/utils/mvcUtilsTest.php # tests/tests/include/utils/phpZipUtilsTest.php # tests/tests/include/utils/progressBarUtilsTest.php # tests/tests/include/utils/securityUtilsTest.php # tests/tests/include/utils/sugarFileUtilsTest.php # tests/tests/include/utils/zipUtilsTest.php # tests/tests/modules/ACLActions/ACLActionTest.php # tests/tests/modules/ACLRoles/ACLRoleTest.php # tests/tests/modules/AM_ProjectTemplates/AM_ProjectTemplatesTest.php # tests/tests/modules/AM_TaskTemplates/AM_TaskTemplatesTest.php # tests/tests/modules/AOD_Index/AOD_IndexTest.php # tests/tests/modules/AOD_IndexEvent/AOD_IndexEventTest.php # tests/tests/modules/AOK_KnowledgeBase/AOK_KnowledgeBaseTest.php # tests/tests/modules/AOK_Knowledge_Base_Categories/AOK_Knowledge_Base_CategoriesTest.php # tests/tests/modules/AOP_Case_Events/AOP_Case_EventsTest.php # tests/tests/modules/AOP_Case_Updates/AOP_Case_UpdatesTest.php # tests/tests/modules/AOR_Charts/AOR_ChartTest.php # tests/tests/modules/AOR_Conditions/AOR_ConditionTest.php # tests/tests/modules/AOR_Fields/AOR_FieldTest.php # tests/tests/modules/AOR_Reports/AOR_ReportTest.php # tests/tests/modules/AOR_Scheduled_Reports/AOR_Scheduled_ReportsTest.php # tests/tests/modules/AOS_Contracts/AOS_ContractsTest.php # tests/tests/modules/AOS_Invoices/AOS_InvoicesTest.php # tests/tests/modules/AOS_Line_Item_Groups/AOS_Line_Item_GroupsTest.php # tests/tests/modules/AOS_PDF_Templates/AOS_PDF_TemplatesTest.php # tests/tests/modules/AOS_Product_Categories/AOS_Product_CategoriesTest.php # tests/tests/modules/AOS_Products/AOS_ProductsTest.php # tests/tests/modules/AOS_Products_Quotes/AOS_Products_QuotesTest.php # tests/tests/modules/AOS_Quotes/AOS_QuotesTest.php # tests/tests/modules/AOW_Actions/AOW_ActionTest.php # tests/tests/modules/AOW_Conditions/AOW_ConditionTest.php # tests/tests/modules/AOW_Processed/AOW_ProcessedTest.php # tests/tests/modules/AOW_WorkFlow/AOW_WorkFlowTest.php # tests/tests/modules/Accounts/AccountTest.php # tests/tests/modules/Administration/AdministrationTest.php # tests/tests/modules/Alerts/AlertTest.php # tests/tests/modules/Audit/AuditTest.php # tests/tests/modules/Bugs/BugTest.php # tests/tests/modules/Calls/CallTest.php # tests/tests/modules/Calls_Reschedule/Calls_RescheduleTest.php # tests/tests/modules/CampaignLog/CampaignLogTest.php # tests/tests/modules/CampaignTrackers/CampaignTrackerTest.php # tests/tests/modules/Campaigns/CampaignTest.php # tests/tests/modules/Cases/CaseTest.php # tests/tests/modules/Contacts/ContactTest.php # tests/tests/modules/Currencies/CurrencyTest.php # tests/tests/modules/DocumentRevisions/DocumentRevisionTest.php # tests/tests/modules/Documents/DocumentTest.php # tests/tests/modules/EAPM/EAPMTest.php # tests/tests/modules/EmailAddresses/EmailAddressTest.php # tests/tests/modules/EmailMan/EmailManTest.php # tests/tests/modules/EmailMarketing/EmailMarketingTest.php # tests/tests/modules/EmailTemplates/EmailTemplateTest.php # tests/tests/modules/EmailText/EmailTextTest.php # tests/tests/modules/Emails/EmailTest.php # tests/tests/modules/Employees/EmployeeTest.php # tests/tests/modules/FP_Event_Locations/FP_Event_LocationsTest.php # tests/tests/modules/FP_events/FP_eventsTest.php # tests/tests/modules/Favorites/FavoritesTest.php # tests/tests/modules/Groups/GroupTest.php # tests/tests/modules/InboundEmail/InboundEmailTest.php # tests/tests/modules/Leads/LeadTest.php # tests/tests/modules/Meetings/MeetingTest.php # tests/tests/modules/MergeRecords/MergeRecordTest.php # tests/tests/modules/Notes/NoteTest.php # tests/tests/modules/OAuthKeys/OAuthKeyTest.php # tests/tests/modules/OAuthTokens/OAuthTokenTest.php # tests/tests/modules/Opportunities/OpportunityTest.php # tests/tests/modules/Project/ProjectTest.php # tests/tests/modules/ProjectTask/ProjectTaskTest.php # tests/tests/modules/ProspectLists/ProspectListTest.php # tests/tests/modules/Prospects/ProspectTest.php # tests/tests/modules/Relationships/RelationshipTest.php # tests/tests/modules/Releases/ReleaseTest.php # tests/tests/modules/Roles/RoleTest.php # tests/tests/modules/SavedSearch/SavedSearchTest.php # tests/tests/modules/Schedulers/SchedulerTest.php # tests/tests/modules/SchedulersJobs/SchedulersJobTest.php # tests/tests/modules/SecurityGroups/SecurityGroupTest.php # tests/tests/modules/SugarFeed/SugarFeedTest.php # tests/tests/modules/Tasks/TaskTest.php # tests/tests/modules/Trackers/TrackerTest.php # tests/tests/modules/UserPreferences/UserPreferenceTest.php # tests/tests/modules/Users/UserTest.php # tests/tests/modules/iCals/iCalTest.php # tests/tests/modules/jjwg_Address_Cache/jjwg_Address_CacheTest.php # tests/tests/modules/jjwg_Areas/jjwg_AreasTest.php # tests/tests/modules/jjwg_Maps/jjwg_MapsTest.php # tests/tests/modules/jjwg_Markers/jjwg_MarkersTest.php # tests/tests/modules/vCals/vCalTest.php # themes/SuiteP/css/style.css # themes/SuiteP/include/SearchForm/tpls/header.tpl # themes/SuiteP/modules/Calendar/tpls/header.tpl
2018-08-31 12:58:25 +00:00
2018-07-19 10:46:21 +00:00
DynamicField::deleteCache();
echo '<br>Done<br>';
if ($simulate) {
echo '<a href="index.php?module=Administration&action=UpgradeFields&run=true">Execute non-simulation mode</a>';
}