-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdonortierreport.php
39 lines (34 loc) · 987 Bytes
/
donortierreport.php
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
33
34
35
36
37
38
39
<?php
require_once 'donortierreport.civix.php';
/**
* Implementation of hook_civicrm_config
*
* @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_config
*/
function donortierreport_civicrm_config(&$config) {
_donortierreport_civix_civicrm_config($config);
}
/**
* Implementation of hook_civicrm_install
*
* @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_install
*/
function donortierreport_civicrm_install() {
_donortierreport_civix_civicrm_install();
}
/**
* Implementation of hook_civicrm_enable
*
* @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_enable
*/
function donortierreport_civicrm_enable() {
_donortierreport_civix_civicrm_enable();
}
// /**
// * Implements hook_civicrm_postInstall().
// *
// * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_postInstall
// */
// function donortierreport_civicrm_postInstall() {
// _donortierreport_civix_civicrm_postInstall();
// }