-
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.
Merge pull request #906 from inbaz/develop
Merge of payment type and bank account
- Loading branch information
Showing
277 changed files
with
4,126 additions
and
18,301 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,8 +10,8 @@ | |
# uncomment the return | ||
# do additional changes in ers.local.php | ||
|
||
/*return array( | ||
'ERS' => array( | ||
/*return [ | ||
'ERS' => [ | ||
'sender_email' => '[email protected]', | ||
'name_short' => "EJC2016", | ||
'name_with_year' => "EJC 2016", | ||
|
@@ -22,31 +22,32 @@ | |
'start' => new DateTime('2016-07-30'), | ||
'end' => new DateTime('2016-08-07'), | ||
'registration_info' => 'http://prereg.eja.net', | ||
'onsitereg' => 'https://prereg.eja.net/redirect' | ||
), | ||
'onsitereg' => 'https://prereg.eja.net/redirect', | ||
'operator' => 'Stichting European Juggling Association', | ||
], | ||
'environment' => 'develop', | ||
#'environment' => 'testing', | ||
#'environment' => 'production', | ||
'ERS\SEPA' => array( | ||
'ERS\SEPA' => [ | ||
'iban' => 'NL84 INGB 0007 8721 92', | ||
'bic' => 'INGBNL2A', | ||
'owner' => 'STICHTING EUROPEAN JUGGLING ASSOCIATION', | ||
'bank' => 'ING BANK N.V.', | ||
'country' => 'Netherlands', | ||
) | ||
'ERS\iPayment' => array( | ||
], | ||
'ERS\iPayment' => [ | ||
'trxuser_id' => '99999', | ||
'trx_currency' => 'EUR', | ||
'trxpassword' => '0', | ||
'sec_key' => '1234567890', | ||
'action' => 'https://ipayment.de/merchant/%account_id%/processor/2.0/', | ||
) | ||
'orgHeiglPiwik' => array( | ||
], | ||
'orgHeiglPiwik' => [ | ||
// Always omit a trailing slash! | ||
'server' => 'prereg.eja.net/analytics', | ||
'site_id' => 1, | ||
), | ||
); | ||
], | ||
]; | ||
*/ | ||
return array(); |
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
Binary file not shown.
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 |
---|---|---|
@@ -1,22 +1,30 @@ | ||
/* add roles */ | ||
INSERT INTO `role` (`id`, `parent_id`, `roleId`, `active`, `updated`, `created`) VALUES (NULL, NULL, 'onsitereg', '', '', ''); | ||
INSERT INTO `role` (`id`, `parent_id`, `roleId`, `active`, `updated`, `created`) VALUES (NULL, NULL, 'supradm', '', '', ''); | ||
INSERT INTO `role` (`id`, `parent_id`, `roleId`, `active`, `updated`, `created`) VALUES (NULL, NULL, 'preregcoordinator', '', '', ''); | ||
INSERT INTO `role` (`id`, `parent_id`, `roleId`, `active`, `updated`, `created`) VALUES (NULL, NULL, 'user', '', '', ''); | ||
INSERT INTO `role` (`id`, `parent_id`, `roleId`, `active`, `updated`, `created`) VALUES (NULL, NULL, 'admin', '', '', ''); | ||
INSERT INTO `role` (`id`, `parent_id`, `roleId`, `active`, `updated`, `created`) VALUES (NULL, NULL, 'guest', '', '', ''); | ||
INSERT INTO `role` (`id`, `parent_id`, `roleId`, `active`, `updated`, `created`) VALUES (NULL, NULL, 'participant', '', '', ''); | ||
# add roles | ||
INSERT INTO `role` (`id`, `parent_id`, `roleId`, `active`, `updated`, `created`) VALUES | ||
(NULL, NULL, 'onsitereg', 1, '2017-02-11 13:37:00', '2017-02-11 13:37:00'), | ||
(NULL, NULL, 'supradm', 1, '2017-02-11 13:37:00', '2017-02-11 13:37:00'), | ||
(NULL, NULL, 'preregcoordinator', 1, '2017-02-11 13:37:00', '2017-02-11 13:37:00'), | ||
(NULL, NULL, 'user', 1, '2017-02-11 13:37:00', '2017-02-11 13:37:00'), | ||
(NULL, NULL, 'admin', 1, '2017-02-11 13:37:00', '2017-02-11 13:37:00'), | ||
(NULL, NULL, 'guest', 1, '2017-02-11 13:37:00', '2017-02-11 13:37:00'), | ||
(NULL, NULL, 'participant', 1, '2017-02-11 13:37:00', '2017-02-11 13:37:00'); | ||
(NULL, NULL, 'buyer', 1, '2017-02-11 13:37:00', '2017-02-11 13:37:00'); | ||
|
||
/* add admin user: [email protected] */ | ||
/* tax examples */ | ||
/* deadline examples */ | ||
/* agegroup examples */ | ||
# add admin user: [email protected] | ||
# tax examples | ||
# deadline examples | ||
# agegroup examples | ||
|
||
/* add status */ | ||
# add status | ||
INSERT INTO `status` (`id`, `position`, `value`, `description`, `updated`, `created`, `active`) VALUES | ||
(1, 1, 'order pending', '', NULL, NULL, 0), | ||
(2, 2, 'ordered', '', NULL, NULL, 1), | ||
(3, 3, 'paid', '', NULL, NULL, 1), | ||
(4, 4, 'shipped', '', NULL, NULL, 1), | ||
(5, 5, 'cancelled', '', NULL, NULL, 0), | ||
(6, 6, 'transferred', '', NULL, NULL, 0); | ||
(6, 6, 'transferred', '', NULL, NULL, 0); | ||
|
||
INSERT INTO `user` (`id`, `username`, `email`, `email_status`, `display_name`, `firstname`, `surname`, `gender`, `Country_id`, `password`, `hashkey`, `state`, `active`, `birthday`, `login_count`, `newsletter`, `updated`, `created`) VALUES | ||
(NULL, NULL, '[email protected]', NULL, NULL, 'Andi', 'Nitsche', NULL, NULL, NULL, NULL, NULL, '1', NULL, NULL, NULL, '2017-02-11 00:00:00', '2017-02-11 00:00:00'); | ||
|
||
INSERT INTO `user_has_role` (`user_id`, `role_id`) VALUES | ||
('1', '5'); |
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.