contactcats/contactcats.php
Rich Lott / Artful Robot 3b393be4f4 initial commit
2024-02-27 18:34:28 +00:00

32 lines
736 B
PHP

<?php
require_once 'contactcats.civix.php';
use CRM_Contactcats_ExtensionUtil as E;
/**
* Implements hook_civicrm_config().
*
* @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_config/
*/
function contactcats_civicrm_config(&$config): void {
_contactcats_civix_civicrm_config($config);
}
/**
* Implements hook_civicrm_install().
*
* @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_install
*/
function contactcats_civicrm_install(): void {
_contactcats_civix_civicrm_install();
}
/**
* Implements hook_civicrm_enable().
*
* @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_enable
*/
function contactcats_civicrm_enable(): void {
_contactcats_civix_civicrm_enable();
}