Merge pull request #21513 from JKingsnorth/core-2846-1-improve-start-end-date-validation
[civicrm-core.git] / ext / civicrm_admin_ui / civicrm_admin_ui.php
CommitLineData
aa40d9a7
CW
1<?php
2
3require_once 'civicrm_admin_ui.civix.php';
4// phpcs:disable
5use 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 */
13function 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 */
24function civicrm_admin_ui_civicrm_entityTypes(&$entityTypes) {
25 _civicrm_admin_ui_civix_civicrm_entityTypes($entityTypes);
26}