Merge pull request #24192 from demeritcowboy/php81-frontend4
[civicrm-core.git] / sql / civicrm_demo_processor.mysql
CommitLineData
6a488035 1-- +--------------------------------------------------------------------+
6b7eb9df 2-- | Copyright CiviCRM LLC. All rights reserved. |
6a488035 3-- | |
6b7eb9df
TO
4-- | This work is published under the GNU AGPLv3 license with some |
5-- | permitted exceptions and without any warranty. For full license |
6-- | and copyright information, see https://civicrm.org/licensing |
6a488035
TO
7-- +--------------------------------------------------------------------+
8-- This script instantiates a PayPal Pro payment processor and assigns it to all existing contribution pages
9-- and events for a demo or test site. The processor setup uses a valid test account and a fake live account.
10-- This script also sets Outbound Email preferences to SMTP, localhost, port 25
11-- This script should be run after sample data is loaded (civicrm_generated.mysql).
12
693fda4f
DS
13SELECT @ppTypeID := id FROM civicrm_payment_processor_type WHERE name = 'PayPal';
14
15INSERT INTO `civicrm_payment_processor` (`id`, `name`, `description`, `payment_processor_type_id`, `is_active`, `is_default`, `is_test`, `user_name`, `password`, `signature`, `url_site`, `url_api`, `url_recur`, `url_button`, `subject`, `class_name`, `billing_mode`, `is_recur`, `domain_id`) VALUES (3, 'PP Pro', '', @ppTypeID, 1, 1, 0, 'xxx', 'yyy', 'zzz', 'https://www.paypal.com/', 'https://api-3t.paypal.com/', NULL, 'https://www.paypal.com/en_US/i/btn/btn_xpressCheckout.gif', NULL, 'Payment_PayPalImpl', 3, 1, 1);
8eb8fed0 16INSERT INTO `civicrm_payment_processor` (`id`, `name`, `description`, `payment_processor_type_id`, `is_active`, `is_default`, `is_test`, `user_name`, `password`, `signature`, `url_site`, `url_api`, `url_recur`, `url_button`, `subject`, `class_name`, `billing_mode`, `is_recur`, `domain_id`) VALUES (4, 'PP Pro', '', @ppTypeID, 1, 0, 1, 'dave_api1.northtower.com', 'S5YW42RS7WRWT9AD', 'AUsrQDMAfRs6zQSEYuw3M4QDuTBHAAvpXf7N0jYi8G1UCfKRI2NrvWVM', 'https://www.sandbox.paypal.com/', 'https://api-3t.sandbox.paypal.com/', NULL, 'https://www.paypal.com/en_US/i/btn/btn_xpressCheckout.gif', NULL, 'Payment_PayPalImpl', 3, 1, 1);
693fda4f
DS
17
18SET @pp := LAST_INSERT_ID();
6a488035
TO
19
20UPDATE `civicrm_contribution_page`
693fda4f 21SET payment_processor = @pp;
6a488035
TO
22
23UPDATE `civicrm_event`
693fda4f 24SET payment_processor = @pp;