Ian province abbreviation patch - issue 724
[civicrm-core.git] / search / search.php
1 <?php
2
3 require_once 'search.civix.php';
4
5 /**
6 * Implements hook_civicrm_config().
7 *
8 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_config/
9 */
10 function search_civicrm_config(&$config) {
11 _search_civix_civicrm_config($config);
12 Civi::dispatcher()->addListener('hook_civicrm_alterAngular', ['\Civi\Search\AfformSearchMetadataInjector', 'preprocess'], 1000);
13 }
14
15 /**
16 * Implements hook_civicrm_xmlMenu().
17 *
18 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_xmlMenu
19 */
20 function search_civicrm_xmlMenu(&$files) {
21 _search_civix_civicrm_xmlMenu($files);
22 }
23
24 /**
25 * Implements hook_civicrm_install().
26 *
27 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_install
28 */
29 function search_civicrm_install() {
30 _search_civix_civicrm_install();
31 }
32
33 /**
34 * Implements hook_civicrm_postInstall().
35 *
36 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_postInstall
37 */
38 function search_civicrm_postInstall() {
39 _search_civix_civicrm_postInstall();
40 }
41
42 /**
43 * Implements hook_civicrm_uninstall().
44 *
45 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_uninstall
46 */
47 function search_civicrm_uninstall() {
48 _search_civix_civicrm_uninstall();
49 }
50
51 /**
52 * Implements hook_civicrm_enable().
53 *
54 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_enable
55 */
56 function search_civicrm_enable() {
57 _search_civix_civicrm_enable();
58 }
59
60 /**
61 * Implements hook_civicrm_disable().
62 *
63 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_disable
64 */
65 function search_civicrm_disable() {
66 _search_civix_civicrm_disable();
67 }
68
69 /**
70 * Implements hook_civicrm_upgrade().
71 *
72 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_upgrade
73 */
74 function search_civicrm_upgrade($op, CRM_Queue_Queue $queue = NULL) {
75 return _search_civix_civicrm_upgrade($op, $queue);
76 }
77
78 /**
79 * Implements hook_civicrm_managed().
80 *
81 * Generate a list of entities to create/deactivate/delete when this module
82 * is installed, disabled, uninstalled.
83 *
84 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_managed
85 */
86 function search_civicrm_managed(&$entities) {
87 _search_civix_civicrm_managed($entities);
88 }
89
90 /**
91 * Implements hook_civicrm_angularModules().
92 *
93 * Generate a list of Angular modules.
94 *
95 * Note: This hook only runs in CiviCRM 4.5+. It may
96 * use features only available in v4.6+.
97 *
98 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_angularModules
99 */
100 function search_civicrm_angularModules(&$angularModules) {
101 _search_civix_civicrm_angularModules($angularModules);
102 }
103
104 /**
105 * Implements hook_civicrm_alterSettingsFolders().
106 *
107 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_alterSettingsFolders
108 */
109 function search_civicrm_alterSettingsFolders(&$metaDataFolders = NULL) {
110 _search_civix_civicrm_alterSettingsFolders($metaDataFolders);
111 }
112
113 /**
114 * Implements hook_civicrm_entityTypes().
115 *
116 * Declare entity types provided by this module.
117 *
118 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_entityTypes
119 */
120 function search_civicrm_entityTypes(&$entityTypes) {
121 _search_civix_civicrm_entityTypes($entityTypes);
122 }
123
124 /**
125 * Implements hook_civicrm_themes().
126 */
127 function search_civicrm_themes(&$themes) {
128 _search_civix_civicrm_themes($themes);
129 }
130
131 /**
132 * Implements hook_civicrm_pre().
133 */
134 function search_civicrm_pre($op, $entity, $id, &$params) {
135 // Supply default name/label when creating new SearchDisplay
136 if ($entity === 'SearchDisplay' && $op === 'create') {
137 if (empty($params['label'])) {
138 $params['label'] = $params['name'];
139 }
140 elseif (empty($params['name'])) {
141 $params['name'] = \CRM_Utils_String::munge($params['label']);
142 }
143 }
144 }