CiviGrant - Move CRM & API code from core to extension
[civicrm-core.git] / ext / civigrant / civigrant.php
CommitLineData
34066907
CW
1<?php
2
3require_once 'civigrant.civix.php';
4use CRM_Grant_ExtensionUtil as E;
5
6/**
7 * Implements hook_civicrm_config().
8 *
9 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_config/
10 */
11function civigrant_civicrm_config(&$config) {
12 _civigrant_civix_civicrm_config($config);
13}
14
15/**
16 * Implements hook_civicrm_alterSettingsFolders().
17 *
18 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_alterSettingsFolders
19 */
20function civigrant_civicrm_alterSettingsFolders(&$metaDataFolders = NULL) {
21 _civigrant_civix_civicrm_alterSettingsFolders($metaDataFolders);
22}
23
24/**
25 * Implements hook_civicrm_entityTypes().
26 *
27 * Declare entity types provided by this module.
28 *
29 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_entityTypes
30 */
31function civigrant_civicrm_entityTypes(&$entityTypes) {
32 _civigrant_civix_civicrm_entityTypes($entityTypes);
33}