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
<?php | |
/** | |
* @file | |
* Command(s) for working for converting to utf8mb4. | |
*/ | |
/** | |
* Implements hook_bee_command(). | |
*/ |
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
<?php | |
/** | |
* Convert d7 media to Backdrop media | |
* | |
* bee php-script convert-d7media2backdrop.php | |
* | |
* Requires video_filter module in Backdrop. | |
* Will convert from Drupal 7 media module format. | |
*/ |
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
<?php | |
/** | |
* Convert Location to Address, Telephone and Email | |
* | |
* bee php-script convert-location.php | |
* | |
* @todo add batching. | |
* | |
* - Requires using bee commandline tools in Backdrop: https://github.com/backdrop-contrib/bee |
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
<?php | |
/** | |
* Convert Field Collection to Paragraphs | |
* | |
* bee php-script convert-fc2p.php | |
* | |
* @todo add batching. | |
* | |
* - Both field_collection and paragraphs need to be enabled. |
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
<?php | |
/** | |
* Convert d7 media to Backdrop media | |
* | |
* bee php-script convert-d7media2backdrop.php | |
* | |
* @todo add batching. | |
*/ |
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
<?php | |
/** | |
* CiviCRM Local configuration file. | |
*/ | |
/** | |
* 1. After installing CiviCRM place this snippet in civicrm.settings.php, | |
* just below | |
* "global $civicrm_root, $civicrm_setting, $civicrm_paths;" |
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
<?php | |
/** | |
* CiviCRM Configuration File. | |
*/ | |
/** | |
* Installing CiviCRM with Drupal 9 on Pantheon. | |
* | |
* 1. Create a new site on Pantheon using Drupal 9 (sftp mode). |
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
DROP TABLE IF EXISTS time_dimension; | |
CREATE TABLE time_dimension ( | |
id INTEGER PRIMARY KEY, -- year*10000+month*100+day | |
db_date DATE NOT NULL, | |
year INTEGER NOT NULL, | |
month INTEGER NOT NULL, -- 1 to 12 | |
day INTEGER NOT NULL, -- 1 to 31 | |
quarter INTEGER NOT NULL, -- 1 to 4 | |
week INTEGER NOT NULL, -- 1 to 52/53 | |
day_name VARCHAR(9) NOT NULL, -- 'Monday', 'Tuesday'... |
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
verbose: /usr/share/lando/bin/docker-compose,--project-name,gottabd,--file,/home/herb/.lando/compose/gottabd/globals-0.yml,--file,/home/herb/.lando/compose/gottabd/appserver-0.yml,--file,/home/herb/.lando/compose/gottabd/appserver-1.yml,--file,/home/herb/.lando/compose/gottabd/appserver-2.yml,--file,/home/herb/.lando/compose/gottabd/appserver-3.yml,--file,/home/herb/.lando/compose/gottabd/database-0.yml,--file,/home/herb/.lando/compose/gottabd/database-1.yml,--file,/home/herb/.lando/compose/gottabd/database-2.yml,--file,/home/herb/.lando/compose/gottabd/database-3.yml,--file,/home/herb/.lando/compose/gottabd/database-4.yml,--file,/home/herb/.lando/compose/gottabd/database-5.yml,--file,/home/herb/.lando/compose/gottabd/proxy-0.yml,up,--detach,--no-recreate,--remove-orphans,appserver finished with code 0 | |
verbose: Running ["/usr/share/lando/bin/docker-compose","--project-name","gottabd","--file","/home/herb/.lando/compose/gottabd/globals-0.yml","--file","/home/herb/.lando/compose/gottabd/appserver-0.yml","--file |
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
diff --git a/CRM/Core/Form/Stripe.php b/CRM/Core/Form/Stripe.php | |
index 828e2ea..4b4963e 100644 | |
--- a/CRM/Core/Form/Stripe.php | |
+++ b/CRM/Core/Form/Stripe.php | |
@@ -8,9 +8,35 @@ class CRM_Core_Form_Stripe extends CRM_Core_Form { | |
/** | |
* Function to access protected payProcessors array in event registraion forms | |
+ * to see if any of them are stripe processors. | |
*/ |
NewerOlder