forked from pantheon-systems/drops-7
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Includes new features, bug fixes, and changes to the database schema. Requires database updates. Notes: * https://github.com/civicrm/civicrm-core/blob/master/release-notes/5.31.1.md * https://github.com/civicrm/civicrm-core/blob/master/release-notes/5.32.0.md * https://github.com/civicrm/civicrm-core/blob/master/release-notes/5.32.1.md Backup your site using Pantheon's backup tool first. Then either go to http://<your_drupal_home>/civicrm/upgrade?reset=1 or use terminus drush site.env civicrm-upgrade-db. Fully test on a dev environment before upgrading on live. If you have questions contact https://civicrmstarterkit.org/contact. We provide some basic general support for the public. If you require help with your specific website there will likely be a cost.
- Loading branch information
Showing
1,462 changed files
with
677,726 additions
and
3,598 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
profiles/civicrm_starterkit/modules/civicrm/CRM/Activity/Export/Form/Map.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?php | ||
/* | ||
+--------------------------------------------------------------------+ | ||
| Copyright CiviCRM LLC. All rights reserved. | | ||
| | | ||
| This work is published under the GNU AGPLv3 license with some | | ||
| permitted exceptions and without any warranty. For full license | | ||
| and copyright information, see https://civicrm.org/licensing | | ||
+--------------------------------------------------------------------+ | ||
*/ | ||
|
||
/** | ||
* | ||
* @package CRM | ||
* @copyright CiviCRM LLC https://civicrm.org/licensing | ||
*/ | ||
|
||
/** | ||
* This class gets the name of the file to upload | ||
*/ | ||
class CRM_Activity_Export_Form_Map extends CRM_Export_Form_Map { | ||
|
||
} |
57 changes: 57 additions & 0 deletions
57
profiles/civicrm_starterkit/modules/civicrm/CRM/Activity/Export/Form/Select.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
<?php | ||
/* | ||
+--------------------------------------------------------------------+ | ||
| Copyright CiviCRM LLC. All rights reserved. | | ||
| | | ||
| This work is published under the GNU AGPLv3 license with some | | ||
| permitted exceptions and without any warranty. For full license | | ||
| and copyright information, see https://civicrm.org/licensing | | ||
+--------------------------------------------------------------------+ | ||
*/ | ||
|
||
/** | ||
* | ||
* @package CRM | ||
* @copyright CiviCRM LLC https://civicrm.org/licensing | ||
*/ | ||
|
||
/** | ||
* This class gets the name of the file to upload | ||
*/ | ||
class CRM_Activity_Export_Form_Select extends CRM_Export_Form_Select { | ||
|
||
/** | ||
* Call the pre-processing function. | ||
*/ | ||
protected function callPreProcessing(): void { | ||
CRM_Activity_Form_Task::preProcessCommon($this); | ||
} | ||
|
||
/** | ||
* Does this export offer contact merging. | ||
* | ||
* @return bool | ||
*/ | ||
protected function isShowContactMergeOptions() { | ||
return FALSE; | ||
} | ||
|
||
/** | ||
* Get the name of the table for the relevant entity. | ||
* | ||
* @return string | ||
*/ | ||
public function getTableName() { | ||
return 'civicrm_activity'; | ||
} | ||
|
||
/** | ||
* Get the group by clause for the component. | ||
* | ||
* @return string | ||
*/ | ||
public function getEntityAliasField() { | ||
return 'activity_id'; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.