forked from MAKOA-France/helloasso-payment-processor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhelloasso_payment_processor.php
More file actions
32 lines (27 loc) · 862 Bytes
/
helloasso_payment_processor.php
File metadata and controls
32 lines (27 loc) · 862 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php
require_once 'helloasso_payment_processor.civix.php';
use CRM_HelloassoPaymentProcessor_ExtensionUtil as E;
/**
* Implements hook_civicrm_config().
*
* @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_config/
*/
function helloasso_payment_processor_civicrm_config(&$config): void {
_helloasso_payment_processor_civix_civicrm_config($config);
}
/**
* Implements hook_civicrm_install().
*
* @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_install
*/
function helloasso_payment_processor_civicrm_install(): void {
_helloasso_payment_processor_civix_civicrm_install();
}
/**
* Implements hook_civicrm_enable().
*
* @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_enable
*/
function helloasso_payment_processor_civicrm_enable(): void {
_helloasso_payment_processor_civix_civicrm_enable();
}