authx - Generate skeleton
[civicrm-core.git] / ext / authx / authx.php
CommitLineData
7946d659
TO
1<?php
2
3require_once 'authx.civix.php';
4// phpcs:disable
5use CRM_Authx_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 authx_civicrm_config(&$config) {
14 _authx_civix_civicrm_config($config);
15}
16
17/**
18 * Implements hook_civicrm_xmlMenu().
19 *
20 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_xmlMenu
21 */
22function authx_civicrm_xmlMenu(&$files) {
23 _authx_civix_civicrm_xmlMenu($files);
24}
25
26/**
27 * Implements hook_civicrm_install().
28 *
29 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_install
30 */
31function authx_civicrm_install() {
32 _authx_civix_civicrm_install();
33}
34
35/**
36 * Implements hook_civicrm_postInstall().
37 *
38 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_postInstall
39 */
40function authx_civicrm_postInstall() {
41 _authx_civix_civicrm_postInstall();
42}
43
44/**
45 * Implements hook_civicrm_uninstall().
46 *
47 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_uninstall
48 */
49function authx_civicrm_uninstall() {
50 _authx_civix_civicrm_uninstall();
51}
52
53/**
54 * Implements hook_civicrm_enable().
55 *
56 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_enable
57 */
58function authx_civicrm_enable() {
59 _authx_civix_civicrm_enable();
60}
61
62/**
63 * Implements hook_civicrm_disable().
64 *
65 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_disable
66 */
67function authx_civicrm_disable() {
68 _authx_civix_civicrm_disable();
69}
70
71/**
72 * Implements hook_civicrm_upgrade().
73 *
74 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_upgrade
75 */
76function authx_civicrm_upgrade($op, CRM_Queue_Queue $queue = NULL) {
77 return _authx_civix_civicrm_upgrade($op, $queue);
78}
79
80/**
81 * Implements hook_civicrm_managed().
82 *
83 * Generate a list of entities to create/deactivate/delete when this module
84 * is installed, disabled, uninstalled.
85 *
86 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_managed
87 */
88function authx_civicrm_managed(&$entities) {
89 _authx_civix_civicrm_managed($entities);
90}
91
92/**
93 * Implements hook_civicrm_caseTypes().
94 *
95 * Generate a list of case-types.
96 *
97 * Note: This hook only runs in CiviCRM 4.4+.
98 *
99 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_caseTypes
100 */
101function authx_civicrm_caseTypes(&$caseTypes) {
102 _authx_civix_civicrm_caseTypes($caseTypes);
103}
104
105/**
106 * Implements hook_civicrm_angularModules().
107 *
108 * Generate a list of Angular modules.
109 *
110 * Note: This hook only runs in CiviCRM 4.5+. It may
111 * use features only available in v4.6+.
112 *
113 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_angularModules
114 */
115function authx_civicrm_angularModules(&$angularModules) {
116 _authx_civix_civicrm_angularModules($angularModules);
117}
118
119/**
120 * Implements hook_civicrm_alterSettingsFolders().
121 *
122 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_alterSettingsFolders
123 */
124function authx_civicrm_alterSettingsFolders(&$metaDataFolders = NULL) {
125 _authx_civix_civicrm_alterSettingsFolders($metaDataFolders);
126}
127
128/**
129 * Implements hook_civicrm_entityTypes().
130 *
131 * Declare entity types provided by this module.
132 *
133 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_entityTypes
134 */
135function authx_civicrm_entityTypes(&$entityTypes) {
136 _authx_civix_civicrm_entityTypes($entityTypes);
137}
138
139/**
140 * Implements hook_civicrm_thems().
141 */
142function authx_civicrm_themes(&$themes) {
143 _authx_civix_civicrm_themes($themes);
144}
145
146// --- Functions below this ship commented out. Uncomment as required. ---
147
148/**
149 * Implements hook_civicrm_preProcess().
150 *
151 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_preProcess
152 */
153//function authx_civicrm_preProcess($formName, &$form) {
154//
155//}
156
157/**
158 * Implements hook_civicrm_navigationMenu().
159 *
160 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_navigationMenu
161 */
162//function authx_civicrm_navigationMenu(&$menu) {
163// _authx_civix_insert_navigation_menu($menu, 'Mailings', array(
164// 'label' => E::ts('New subliminal message'),
165// 'name' => 'mailing_subliminal_message',
166// 'url' => 'civicrm/mailing/subliminal',
167// 'permission' => 'access CiviMail',
168// 'operator' => 'OR',
169// 'separator' => 0,
170// ));
171// _authx_civix_navigationMenu($menu);
172//}