Merge pull request #23684 from colemanw/relationshipCachePermissions
[civicrm-core.git] / ext / afform / admin / afform_admin.php
CommitLineData
6bc5e930
TO
1<?php
2
5e4accea
CW
3require_once 'afform_admin.civix.php';
4use CRM_AfformAdmin_ExtensionUtil as E;
6bc5e930
TO
5
6/**
7 * Implements hook_civicrm_config().
8 *
9 * @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_config
10 */
5e4accea
CW
11function afform_admin_civicrm_config(&$config) {
12 _afform_admin_civix_civicrm_config($config);
6bc5e930
TO
13}
14
6bc5e930
TO
15/**
16 * Implements hook_civicrm_install().
17 *
18 * @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_install
19 */
5e4accea
CW
20function afform_admin_civicrm_install() {
21 _afform_admin_civix_civicrm_install();
6bc5e930
TO
22}
23
24/**
25 * Implements hook_civicrm_postInstall().
26 *
27 * @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_postInstall
28 */
5e4accea
CW
29function afform_admin_civicrm_postInstall() {
30 _afform_admin_civix_civicrm_postInstall();
6bc5e930
TO
31}
32
33/**
34 * Implements hook_civicrm_uninstall().
35 *
36 * @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_uninstall
37 */
5e4accea
CW
38function afform_admin_civicrm_uninstall() {
39 _afform_admin_civix_civicrm_uninstall();
6bc5e930
TO
40}
41
42/**
43 * Implements hook_civicrm_enable().
44 *
45 * @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_enable
46 */
5e4accea
CW
47function afform_admin_civicrm_enable() {
48 _afform_admin_civix_civicrm_enable();
6bc5e930
TO
49}
50
51/**
52 * Implements hook_civicrm_disable().
53 *
54 * @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_disable
55 */
5e4accea
CW
56function afform_admin_civicrm_disable() {
57 _afform_admin_civix_civicrm_disable();
6bc5e930
TO
58}
59
60/**
61 * Implements hook_civicrm_upgrade().
62 *
63 * @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_upgrade
64 */
5e4accea
CW
65function afform_admin_civicrm_upgrade($op, CRM_Queue_Queue $queue = NULL) {
66 return _afform_admin_civix_civicrm_upgrade($op, $queue);
6bc5e930
TO
67}
68
6bc5e930
TO
69/**
70 * Implements hook_civicrm_entityTypes().
71 *
72 * Declare entity types provided by this module.
73 *
74 * @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_entityTypes
75 */
5e4accea
CW
76function afform_admin_civicrm_entityTypes(&$entityTypes) {
77 _afform_admin_civix_civicrm_entityTypes($entityTypes);
6bc5e930 78}