mirror of
https://codeberg.org/artfulrobot/contactcats.git
synced 2025-06-25 05:08:04 +02:00
32 lines
736 B
PHP
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();
|
|
}
|