mirror of
https://codeberg.org/artfulrobot/contactcats.git
synced 2025-06-25 12:08:04 +02:00
initial commit
This commit is contained in:
commit
3b393be4f4
16 changed files with 1594 additions and 0 deletions
32
contactcats.php
Normal file
32
contactcats.php
Normal file
|
@ -0,0 +1,32 @@
|
|||
<?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();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue