Merge pull request #23734 from eileenmcnaughton/import_custom
[civicrm-core.git] / ext / civicrm_admin_ui / civicrm_admin_ui.php
1 <?php
2
3 require_once 'civicrm_admin_ui.civix.php';
4 // phpcs:disable
5 use CRM_CivicrmAdminUi_ExtensionUtil as E;
6 // phpcs:enable
7
8 /**
9 * Implements hook_civicrm_config().
10 *
11 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_config/
12 */
13 function civicrm_admin_ui_civicrm_config(&$config) {
14 _civicrm_admin_ui_civix_civicrm_config($config);
15 }
16
17 /**
18 * Implements hook_civicrm_entityTypes().
19 *
20 * Declare entity types provided by this module.
21 *
22 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_entityTypes
23 */
24 function civicrm_admin_ui_civicrm_entityTypes(&$entityTypes) {
25 _civicrm_admin_ui_civix_civicrm_entityTypes($entityTypes);
26 }