Commit | Line | Data |
---|---|---|
6a488035 TO |
1 | <?php |
2 | /* | |
3 | +--------------------------------------------------------------------+ | |
39de6fd5 | 4 | | CiviCRM version 4.6 | |
6a488035 | 5 | +--------------------------------------------------------------------+ |
06b69b18 | 6 | | Copyright CiviCRM LLC (c) 2004-2014 | |
6a488035 TO |
7 | +--------------------------------------------------------------------+ |
8 | | This file is a part of CiviCRM. | | |
9 | | | | |
10 | | CiviCRM is free software; you can copy, modify, and distribute it | | |
11 | | under the terms of the GNU Affero General Public License | | |
12 | | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. | | |
13 | | | | |
14 | | CiviCRM is distributed in the hope that it will be useful, but | | |
15 | | WITHOUT ANY WARRANTY; without even the implied warranty of | | |
16 | | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | | |
17 | | See the GNU Affero General Public License for more details. | | |
18 | | | | |
19 | | You should have received a copy of the GNU Affero General Public | | |
20 | | License and the CiviCRM Licensing Exception along | | |
21 | | with this program; if not, contact CiviCRM LLC | | |
22 | | at info[AT]civicrm[DOT]org. If you have questions about the | | |
23 | | GNU Affero General Public License or the licensing of CiviCRM, | | |
24 | | see the CiviCRM license FAQ at http://civicrm.org/licensing | | |
25 | +--------------------------------------------------------------------+ | |
d25dd0ee | 26 | */ |
6a488035 TO |
27 | |
28 | /** | |
29 | * | |
30 | * @package CiviCRM_Hook | |
06b69b18 | 31 | * @copyright CiviCRM LLC (c) 2004-2014 |
6a488035 TO |
32 | * $Id: $ |
33 | * | |
34 | */ | |
6a488035 TO |
35 | abstract class CRM_Utils_Hook { |
36 | ||
37 | // Allowed values for dashboard hook content placement | |
38 | // Default - place content below activity list | |
7da04cde | 39 | const DASHBOARD_BELOW = 1; |
6a488035 | 40 | // Place content above activity list |
7da04cde | 41 | const DASHBOARD_ABOVE = 2; |
6a488035 | 42 | // Don't display activity list at all |
7da04cde | 43 | const DASHBOARD_REPLACE = 3; |
6a488035 TO |
44 | |
45 | // by default - place content below existing content | |
7da04cde | 46 | const SUMMARY_BELOW = 1; |
6a488035 | 47 | // pace hook content above |
7da04cde | 48 | const SUMMARY_ABOVE = 2; |
6a488035 | 49 | // create your own summarys |
7da04cde | 50 | const SUMMARY_REPLACE = 3; |
6a488035 TO |
51 | |
52 | static $_nullObject = NULL; | |
53 | ||
54 | /** | |
55 | * We only need one instance of this object. So we use the singleton | |
56 | * pattern and cache the instance in this variable | |
57 | * | |
58 | * @var object | |
6a488035 TO |
59 | */ |
60 | static private $_singleton = NULL; | |
61 | ||
62 | /** | |
63 | * @var bool | |
64 | */ | |
65 | private $commonIncluded = FALSE; | |
66 | ||
67 | /** | |
68 | * @var array(string) | |
69 | */ | |
70 | private $commonCiviModules = array(); | |
71 | ||
72 | /** | |
fe482240 | 73 | * Constructor and getter for the singleton instance. |
6a488035 | 74 | * |
72536736 AH |
75 | * @param bool $fresh |
76 | * | |
77 | * @return self | |
78 | * An instance of $config->userHookClass | |
6a488035 | 79 | */ |
00be9182 | 80 | public static function singleton($fresh = FALSE) { |
6a488035 TO |
81 | if (self::$_singleton == NULL || $fresh) { |
82 | $config = CRM_Core_Config::singleton(); | |
83 | $class = $config->userHookClass; | |
e7292422 | 84 | require_once str_replace('_', DIRECTORY_SEPARATOR, $config->userHookClass) . '.php'; |
6a488035 TO |
85 | self::$_singleton = new $class(); |
86 | } | |
87 | return self::$_singleton; | |
88 | } | |
89 | ||
72536736 | 90 | /** |
fe482240 | 91 | * Invoke hooks. |
f0a7a0c9 | 92 | * |
77855840 TO |
93 | * @param int $numParams |
94 | * Number of parameters to pass to the hook. | |
95 | * @param mixed $arg1 | |
96 | * Parameter to be passed to the hook. | |
97 | * @param mixed $arg2 | |
98 | * Parameter to be passed to the hook. | |
99 | * @param mixed $arg3 | |
100 | * Parameter to be passed to the hook. | |
101 | * @param mixed $arg4 | |
102 | * Parameter to be passed to the hook. | |
103 | * @param mixed $arg5 | |
104 | * Parameter to be passed to the hook. | |
105 | * @param mixed $arg6 | |
106 | * Parameter to be passed to the hook. | |
107 | * @param string $fnSuffix | |
108 | * Function suffix, this is effectively the hook name. | |
72536736 AH |
109 | * |
110 | * @return mixed | |
111 | */ | |
37cd2432 | 112 | public abstract function invoke( |
a3e55d9c | 113 | $numParams, |
87dab4a4 | 114 | &$arg1, &$arg2, &$arg3, &$arg4, &$arg5, &$arg6, |
6a488035 TO |
115 | $fnSuffix |
116 | ); | |
117 | ||
5bc392e6 | 118 | /** |
100fef9d | 119 | * @param array $numParams |
5bc392e6 EM |
120 | * @param $arg1 |
121 | * @param $arg2 | |
122 | * @param $arg3 | |
123 | * @param $arg4 | |
124 | * @param $arg5 | |
125 | * @param $arg6 | |
126 | * @param $fnSuffix | |
127 | * @param $fnPrefix | |
128 | * | |
129 | * @return array|bool | |
130 | */ | |
37cd2432 | 131 | public function commonInvoke( |
a3e55d9c | 132 | $numParams, |
87dab4a4 | 133 | &$arg1, &$arg2, &$arg3, &$arg4, &$arg5, &$arg6, |
6a488035 TO |
134 | $fnSuffix, $fnPrefix |
135 | ) { | |
136 | ||
137 | $this->commonBuildModuleList($fnPrefix); | |
4636d4fd | 138 | |
6a488035 | 139 | return $this->runHooks($this->commonCiviModules, $fnSuffix, |
87dab4a4 | 140 | $numParams, $arg1, $arg2, $arg3, $arg4, $arg5, $arg6 |
6a488035 TO |
141 | ); |
142 | } | |
143 | ||
144 | /** | |
145 | * Build the list of modules to be processed for hooks. | |
72536736 AH |
146 | * |
147 | * @param string $fnPrefix | |
6a488035 | 148 | */ |
00be9182 | 149 | public function commonBuildModuleList($fnPrefix) { |
6a488035 TO |
150 | if (!$this->commonIncluded) { |
151 | // include external file | |
152 | $this->commonIncluded = TRUE; | |
153 | ||
154 | $config = CRM_Core_Config::singleton(); | |
155 | if (!empty($config->customPHPPathDir) && | |
156 | file_exists("{$config->customPHPPathDir}/civicrmHooks.php") | |
157 | ) { | |
e7292422 | 158 | @include_once "civicrmHooks.php"; |
6a488035 TO |
159 | } |
160 | ||
161 | if (!empty($fnPrefix)) { | |
162 | $this->commonCiviModules[$fnPrefix] = $fnPrefix; | |
163 | } | |
164 | ||
165 | $this->requireCiviModules($this->commonCiviModules); | |
166 | } | |
167 | } | |
168 | ||
72536736 AH |
169 | /** |
170 | * @param $civiModules | |
171 | * @param $fnSuffix | |
100fef9d | 172 | * @param array $numParams |
72536736 AH |
173 | * @param $arg1 |
174 | * @param $arg2 | |
175 | * @param $arg3 | |
176 | * @param $arg4 | |
177 | * @param $arg5 | |
178 | * @param $arg6 | |
179 | * | |
180 | * @return array|bool | |
181 | */ | |
37cd2432 | 182 | public function runHooks( |
a3e55d9c | 183 | $civiModules, $fnSuffix, $numParams, |
87dab4a4 | 184 | &$arg1, &$arg2, &$arg3, &$arg4, &$arg5, &$arg6 |
6a488035 | 185 | ) { |
3ac9ab1c TO |
186 | // $civiModules is *not* passed by reference because runHooks |
187 | // must be reentrant. PHP is finicky about running | |
188 | // multiple loops over the same variable. The circumstances | |
189 | // to reproduce the issue are pretty intricate. | |
1cba072e | 190 | $result = array(); |
6a488035 | 191 | |
4636d4fd DL |
192 | if ($civiModules !== NULL) { |
193 | foreach ($civiModules as $module) { | |
194 | $fnName = "{$module}_{$fnSuffix}"; | |
195 | if (function_exists($fnName)) { | |
1cba072e | 196 | $fResult = array(); |
4636d4fd DL |
197 | switch ($numParams) { |
198 | case 0: | |
199 | $fResult = $fnName(); | |
200 | break; | |
201 | ||
202 | case 1: | |
203 | $fResult = $fnName($arg1); | |
204 | break; | |
205 | ||
206 | case 2: | |
207 | $fResult = $fnName($arg1, $arg2); | |
208 | break; | |
209 | ||
210 | case 3: | |
211 | $fResult = $fnName($arg1, $arg2, $arg3); | |
212 | break; | |
213 | ||
214 | case 4: | |
215 | $fResult = $fnName($arg1, $arg2, $arg3, $arg4); | |
216 | break; | |
217 | ||
218 | case 5: | |
219 | $fResult = $fnName($arg1, $arg2, $arg3, $arg4, $arg5); | |
220 | break; | |
221 | ||
87dab4a4 AH |
222 | case 6: |
223 | $fResult = $fnName($arg1, $arg2, $arg3, $arg4, $arg5, $arg6); | |
224 | break; | |
f0a7a0c9 | 225 | |
4636d4fd DL |
226 | default: |
227 | CRM_Core_Error::fatal(ts('Invalid hook invocation')); | |
228 | break; | |
229 | } | |
6a488035 | 230 | |
1cba072e | 231 | if (!empty($fResult) && |
37cd2432 TO |
232 | is_array($fResult) |
233 | ) { | |
1cba072e HH |
234 | $result = array_merge($result, $fResult); |
235 | } | |
4636d4fd | 236 | } |
6a488035 TO |
237 | } |
238 | } | |
239 | ||
240 | return empty($result) ? TRUE : $result; | |
241 | } | |
242 | ||
5bc392e6 EM |
243 | /** |
244 | * @param $moduleList | |
245 | */ | |
00be9182 | 246 | public function requireCiviModules(&$moduleList) { |
6a488035 TO |
247 | $civiModules = CRM_Core_PseudoConstant::getModuleExtensions(); |
248 | foreach ($civiModules as $civiModule) { | |
249 | if (!file_exists($civiModule['filePath'])) { | |
250 | CRM_Core_Session::setStatus( | |
481a74f4 TO |
251 | ts('Error loading module file (%1). Please restore the file or disable the module.', |
252 | array(1 => $civiModule['filePath'])), | |
253 | ts('Warning'), 'error'); | |
6a488035 TO |
254 | continue; |
255 | } | |
256 | include_once $civiModule['filePath']; | |
257 | $moduleList[$civiModule['prefix']] = $civiModule['prefix']; | |
6a488035 | 258 | } |
e7292422 | 259 | } |
6a488035 TO |
260 | |
261 | /** | |
262 | * This hook is called before a db write on some core objects. | |
263 | * This hook does not allow the abort of the operation | |
264 | * | |
77855840 TO |
265 | * @param string $op |
266 | * The type of operation being performed. | |
267 | * @param string $objectName | |
268 | * The name of the object. | |
269 | * @param int $id | |
270 | * The object id if available. | |
271 | * @param array $params | |
272 | * The parameters used for object creation / editing. | |
6a488035 | 273 | * |
a6c01b45 CW |
274 | * @return null |
275 | * the return value is ignored | |
6a488035 | 276 | */ |
00be9182 | 277 | public static function pre($op, $objectName, $id, &$params) { |
fd901044 TO |
278 | $event = new \Civi\Core\Event\PreEvent($op, $objectName, $id, $params); |
279 | \Civi\Core\Container::singleton()->get('dispatcher')->dispatch("hook_civicrm_pre", $event); | |
280 | \Civi\Core\Container::singleton()->get('dispatcher')->dispatch("hook_civicrm_pre::$objectName", $event); | |
37cd2432 TO |
281 | return self::singleton() |
282 | ->invoke(4, $op, $objectName, $id, $params, self::$_nullObject, self::$_nullObject, 'civicrm_pre'); | |
6a488035 TO |
283 | } |
284 | ||
285 | /** | |
286 | * This hook is called after a db write on some core objects. | |
287 | * | |
77855840 TO |
288 | * @param string $op |
289 | * The type of operation being performed. | |
290 | * @param string $objectName | |
291 | * The name of the object. | |
292 | * @param int $objectId | |
293 | * The unique identifier for the object. | |
294 | * @param object $objectRef | |
295 | * The reference to the object if available. | |
6a488035 | 296 | * |
72b3a70c CW |
297 | * @return mixed |
298 | * based on op. pre-hooks return a boolean or | |
6a488035 | 299 | * an error message which aborts the operation |
6a488035 | 300 | */ |
00be9182 | 301 | public static function post($op, $objectName, $objectId, &$objectRef) { |
fd901044 TO |
302 | $event = new \Civi\Core\Event\PostEvent($op, $objectName, $objectId, $objectRef); |
303 | \Civi\Core\Container::singleton()->get('dispatcher')->dispatch("hook_civicrm_post", $event); | |
304 | \Civi\Core\Container::singleton()->get('dispatcher')->dispatch("hook_civicrm_post::$objectName", $event); | |
37cd2432 TO |
305 | return self::singleton() |
306 | ->invoke(4, $op, $objectName, $objectId, $objectRef, self::$_nullObject, self::$_nullObject, 'civicrm_post'); | |
6a488035 TO |
307 | } |
308 | ||
6a488035 | 309 | /** |
fe482240 | 310 | * This hook retrieves links from other modules and injects it into. |
6a488035 TO |
311 | * the view contact tabs |
312 | * | |
77855840 TO |
313 | * @param string $op |
314 | * The type of operation being performed. | |
315 | * @param string $objectName | |
316 | * The name of the object. | |
317 | * @param int $objectId | |
318 | * The unique identifier for the object. | |
319 | * @param array $links | |
320 | * (optional) the links array (introduced in v3.2). | |
321 | * @param int $mask | |
322 | * (optional) the bitmask to show/hide links. | |
323 | * @param array $values | |
324 | * (optional) the values to fill the links. | |
6a488035 | 325 | * |
a6c01b45 CW |
326 | * @return null |
327 | * the return value is ignored | |
6a488035 | 328 | */ |
00be9182 | 329 | public static function links($op, $objectName, &$objectId, &$links, &$mask = NULL, &$values = array()) { |
87dab4a4 | 330 | return self::singleton()->invoke(6, $op, $objectName, $objectId, $links, $mask, $values, 'civicrm_links'); |
6a488035 TO |
331 | } |
332 | ||
21d2903d AN |
333 | /** |
334 | * This hook is invoked during the CiviCRM form preProcess phase. | |
335 | * | |
77855840 TO |
336 | * @param string $formName |
337 | * The name of the form. | |
338 | * @param CRM_Core_Form $form | |
339 | * Reference to the form object. | |
21d2903d | 340 | * |
a6c01b45 CW |
341 | * @return null |
342 | * the return value is ignored | |
21d2903d | 343 | */ |
00be9182 | 344 | public static function preProcess($formName, &$form) { |
37cd2432 | 345 | return self::singleton() |
353ffa53 | 346 | ->invoke(2, $formName, $form, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, 'civicrm_preProcess'); |
21d2903d AN |
347 | } |
348 | ||
6a488035 TO |
349 | /** |
350 | * This hook is invoked when building a CiviCRM form. This hook should also | |
351 | * be used to set the default values of a form element | |
352 | * | |
77855840 TO |
353 | * @param string $formName |
354 | * The name of the form. | |
355 | * @param CRM_Core_Form $form | |
356 | * Reference to the form object. | |
6a488035 | 357 | * |
a6c01b45 CW |
358 | * @return null |
359 | * the return value is ignored | |
6a488035 | 360 | */ |
00be9182 | 361 | public static function buildForm($formName, &$form) { |
37cd2432 TO |
362 | return self::singleton()->invoke(2, $formName, $form, |
363 | self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, | |
364 | 'civicrm_buildForm' | |
365 | ); | |
6a488035 TO |
366 | } |
367 | ||
368 | /** | |
369 | * This hook is invoked when a CiviCRM form is submitted. If the module has injected | |
370 | * any form elements, this hook should save the values in the database | |
371 | * | |
77855840 TO |
372 | * @param string $formName |
373 | * The name of the form. | |
374 | * @param CRM_Core_Form $form | |
375 | * Reference to the form object. | |
6a488035 | 376 | * |
a6c01b45 CW |
377 | * @return null |
378 | * the return value is ignored | |
6a488035 | 379 | */ |
00be9182 | 380 | public static function postProcess($formName, &$form) { |
37cd2432 TO |
381 | return self::singleton()->invoke(2, $formName, $form, |
382 | self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, | |
383 | 'civicrm_postProcess' | |
384 | ); | |
6a488035 TO |
385 | } |
386 | ||
387 | /** | |
388 | * This hook is invoked during all CiviCRM form validation. An array of errors | |
389 | * detected is returned. Else we assume validation succeeded. | |
390 | * | |
77855840 TO |
391 | * @param string $formName |
392 | * The name of the form. | |
393 | * @param array &$fields the POST parameters as filtered by QF | |
394 | * @param array &$files the FILES parameters as sent in by POST | |
395 | * @param array &$form the form object | |
6a488035 | 396 | * |
72b3a70c CW |
397 | * @return mixed |
398 | * formRule hooks return a boolean or | |
6a488035 | 399 | * an array of error messages which display a QF Error |
6a488035 | 400 | */ |
00be9182 | 401 | public static function validate($formName, &$fields, &$files, &$form) { |
37cd2432 TO |
402 | return self::singleton() |
403 | ->invoke(4, $formName, $fields, $files, $form, self::$_nullObject, self::$_nullObject, 'civicrm_validate'); | |
6a488035 TO |
404 | } |
405 | ||
406 | /** | |
407 | * This hook is invoked during all CiviCRM form validation. An array of errors | |
408 | * detected is returned. Else we assume validation succeeded. | |
409 | * | |
77855840 TO |
410 | * @param string $formName |
411 | * The name of the form. | |
412 | * @param array &$fields the POST parameters as filtered by QF | |
413 | * @param array &$files the FILES parameters as sent in by POST | |
414 | * @param array &$form the form object | |
415 | * @param array &$errors the array of errors. | |
6a488035 | 416 | * |
72b3a70c CW |
417 | * @return mixed |
418 | * formRule hooks return a boolean or | |
6a488035 | 419 | * an array of error messages which display a QF Error |
6a488035 | 420 | */ |
00be9182 | 421 | public static function validateForm($formName, &$fields, &$files, &$form, &$errors) { |
37cd2432 TO |
422 | return self::singleton() |
423 | ->invoke(5, $formName, $fields, $files, $form, $errors, self::$_nullObject, 'civicrm_validateForm'); | |
6a488035 TO |
424 | } |
425 | ||
426 | /** | |
fe482240 | 427 | * This hook is called before a db write on a custom table. |
6a488035 | 428 | * |
77855840 TO |
429 | * @param string $op |
430 | * The type of operation being performed. | |
431 | * @param string $groupID | |
432 | * The custom group ID. | |
433 | * @param object $entityID | |
434 | * The entityID of the row in the custom table. | |
435 | * @param array $params | |
436 | * The parameters that were sent into the calling function. | |
6a488035 | 437 | * |
a6c01b45 CW |
438 | * @return null |
439 | * the return value is ignored | |
6a488035 | 440 | */ |
00be9182 | 441 | public static function custom($op, $groupID, $entityID, &$params) { |
37cd2432 TO |
442 | return self::singleton() |
443 | ->invoke(4, $op, $groupID, $entityID, $params, self::$_nullObject, self::$_nullObject, 'civicrm_custom'); | |
6a488035 TO |
444 | } |
445 | ||
446 | /** | |
447 | * This hook is called when composing the ACL where clause to restrict | |
448 | * visibility of contacts to the logged in user | |
449 | * | |
77855840 TO |
450 | * @param int $type |
451 | * The type of permission needed. | |
452 | * @param array $tables | |
453 | * (reference ) add the tables that are needed for the select clause. | |
454 | * @param array $whereTables | |
455 | * (reference ) add the tables that are needed for the where clause. | |
456 | * @param int $contactID | |
457 | * The contactID for whom the check is made. | |
458 | * @param string $where | |
459 | * The currrent where clause. | |
6a488035 | 460 | * |
a6c01b45 CW |
461 | * @return null |
462 | * the return value is ignored | |
6a488035 | 463 | */ |
00be9182 | 464 | public static function aclWhereClause($type, &$tables, &$whereTables, &$contactID, &$where) { |
37cd2432 TO |
465 | return self::singleton() |
466 | ->invoke(5, $type, $tables, $whereTables, $contactID, $where, self::$_nullObject, 'civicrm_aclWhereClause'); | |
6a488035 TO |
467 | } |
468 | ||
469 | /** | |
470 | * This hook is called when composing the ACL where clause to restrict | |
471 | * visibility of contacts to the logged in user | |
472 | * | |
77855840 TO |
473 | * @param int $type |
474 | * The type of permission needed. | |
475 | * @param int $contactID | |
476 | * The contactID for whom the check is made. | |
477 | * @param string $tableName | |
478 | * The tableName which is being permissioned. | |
479 | * @param array $allGroups | |
480 | * The set of all the objects for the above table. | |
481 | * @param array $currentGroups | |
482 | * The set of objects that are currently permissioned for this contact. | |
6a488035 | 483 | * |
a6c01b45 CW |
484 | * @return null |
485 | * the return value is ignored | |
6a488035 | 486 | */ |
00be9182 | 487 | public static function aclGroup($type, $contactID, $tableName, &$allGroups, &$currentGroups) { |
37cd2432 TO |
488 | return self::singleton() |
489 | ->invoke(5, $type, $contactID, $tableName, $allGroups, $currentGroups, self::$_nullObject, 'civicrm_aclGroup'); | |
6a488035 TO |
490 | } |
491 | ||
492 | /** | |
fe482240 | 493 | * This hook is called when building the menu table. |
6a488035 | 494 | * |
77855840 TO |
495 | * @param array $files |
496 | * The current set of files to process. | |
6a488035 | 497 | * |
a6c01b45 CW |
498 | * @return null |
499 | * the return value is ignored | |
6a488035 | 500 | */ |
00be9182 | 501 | public static function xmlMenu(&$files) { |
6a488035 | 502 | return self::singleton()->invoke(1, $files, |
87dab4a4 | 503 | self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, |
6a488035 TO |
504 | 'civicrm_xmlMenu' |
505 | ); | |
506 | } | |
507 | ||
508 | /** | |
88718db2 | 509 | * This hook is called for declaring managed entities via API. |
6a488035 | 510 | * |
77855840 | 511 | * @param array $entities |
88718db2 TO |
512 | * List of pending entities. Each entity is an array with keys: |
513 | * + 'module': string; for module-extensions, this is the fully-qualifed name (e.g. "com.example.mymodule"); for CMS modules, the name is prefixed by the CMS (e.g. "drupal.mymodule") | |
514 | * + 'name': string, a symbolic name which can be used to track this entity (Note: Each module creates its own namespace) | |
515 | * + 'entity': string, an entity-type supported by the CiviCRM API (Note: this currently must be an entity which supports the 'is_active' property) | |
516 | * + 'params': array, the entity data as supported by the CiviCRM API | |
517 | * + 'update' (v4.5+): string, a policy which describes when to update records | |
518 | * - 'always' (default): always update the managed-entity record; changes in $entities will override any local changes (eg by the site-admin) | |
519 | * - 'never': never update the managed-entity record; changes made locally (eg by the site-admin) will override changes in $entities | |
520 | * + 'cleanup' (v4.5+): string, a policy which describes whether to cleanup the record when it becomes orphaned (ie when $entities no longer references the record) | |
521 | * - 'always' (default): always delete orphaned records | |
522 | * - 'never': never delete orphaned records | |
523 | * - 'unused': only delete orphaned records if there are no other references to it in the DB. (This is determined by calling the API's "getrefcount" action.) | |
6a488035 | 524 | * |
a6c01b45 CW |
525 | * @return null |
526 | * the return value is ignored | |
6a488035 | 527 | */ |
00be9182 | 528 | public static function managed(&$entities) { |
6a488035 | 529 | return self::singleton()->invoke(1, $entities, |
87dab4a4 | 530 | self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, |
6a488035 TO |
531 | 'civicrm_managed' |
532 | ); | |
533 | } | |
534 | ||
535 | /** | |
536 | * This hook is called when rendering the dashboard (q=civicrm/dashboard) | |
537 | * | |
77855840 TO |
538 | * @param int $contactID |
539 | * The contactID for whom the dashboard is being rendered. | |
540 | * @param int $contentPlacement | |
541 | * (output parameter) where should the hook content be displayed. | |
9399901d | 542 | * relative to the activity list |
6a488035 | 543 | * |
a6c01b45 CW |
544 | * @return string |
545 | * the html snippet to include in the dashboard | |
6a488035 | 546 | */ |
00be9182 | 547 | public static function dashboard($contactID, &$contentPlacement = self::DASHBOARD_BELOW) { |
6a488035 | 548 | $retval = self::singleton()->invoke(2, $contactID, $contentPlacement, |
87dab4a4 | 549 | self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, |
6a488035 TO |
550 | 'civicrm_dashboard' |
551 | ); | |
552 | ||
553 | /* | |
554 | * Note we need this seemingly unnecessary code because in the event that the implementation | |
555 | * of the hook declares the second parameter but doesn't set it, then it comes back unset even | |
556 | * though we have a default value in this function's declaration above. | |
557 | */ | |
558 | if (!isset($contentPlacement)) { | |
559 | $contentPlacement = self::DASHBOARD_BELOW; | |
560 | } | |
561 | ||
562 | return $retval; | |
563 | } | |
564 | ||
565 | /** | |
566 | * This hook is called before storing recently viewed items. | |
567 | * | |
77855840 TO |
568 | * @param array $recentArray |
569 | * An array of recently viewed or processed items, for in place modification. | |
6a488035 TO |
570 | * |
571 | * @return array | |
6a488035 | 572 | */ |
00be9182 | 573 | public static function recent(&$recentArray) { |
6a488035 | 574 | return self::singleton()->invoke(1, $recentArray, |
87dab4a4 | 575 | self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, |
6a488035 TO |
576 | 'civicrm_recent' |
577 | ); | |
578 | } | |
579 | ||
91dee34b | 580 | /** |
fe482240 | 581 | * Determine how many other records refer to a given record. |
91dee34b | 582 | * |
77855840 TO |
583 | * @param CRM_Core_DAO $dao |
584 | * The item for which we want a reference count. | |
585 | * @param array $refCounts | |
16b10e64 | 586 | * Each item in the array is an Array with keys: |
91dee34b TO |
587 | * - name: string, eg "sql:civicrm_email:contact_id" |
588 | * - type: string, eg "sql" | |
589 | * - count: int, eg "5" if there are 5 email addresses that refer to $dao | |
590 | * @return void | |
591 | */ | |
00be9182 | 592 | public static function referenceCounts($dao, &$refCounts) { |
91dee34b TO |
593 | return self::singleton()->invoke(2, $dao, $refCounts, |
594 | self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, | |
595 | 'civicrm_referenceCounts' | |
596 | ); | |
597 | } | |
598 | ||
6a488035 | 599 | /** |
fe482240 | 600 | * This hook is called when building the amount structure for a Contribution or Event Page. |
6a488035 | 601 | * |
77855840 TO |
602 | * @param int $pageType |
603 | * Is this a contribution or event page. | |
604 | * @param CRM_Core_Form $form | |
605 | * Reference to the form object. | |
606 | * @param array $amount | |
607 | * The amount structure to be displayed. | |
6a488035 TO |
608 | * |
609 | * @return null | |
6a488035 | 610 | */ |
00be9182 | 611 | public static function buildAmount($pageType, &$form, &$amount) { |
9399901d | 612 | return self::singleton()->invoke(3, $pageType, $form, $amount, self::$_nullObject, |
87dab4a4 | 613 | self::$_nullObject, self::$_nullObject, 'civicrm_buildAmount'); |
6a488035 TO |
614 | } |
615 | ||
616 | /** | |
617 | * This hook is called when building the state list for a particular country. | |
618 | * | |
72536736 AH |
619 | * @param array $countryID |
620 | * The country id whose states are being selected. | |
621 | * @param $states | |
6a488035 TO |
622 | * |
623 | * @return null | |
6a488035 | 624 | */ |
00be9182 | 625 | public static function buildStateProvinceForCountry($countryID, &$states) { |
6a488035 | 626 | return self::singleton()->invoke(2, $countryID, $states, |
87dab4a4 | 627 | self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, |
6a488035 TO |
628 | 'civicrm_buildStateProvinceForCountry' |
629 | ); | |
630 | } | |
631 | ||
632 | /** | |
633 | * This hook is called when rendering the tabs for a contact (q=civicrm/contact/view)c | |
634 | * | |
77855840 TO |
635 | * @param array $tabs |
636 | * The array of tabs that will be displayed. | |
637 | * @param int $contactID | |
638 | * The contactID for whom the dashboard is being rendered. | |
6a488035 TO |
639 | * |
640 | * @return null | |
6a488035 | 641 | */ |
00be9182 | 642 | public static function tabs(&$tabs, $contactID) { |
6a488035 | 643 | return self::singleton()->invoke(2, $tabs, $contactID, |
87dab4a4 | 644 | self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, 'civicrm_tabs' |
6a488035 TO |
645 | ); |
646 | } | |
647 | ||
fa3dbfbd | 648 | /** |
72536736 AH |
649 | * This hook is called when rendering the tabs used for events and potentially |
650 | * contribution pages, etc. | |
651 | * | |
652 | * @param string $tabsetName | |
653 | * Name of the screen or visual element. | |
654 | * @param array $tabs | |
655 | * Tabs that will be displayed. | |
656 | * @param array $context | |
657 | * Extra data about the screen or context in which the tab is used. | |
fa3dbfbd | 658 | * |
2efcf0c2 | 659 | * @return null |
fa3dbfbd | 660 | */ |
00be9182 | 661 | public static function tabset($tabsetName, &$tabs, $context) { |
379a8439 | 662 | return self::singleton()->invoke(3, $tabsetName, $tabs, |
87dab4a4 | 663 | $context, self::$_nullObject, self::$_nullObject, self::$_nullObject, 'civicrm_tabset' |
fa3dbfbd | 664 | ); |
665 | } | |
666 | ||
6a488035 TO |
667 | /** |
668 | * This hook is called when sending an email / printing labels | |
669 | * | |
77855840 TO |
670 | * @param array $tokens |
671 | * The list of tokens that can be used for the contact. | |
6a488035 TO |
672 | * |
673 | * @return null | |
6a488035 | 674 | */ |
00be9182 | 675 | public static function tokens(&$tokens) { |
6a488035 | 676 | return self::singleton()->invoke(1, $tokens, |
87dab4a4 | 677 | self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, 'civicrm_tokens' |
6a488035 TO |
678 | ); |
679 | } | |
680 | ||
681 | /** | |
682 | * This hook is called when sending an email / printing labels to get the values for all the | |
683 | * tokens returned by the 'tokens' hook | |
684 | * | |
77855840 TO |
685 | * @param array $details |
686 | * The array to store the token values indexed by contactIDs (unless it a single). | |
687 | * @param array $contactIDs | |
688 | * An array of contactIDs. | |
689 | * @param int $jobID | |
690 | * The jobID if this is associated with a CiviMail mailing. | |
691 | * @param array $tokens | |
692 | * The list of tokens associated with the content. | |
693 | * @param string $className | |
694 | * The top level className from where the hook is invoked. | |
6a488035 TO |
695 | * |
696 | * @return null | |
6a488035 | 697 | */ |
37cd2432 | 698 | public static function tokenValues( |
a3e55d9c | 699 | &$details, |
6a488035 | 700 | $contactIDs, |
e7292422 TO |
701 | $jobID = NULL, |
702 | $tokens = array(), | |
6a488035 TO |
703 | $className = NULL |
704 | ) { | |
37cd2432 TO |
705 | return self::singleton() |
706 | ->invoke(5, $details, $contactIDs, $jobID, $tokens, $className, self::$_nullObject, 'civicrm_tokenValues'); | |
6a488035 TO |
707 | } |
708 | ||
709 | /** | |
710 | * This hook is called before a CiviCRM Page is rendered. You can use this hook to insert smarty variables | |
711 | * in a template | |
712 | * | |
77855840 TO |
713 | * @param object $page |
714 | * The page that will be rendered. | |
6a488035 TO |
715 | * |
716 | * @return null | |
6a488035 | 717 | */ |
00be9182 | 718 | public static function pageRun(&$page) { |
6a488035 | 719 | return self::singleton()->invoke(1, $page, |
87dab4a4 | 720 | self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, |
6a488035 TO |
721 | 'civicrm_pageRun' |
722 | ); | |
723 | } | |
724 | ||
725 | /** | |
726 | * This hook is called after a copy of an object has been made. The current objects are | |
727 | * Event, Contribution Page and UFGroup | |
728 | * | |
77855840 TO |
729 | * @param string $objectName |
730 | * Name of the object. | |
731 | * @param object $object | |
732 | * Reference to the copy. | |
6a488035 TO |
733 | * |
734 | * @return null | |
6a488035 | 735 | */ |
00be9182 | 736 | public static function copy($objectName, &$object) { |
6a488035 | 737 | return self::singleton()->invoke(2, $objectName, $object, |
87dab4a4 | 738 | self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, |
6a488035 TO |
739 | 'civicrm_copy' |
740 | ); | |
741 | } | |
742 | ||
743 | /** | |
744 | * This hook is called when a contact unsubscribes from a mailing. It allows modules | |
745 | * to override what the contacts are removed from. | |
746 | * | |
72536736 AH |
747 | * @param string $op |
748 | * Ignored for now | |
749 | * @param int $mailingId | |
750 | * The id of the mailing to unsub from | |
751 | * @param int $contactId | |
752 | * The id of the contact who is unsubscribing | |
753 | * @param array|int $groups | |
754 | * Groups the contact will be removed from. | |
755 | * @param array|int $baseGroups | |
756 | * Base groups (used in smart mailings) the contact will be removed from. | |
757 | * | |
dcbd3a55 | 758 | * |
72536736 AH |
759 | * @return mixed |
760 | */ | |
00be9182 | 761 | public static function unsubscribeGroups($op, $mailingId, $contactId, &$groups, &$baseGroups) { |
37cd2432 TO |
762 | return self::singleton() |
763 | ->invoke(5, $op, $mailingId, $contactId, $groups, $baseGroups, self::$_nullObject, 'civicrm_unsubscribeGroups'); | |
6a488035 TO |
764 | } |
765 | ||
766 | /** | |
9399901d KJ |
767 | * This hook is called when CiviCRM needs to edit/display a custom field with options (select, radio, checkbox, |
768 | * adv multiselect) | |
6a488035 | 769 | * |
77855840 TO |
770 | * @param int $customFieldID |
771 | * The custom field ID. | |
772 | * @param array $options | |
773 | * The current set of options for that custom field. | |
6a488035 | 774 | * You can add/remove existing options. |
9399901d KJ |
775 | * Important: This array may contain meta-data about the field that is needed elsewhere, so it is important |
776 | * to be careful to not overwrite the array. | |
6a488035 | 777 | * Only add/edit/remove the specific field options you intend to affect. |
77855840 TO |
778 | * @param bool $detailedFormat |
779 | * If true,. | |
9399901d | 780 | * the options are in an ID => array ( 'id' => ID, 'label' => label, 'value' => value ) format |
77855840 TO |
781 | * @param array $selectAttributes |
782 | * Contain select attribute(s) if any. | |
72536736 AH |
783 | * |
784 | * @return mixed | |
6a488035 | 785 | */ |
00be9182 | 786 | public static function customFieldOptions($customFieldID, &$options, $detailedFormat = FALSE, $selectAttributes = array()) { |
6a488035 | 787 | return self::singleton()->invoke(3, $customFieldID, $options, $detailedFormat, |
87dab4a4 | 788 | self::$_nullObject, self::$_nullObject, self::$_nullObject, |
6a488035 TO |
789 | 'civicrm_customFieldOptions' |
790 | ); | |
791 | } | |
792 | ||
793 | /** | |
794 | * | |
795 | * This hook is called to display the list of actions allowed after doing a search. | |
796 | * This allows the module developer to inject additional actions or to remove existing actions. | |
797 | * | |
77855840 TO |
798 | * @param string $objectType |
799 | * The object type for this search. | |
6a488035 | 800 | * - activity, campaign, case, contact, contribution, event, grant, membership, and pledge are supported. |
77855840 TO |
801 | * @param array $tasks |
802 | * The current set of tasks for that custom field. | |
6a488035 | 803 | * You can add/remove existing tasks. |
9399901d KJ |
804 | * Each task needs to have a title (eg 'title' => ts( 'Add Contacts to Group')) and a class |
805 | * (eg 'class' => 'CRM_Contact_Form_Task_AddToGroup'). | |
6a488035 | 806 | * Optional result (boolean) may also be provided. Class can be an array of classes (not sure what that does :( ). |
9399901d KJ |
807 | * The key for new Task(s) should not conflict with the keys for core tasks of that $objectType, which can be |
808 | * found in CRM/$objectType/Task.php. | |
72536736 AH |
809 | * |
810 | * @return mixed | |
6a488035 | 811 | */ |
00be9182 | 812 | public static function searchTasks($objectType, &$tasks) { |
6a488035 | 813 | return self::singleton()->invoke(2, $objectType, $tasks, |
87dab4a4 | 814 | self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, |
6a488035 TO |
815 | 'civicrm_searchTasks' |
816 | ); | |
817 | } | |
818 | ||
72536736 AH |
819 | /** |
820 | * @param mixed $form | |
821 | * @param array $params | |
822 | * | |
823 | * @return mixed | |
824 | */ | |
00be9182 | 825 | public static function eventDiscount(&$form, &$params) { |
6a488035 | 826 | return self::singleton()->invoke(2, $form, $params, |
87dab4a4 | 827 | self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, |
6a488035 TO |
828 | 'civicrm_eventDiscount' |
829 | ); | |
830 | } | |
831 | ||
832 | /** | |
833 | * This hook is called when composing a mailing. You can include / exclude other groups as needed. | |
834 | * | |
72536736 AH |
835 | * @param mixed $form |
836 | * The form object for which groups / mailings being displayed | |
837 | * @param array $groups | |
838 | * The list of groups being included / excluded | |
839 | * @param array $mailings | |
840 | * The list of mailings being included / excluded | |
841 | * | |
842 | * @return mixed | |
6a488035 | 843 | */ |
00be9182 | 844 | public static function mailingGroups(&$form, &$groups, &$mailings) { |
6a488035 | 845 | return self::singleton()->invoke(3, $form, $groups, $mailings, |
87dab4a4 | 846 | self::$_nullObject, self::$_nullObject, self::$_nullObject, |
6a488035 TO |
847 | 'civicrm_mailingGroups' |
848 | ); | |
849 | } | |
850 | ||
851 | /** | |
9399901d KJ |
852 | * This hook is called when composing the array of membershipTypes and their cost during a membership registration |
853 | * (new or renewal). | |
6a488035 TO |
854 | * Note the hook is called on initial page load and also reloaded after submit (PRG pattern). |
855 | * You can use it to alter the membership types when first loaded, or after submission | |
856 | * (for example if you want to gather data in the form and use it to alter the fees). | |
857 | * | |
72536736 AH |
858 | * @param mixed $form |
859 | * The form object that is presenting the page | |
860 | * @param array $membershipTypes | |
861 | * The array of membership types and their amount | |
862 | * | |
863 | * @return mixed | |
6a488035 | 864 | */ |
00be9182 | 865 | public static function membershipTypeValues(&$form, &$membershipTypes) { |
6a488035 | 866 | return self::singleton()->invoke(2, $form, $membershipTypes, |
87dab4a4 | 867 | self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, |
6a488035 TO |
868 | 'civicrm_membershipTypeValues' |
869 | ); | |
870 | } | |
871 | ||
872 | /** | |
fe482240 | 873 | * This hook is called when rendering the contact summary. |
6a488035 | 874 | * |
72536736 AH |
875 | * @param int $contactID |
876 | * The contactID for whom the summary is being rendered | |
877 | * @param mixed $content | |
878 | * @param int $contentPlacement | |
879 | * Specifies where the hook content should be displayed relative to the | |
880 | * existing content | |
6a488035 | 881 | * |
72536736 AH |
882 | * @return string |
883 | * The html snippet to include in the contact summary | |
6a488035 | 884 | */ |
00be9182 | 885 | public static function summary($contactID, &$content, &$contentPlacement = self::SUMMARY_BELOW) { |
6a488035 | 886 | return self::singleton()->invoke(3, $contactID, $content, $contentPlacement, |
87dab4a4 | 887 | self::$_nullObject, self::$_nullObject, self::$_nullObject, |
6a488035 TO |
888 | 'civicrm_summary' |
889 | ); | |
890 | } | |
891 | ||
892 | /** | |
893 | * Use this hook to populate the list of contacts returned by Contact Reference custom fields. | |
894 | * By default, Contact Reference fields will search on and return all CiviCRM contacts. | |
895 | * If you want to limit the contacts returned to a specific group, or some other criteria | |
896 | * - you can override that behavior by providing a SQL query that returns some subset of your contacts. | |
897 | * The hook is called when the query is executed to get the list of contacts to display. | |
898 | * | |
77855840 TO |
899 | * @param mixed $query |
900 | * - the query that will be executed (input and output parameter);. | |
6a488035 TO |
901 | * It's important to realize that the ACL clause is built prior to this hook being fired, |
902 | * so your query will ignore any ACL rules that may be defined. | |
903 | * Your query must return two columns: | |
904 | * the contact 'data' to display in the autocomplete dropdown (usually contact.sort_name - aliased as 'data') | |
905 | * the contact IDs | |
77855840 TO |
906 | * @param string $name |
907 | * The name string to execute the query against (this is the value being typed in by the user). | |
908 | * @param string $context | |
909 | * The context in which this ajax call is being made (for example: 'customfield', 'caseview'). | |
910 | * @param int $id | |
911 | * The id of the object for which the call is being made. | |
6a488035 | 912 | * For custom fields, it will be the custom field id |
72536736 AH |
913 | * |
914 | * @return mixed | |
6a488035 | 915 | */ |
00be9182 | 916 | public static function contactListQuery(&$query, $name, $context, $id) { |
6a488035 | 917 | return self::singleton()->invoke(4, $query, $name, $context, $id, |
87dab4a4 | 918 | self::$_nullObject, self::$_nullObject, |
6a488035 TO |
919 | 'civicrm_contactListQuery' |
920 | ); | |
921 | } | |
922 | ||
923 | /** | |
924 | * Hook definition for altering payment parameters before talking to a payment processor back end. | |
925 | * | |
926 | * Definition will look like this: | |
927 | * | |
928 | * function hook_civicrm_alterPaymentProcessorParams($paymentObj, | |
929 | * &$rawParams, &$cookedParams); | |
930 | * | |
931 | * @param string $paymentObj | |
932 | * instance of payment class of the payment processor invoked (e.g., 'CRM_Core_Payment_Dummy') | |
933 | * @param array &$rawParams | |
934 | * array of params as passed to to the processor | |
72536736 | 935 | * @param array &$cookedParams |
6a488035 TO |
936 | * params after the processor code has translated them into its own key/value pairs |
937 | * | |
72536736 | 938 | * @return mixed |
6a488035 | 939 | */ |
37cd2432 | 940 | public static function alterPaymentProcessorParams( |
a3e55d9c | 941 | $paymentObj, |
6a488035 TO |
942 | &$rawParams, |
943 | &$cookedParams | |
944 | ) { | |
945 | return self::singleton()->invoke(3, $paymentObj, $rawParams, $cookedParams, | |
87dab4a4 | 946 | self::$_nullObject, self::$_nullObject, self::$_nullObject, |
6a488035 TO |
947 | 'civicrm_alterPaymentProcessorParams' |
948 | ); | |
949 | } | |
950 | ||
951 | /** | |
952 | * This hook is called when an email is about to be sent by CiviCRM. | |
953 | * | |
72536736 AH |
954 | * @param array $params |
955 | * Array fields include: groupName, from, toName, toEmail, subject, cc, bcc, text, html, | |
16b10e64 | 956 | * returnPath, replyTo, headers, attachments (array) |
77855840 TO |
957 | * @param string $context |
958 | * The context in which the hook is being invoked, eg 'civimail'. | |
72536736 AH |
959 | * |
960 | * @return mixed | |
6a488035 | 961 | */ |
00be9182 | 962 | public static function alterMailParams(&$params, $context = NULL) { |
6a488035 | 963 | return self::singleton()->invoke(2, $params, $context, |
87dab4a4 | 964 | self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, |
6a488035 TO |
965 | 'civicrm_alterMailParams' |
966 | ); | |
967 | } | |
968 | ||
5f11bbcc | 969 | /** |
fe482240 | 970 | * This hook is called when membership status is being calculated. |
5f11bbcc | 971 | * |
77855840 TO |
972 | * @param array $membershipStatus |
973 | * Membership status details as determined - alter if required. | |
974 | * @param array $arguments | |
975 | * Arguments passed in to calculate date. | |
5f11bbcc EM |
976 | * - 'start_date' |
977 | * - 'end_date' | |
978 | * - 'status_date' | |
979 | * - 'join_date' | |
980 | * - 'exclude_is_admin' | |
981 | * - 'membership_type_id' | |
77855840 TO |
982 | * @param array $membership |
983 | * Membership details from the calling function. | |
f4aaa82a EM |
984 | * |
985 | * @return mixed | |
5f11bbcc | 986 | */ |
00be9182 | 987 | public static function alterCalculatedMembershipStatus(&$membershipStatus, $arguments, $membership) { |
5f11bbcc | 988 | return self::singleton()->invoke(3, $membershipStatus, $arguments, |
fc6a608f | 989 | $membership, self::$_nullObject, self::$_nullObject, self::$_nullObject, |
5f11bbcc EM |
990 | 'civicrm_alterCalculatedMembershipStatus' |
991 | ); | |
992 | } | |
993 | ||
6a488035 | 994 | /** |
fe482240 | 995 | * This hook is called when rendering the Manage Case screen. |
6a488035 | 996 | * |
77855840 TO |
997 | * @param int $caseID |
998 | * The case ID. | |
6a488035 | 999 | * |
a6c01b45 | 1000 | * @return array |
16b10e64 CW |
1001 | * Array of data to be displayed, where the key is a unique id to be used for styling (div id's) |
1002 | * and the value is an array with keys 'label' and 'value' specifying label/value pairs | |
6a488035 | 1003 | */ |
00be9182 | 1004 | public static function caseSummary($caseID) { |
6a488035 | 1005 | return self::singleton()->invoke(1, $caseID, |
87dab4a4 | 1006 | self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, |
6a488035 TO |
1007 | 'civicrm_caseSummary' |
1008 | ); | |
1009 | } | |
1010 | ||
6b86870e TO |
1011 | /** |
1012 | * This hook is called when locating CiviCase types. | |
1013 | * | |
1014 | * @param array $caseTypes | |
72536736 AH |
1015 | * |
1016 | * @return mixed | |
6b86870e | 1017 | */ |
00be9182 | 1018 | public static function caseTypes(&$caseTypes) { |
37cd2432 TO |
1019 | return self::singleton() |
1020 | ->invoke(1, $caseTypes, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, 'civicrm_caseTypes'); | |
6b86870e TO |
1021 | } |
1022 | ||
6a488035 TO |
1023 | /** |
1024 | * This hook is called soon after the CRM_Core_Config object has ben initialized. | |
1025 | * You can use this hook to modify the config object and hence behavior of CiviCRM dynamically. | |
72536736 AH |
1026 | * |
1027 | * @param CRM_Core_Config|array $config | |
1028 | * The config object | |
1029 | * | |
1030 | * @return mixed | |
6a488035 | 1031 | */ |
00be9182 | 1032 | public static function config(&$config) { |
6a488035 | 1033 | return self::singleton()->invoke(1, $config, |
87dab4a4 | 1034 | self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, |
6a488035 TO |
1035 | 'civicrm_config' |
1036 | ); | |
1037 | } | |
1038 | ||
6a488035 | 1039 | /** |
fe482240 | 1040 | * This hooks allows to change option values. |
6a488035 | 1041 | * |
72536736 AH |
1042 | * @param array $options |
1043 | * Associated array of option values / id | |
1044 | * @param string $name | |
1045 | * Option group name | |
6a488035 | 1046 | * |
72536736 | 1047 | * @return mixed |
6a488035 | 1048 | */ |
00be9182 | 1049 | public static function optionValues(&$options, $name) { |
6a488035 | 1050 | return self::singleton()->invoke(2, $options, $name, |
87dab4a4 | 1051 | self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, |
6a488035 TO |
1052 | 'civicrm_optionValues' |
1053 | ); | |
1054 | } | |
1055 | ||
1056 | /** | |
1057 | * This hook allows modification of the navigation menu. | |
1058 | * | |
72536736 AH |
1059 | * @param array $params |
1060 | * Associated array of navigation menu entry to Modify/Add | |
1061 | * | |
1062 | * @return mixed | |
6a488035 | 1063 | */ |
00be9182 | 1064 | public static function navigationMenu(&$params) { |
6a488035 | 1065 | return self::singleton()->invoke(1, $params, |
87dab4a4 | 1066 | self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, |
6a488035 TO |
1067 | 'civicrm_navigationMenu' |
1068 | ); | |
1069 | } | |
1070 | ||
1071 | /** | |
1072 | * This hook allows modification of the data used to perform merging of duplicates. | |
1073 | * | |
77855840 TO |
1074 | * @param string $type |
1075 | * The type of data being passed (cidRefs|eidRefs|relTables|sqls). | |
1076 | * @param array $data | |
1077 | * The data, as described in $type. | |
1078 | * @param int $mainId | |
1079 | * Contact_id of the contact that survives the merge. | |
1080 | * @param int $otherId | |
1081 | * Contact_id of the contact that will be absorbed and deleted. | |
1082 | * @param array $tables | |
1083 | * When $type is "sqls", an array of tables as it may have been handed to the calling function. | |
6a488035 | 1084 | * |
72536736 | 1085 | * @return mixed |
6a488035 | 1086 | */ |
00be9182 | 1087 | public static function merge($type, &$data, $mainId = NULL, $otherId = NULL, $tables = NULL) { |
87dab4a4 | 1088 | return self::singleton()->invoke(5, $type, $data, $mainId, $otherId, $tables, self::$_nullObject, 'civicrm_merge'); |
6a488035 TO |
1089 | } |
1090 | ||
1091 | /** | |
1092 | * This hook provides a way to override the default privacy behavior for notes. | |
1093 | * | |
72536736 AH |
1094 | * @param array &$noteValues |
1095 | * Associative array of values for this note | |
6a488035 | 1096 | * |
72536736 | 1097 | * @return mixed |
6a488035 | 1098 | */ |
00be9182 | 1099 | public static function notePrivacy(&$noteValues) { |
6a488035 | 1100 | return self::singleton()->invoke(1, $noteValues, |
87dab4a4 | 1101 | self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, |
6a488035 TO |
1102 | 'civicrm_notePrivacy' |
1103 | ); | |
1104 | } | |
1105 | ||
1106 | /** | |
fe482240 | 1107 | * This hook is called before record is exported as CSV. |
6a488035 | 1108 | * |
77855840 TO |
1109 | * @param string $exportTempTable |
1110 | * Name of the temporary export table used during export. | |
1111 | * @param array $headerRows | |
1112 | * Header rows for output. | |
1113 | * @param array $sqlColumns | |
1114 | * SQL columns. | |
1115 | * @param int $exportMode | |
1116 | * Export mode ( contact, contribution, etc...). | |
6a488035 | 1117 | * |
72536736 | 1118 | * @return mixed |
6a488035 | 1119 | */ |
00be9182 | 1120 | public static function export(&$exportTempTable, &$headerRows, &$sqlColumns, &$exportMode) { |
6a488035 | 1121 | return self::singleton()->invoke(4, $exportTempTable, $headerRows, $sqlColumns, $exportMode, |
87dab4a4 | 1122 | self::$_nullObject, self::$_nullObject, |
6a488035 TO |
1123 | 'civicrm_export' |
1124 | ); | |
1125 | } | |
1126 | ||
1127 | /** | |
1128 | * This hook allows modification of the queries constructed from dupe rules. | |
1129 | * | |
77855840 TO |
1130 | * @param string $obj |
1131 | * Object of rulegroup class. | |
1132 | * @param string $type | |
1133 | * Type of queries e.g table / threshold. | |
1134 | * @param array $query | |
1135 | * Set of queries. | |
6a488035 | 1136 | * |
f4aaa82a | 1137 | * @return mixed |
6a488035 | 1138 | */ |
00be9182 | 1139 | public static function dupeQuery($obj, $type, &$query) { |
6a488035 | 1140 | return self::singleton()->invoke(3, $obj, $type, $query, |
87dab4a4 | 1141 | self::$_nullObject, self::$_nullObject, self::$_nullObject, |
6a488035 TO |
1142 | 'civicrm_dupeQuery' |
1143 | ); | |
1144 | } | |
1145 | ||
1146 | /** | |
1147 | * This hook is called AFTER EACH email has been processed by the script bin/EmailProcessor.php | |
1148 | * | |
77855840 TO |
1149 | * @param string $type |
1150 | * Type of mail processed: 'activity' OR 'mailing'. | |
f4aaa82a | 1151 | * @param array &$params the params that were sent to the CiviCRM API function |
77855840 TO |
1152 | * @param object $mail |
1153 | * The mail object which is an ezcMail class. | |
f4aaa82a | 1154 | * @param array &$result the result returned by the api call |
77855840 TO |
1155 | * @param string $action |
1156 | * (optional ) the requested action to be performed if the types was 'mailing'. | |
6a488035 | 1157 | * |
f4aaa82a | 1158 | * @return mixed |
6a488035 | 1159 | */ |
00be9182 | 1160 | public static function emailProcessor($type, &$params, $mail, &$result, $action = NULL) { |
37cd2432 TO |
1161 | return self::singleton() |
1162 | ->invoke(5, $type, $params, $mail, $result, $action, self::$_nullObject, 'civicrm_emailProcessor'); | |
6a488035 TO |
1163 | } |
1164 | ||
1165 | /** | |
1166 | * This hook is called after a row has been processed and the | |
1167 | * record (and associated records imported | |
1168 | * | |
77855840 TO |
1169 | * @param string $object |
1170 | * Object being imported (for now Contact only, later Contribution, Activity,. | |
9399901d | 1171 | * Participant and Member) |
77855840 TO |
1172 | * @param string $usage |
1173 | * Hook usage/location (for now process only, later mapping and others). | |
1174 | * @param string $objectRef | |
1175 | * Import record object. | |
1176 | * @param array $params | |
1177 | * Array with various key values: currently. | |
6a488035 TO |
1178 | * contactID - contact id |
1179 | * importID - row id in temp table | |
1180 | * importTempTable - name of tempTable | |
1181 | * fieldHeaders - field headers | |
1182 | * fields - import fields | |
1183 | * | |
1184 | * @return void | |
6a488035 | 1185 | */ |
00be9182 | 1186 | public static function import($object, $usage, &$objectRef, &$params) { |
6a488035 | 1187 | return self::singleton()->invoke(4, $object, $usage, $objectRef, $params, |
87dab4a4 | 1188 | self::$_nullObject, self::$_nullObject, |
6a488035 TO |
1189 | 'civicrm_import' |
1190 | ); | |
1191 | } | |
1192 | ||
1193 | /** | |
1194 | * This hook is called when API permissions are checked (cf. civicrm_api3_api_check_permission() | |
aa5ba569 | 1195 | * in api/v3/utils.php and _civicrm_api3_permissions() in CRM/Core/DAO/permissions.php). |
6a488035 | 1196 | * |
77855840 TO |
1197 | * @param string $entity |
1198 | * The API entity (like contact). | |
1199 | * @param string $action | |
1200 | * The API action (like get). | |
f4aaa82a | 1201 | * @param array &$params the API parameters |
c490a46a | 1202 | * @param array &$permissions the associative permissions array (probably to be altered by this hook) |
f4aaa82a EM |
1203 | * |
1204 | * @return mixed | |
6a488035 | 1205 | */ |
00be9182 | 1206 | public static function alterAPIPermissions($entity, $action, &$params, &$permissions) { |
6a488035 | 1207 | return self::singleton()->invoke(4, $entity, $action, $params, $permissions, |
87dab4a4 | 1208 | self::$_nullObject, self::$_nullObject, |
6a488035 TO |
1209 | 'civicrm_alterAPIPermissions' |
1210 | ); | |
1211 | } | |
1212 | ||
5bc392e6 | 1213 | /** |
c490a46a | 1214 | * @param CRM_Core_DAO $dao |
5bc392e6 EM |
1215 | * |
1216 | * @return mixed | |
1217 | */ | |
00be9182 | 1218 | public static function postSave(&$dao) { |
6a488035 TO |
1219 | $hookName = 'civicrm_postSave_' . $dao->getTableName(); |
1220 | return self::singleton()->invoke(1, $dao, | |
87dab4a4 | 1221 | self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, |
6a488035 TO |
1222 | $hookName |
1223 | ); | |
1224 | } | |
1225 | ||
1226 | /** | |
1227 | * This hook allows user to customize context menu Actions on contact summary page. | |
1228 | * | |
77855840 TO |
1229 | * @param array $actions |
1230 | * Array of all Actions in contextmenu. | |
1231 | * @param int $contactID | |
1232 | * ContactID for the summary page. | |
f4aaa82a EM |
1233 | * |
1234 | * @return mixed | |
6a488035 | 1235 | */ |
00be9182 | 1236 | public static function summaryActions(&$actions, $contactID = NULL) { |
6a488035 | 1237 | return self::singleton()->invoke(2, $actions, $contactID, |
87dab4a4 | 1238 | self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, |
6a488035 TO |
1239 | 'civicrm_summaryActions' |
1240 | ); | |
1241 | } | |
1242 | ||
1243 | /** | |
1244 | * This hook is called from CRM_Core_Selector_Controller through which all searches in civicrm go. | |
1245 | * This enables us hook implementors to modify both the headers and the rows | |
1246 | * | |
1247 | * The BIGGEST drawback with this hook is that you may need to modify the result template to include your | |
1248 | * fields. The result files are CRM/{Contact,Contribute,Member,Event...}/Form/Selector.tpl | |
1249 | * | |
1250 | * However, if you use the same number of columns, you can overwrite the existing columns with the values that | |
1251 | * you want displayed. This is a hackish, but avoids template modification. | |
1252 | * | |
77855840 TO |
1253 | * @param string $objectName |
1254 | * The component name that we are doing the search. | |
6a488035 | 1255 | * activity, campaign, case, contact, contribution, event, grant, membership, and pledge |
f4aaa82a EM |
1256 | * @param array &$headers the list of column headers, an associative array with keys: ( name, sort, order ) |
1257 | * @param array &$rows the list of values, an associate array with fields that are displayed for that component | |
16b10e64 CW |
1258 | * @param array $selector |
1259 | * the selector object. Allows you access to the context of the search | |
6a488035 | 1260 | * |
a6c01b45 CW |
1261 | * @return void |
1262 | * modify the header and values object to pass the data u need | |
6a488035 | 1263 | */ |
00be9182 | 1264 | public static function searchColumns($objectName, &$headers, &$rows, &$selector) { |
6a488035 | 1265 | return self::singleton()->invoke(4, $objectName, $headers, $rows, $selector, |
87dab4a4 | 1266 | self::$_nullObject, self::$_nullObject, |
6a488035 TO |
1267 | 'civicrm_searchColumns' |
1268 | ); | |
1269 | } | |
1270 | ||
1271 | /** | |
1272 | * This hook is called when uf groups are being built for a module. | |
1273 | * | |
77855840 TO |
1274 | * @param string $moduleName |
1275 | * Module name. | |
1276 | * @param array $ufGroups | |
1277 | * Array of ufgroups for a module. | |
6a488035 TO |
1278 | * |
1279 | * @return null | |
6a488035 | 1280 | */ |
00be9182 | 1281 | public static function buildUFGroupsForModule($moduleName, &$ufGroups) { |
6a488035 | 1282 | return self::singleton()->invoke(2, $moduleName, $ufGroups, |
87dab4a4 | 1283 | self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, |
6a488035 TO |
1284 | 'civicrm_buildUFGroupsForModule' |
1285 | ); | |
1286 | } | |
1287 | ||
1288 | /** | |
1289 | * This hook is called when we are determining the contactID for a specific | |
1290 | * email address | |
1291 | * | |
77855840 TO |
1292 | * @param string $email |
1293 | * The email address. | |
1294 | * @param int $contactID | |
1295 | * The contactID that matches this email address, IF it exists. | |
1296 | * @param array $result | |
1297 | * (reference) has two fields. | |
6a488035 TO |
1298 | * contactID - the new (or same) contactID |
1299 | * action - 3 possible values: | |
9399901d KJ |
1300 | * CRM_Utils_Mail_Incoming::EMAILPROCESSOR_CREATE_INDIVIDUAL - create a new contact record |
1301 | * CRM_Utils_Mail_Incoming::EMAILPROCESSOR_OVERRIDE - use the new contactID | |
1302 | * CRM_Utils_Mail_Incoming::EMAILPROCESSOR_IGNORE - skip this email address | |
6a488035 TO |
1303 | * |
1304 | * @return null | |
6a488035 | 1305 | */ |
00be9182 | 1306 | public static function emailProcessorContact($email, $contactID, &$result) { |
6a488035 | 1307 | return self::singleton()->invoke(3, $email, $contactID, $result, |
87dab4a4 | 1308 | self::$_nullObject, self::$_nullObject, self::$_nullObject, |
6a488035 TO |
1309 | 'civicrm_emailProcessorContact' |
1310 | ); | |
1311 | } | |
1312 | ||
1313 | /** | |
fe482240 | 1314 | * Hook definition for altering the generation of Mailing Labels. |
6a488035 | 1315 | * |
77855840 TO |
1316 | * @param array $args |
1317 | * An array of the args in the order defined for the tcpdf multiCell api call. | |
6a488035 TO |
1318 | * with the variable names below converted into string keys (ie $w become 'w' |
1319 | * as the first key for $args) | |
1320 | * float $w Width of cells. If 0, they extend up to the right margin of the page. | |
1321 | * float $h Cell minimum height. The cell extends automatically if needed. | |
1322 | * string $txt String to print | |
1323 | * mixed $border Indicates if borders must be drawn around the cell block. The value can | |
1324 | * be either a number:<ul><li>0: no border (default)</li><li>1: frame</li></ul>or | |
1325 | * a string containing some or all of the following characters (in any order): | |
1326 | * <ul><li>L: left</li><li>T: top</li><li>R: right</li><li>B: bottom</li></ul> | |
1327 | * string $align Allows to center or align the text. Possible values are:<ul><li>L or empty string: | |
1328 | * left align</li><li>C: center</li><li>R: right align</li><li>J: justification | |
1329 | * (default value when $ishtml=false)</li></ul> | |
1330 | * int $fill Indicates if the cell background must be painted (1) or transparent (0). Default value: 0. | |
1331 | * int $ln Indicates where the current position should go after the call. Possible values are:<ul><li>0: | |
1332 | * to the right</li><li>1: to the beginning of the next line [DEFAULT]</li><li>2: below</li></ul> | |
1333 | * float $x x position in user units | |
1334 | * float $y y position in user units | |
1335 | * boolean $reseth if true reset the last cell height (default true). | |
1336 | * int $stretch stretch carachter mode: <ul><li>0 = disabled</li><li>1 = horizontal scaling only if | |
1337 | * necessary</li><li>2 = forced horizontal scaling</li><li>3 = character spacing only if | |
1338 | * necessary</li><li>4 = forced character spacing</li></ul> | |
1339 | * boolean $ishtml set to true if $txt is HTML content (default = false). | |
1340 | * boolean $autopadding if true, uses internal padding and automatically adjust it to account for line width. | |
1341 | * float $maxh maximum height. It should be >= $h and less then remaining space to the bottom of the page, | |
1342 | * or 0 for disable this feature. This feature works only when $ishtml=false. | |
1343 | * | |
f4aaa82a | 1344 | * @return mixed |
6a488035 | 1345 | */ |
00be9182 | 1346 | public static function alterMailingLabelParams(&$args) { |
6a488035 TO |
1347 | return self::singleton()->invoke(1, $args, |
1348 | self::$_nullObject, self::$_nullObject, | |
87dab4a4 | 1349 | self::$_nullObject, self::$_nullObject, self::$_nullObject, |
6a488035 TO |
1350 | 'civicrm_alterMailingLabelParams' |
1351 | ); | |
1352 | } | |
1353 | ||
1354 | /** | |
fe482240 | 1355 | * This hooks allows alteration of generated page content. |
6a488035 | 1356 | * |
77855840 TO |
1357 | * @param $content |
1358 | * Previously generated content. | |
1359 | * @param $context | |
1360 | * Context of content - page or form. | |
1361 | * @param $tplName | |
1362 | * The file name of the tpl. | |
1363 | * @param $object | |
1364 | * A reference to the page or form object. | |
6a488035 | 1365 | * |
f4aaa82a | 1366 | * @return mixed |
6a488035 | 1367 | */ |
00be9182 | 1368 | public static function alterContent(&$content, $context, $tplName, &$object) { |
6a488035 | 1369 | return self::singleton()->invoke(4, $content, $context, $tplName, $object, |
87dab4a4 | 1370 | self::$_nullObject, self::$_nullObject, |
6a488035 TO |
1371 | 'civicrm_alterContent' |
1372 | ); | |
1373 | } | |
1374 | ||
8aac22c8 | 1375 | /** |
1376 | * This hooks allows alteration of the tpl file used to generate content. It differs from the | |
1377 | * altercontent hook as the content has already been rendered through the tpl at that point | |
1378 | * | |
77855840 TO |
1379 | * @param $formName |
1380 | * Previously generated content. | |
1381 | * @param $form | |
1382 | * Reference to the form object. | |
1383 | * @param $context | |
1384 | * Context of content - page or form. | |
1385 | * @param $tplName | |
1386 | * Reference the file name of the tpl. | |
8aac22c8 | 1387 | * |
f4aaa82a | 1388 | * @return mixed |
8aac22c8 | 1389 | */ |
00be9182 | 1390 | public static function alterTemplateFile($formName, &$form, $context, &$tplName) { |
8aac22c8 | 1391 | return self::singleton()->invoke(4, $formName, $form, $context, $tplName, |
87dab4a4 | 1392 | self::$_nullObject, self::$_nullObject, |
8aac22c8 | 1393 | 'civicrm_alterTemplateFile' |
1394 | ); | |
1395 | } | |
f4aaa82a | 1396 | |
6a488035 | 1397 | /** |
fe482240 | 1398 | * This hook collects the trigger definition from all components. |
6a488035 | 1399 | * |
f4aaa82a | 1400 | * @param $info |
77855840 TO |
1401 | * @param string $tableName |
1402 | * (optional) the name of the table that we are interested in only. | |
f4aaa82a EM |
1403 | * |
1404 | * @internal param \reference $triggerInfo to an array of trigger information | |
6a488035 TO |
1405 | * each element has 4 fields: |
1406 | * table - array of tableName | |
1407 | * when - BEFORE or AFTER | |
1408 | * event - array of eventName - INSERT OR UPDATE OR DELETE | |
1409 | * sql - array of statements optionally terminated with a ; | |
1410 | * a statement can use the tokes {tableName} and {eventName} | |
1411 | * to do token replacement with the table / event. This allows | |
1412 | * templatizing logging and other hooks | |
f4aaa82a | 1413 | * @return mixed |
6a488035 | 1414 | */ |
00be9182 | 1415 | public static function triggerInfo(&$info, $tableName = NULL) { |
6a488035 | 1416 | return self::singleton()->invoke(2, $info, $tableName, |
87dab4a4 | 1417 | self::$_nullObject, self::$_nullObject, self::$_nullObject, |
6a488035 TO |
1418 | self::$_nullObject, |
1419 | 'civicrm_triggerInfo' | |
1420 | ); | |
1421 | } | |
1422 | ||
1423 | /** | |
1424 | * This hook is called when a module-extension is installed. | |
9399901d KJ |
1425 | * Each module will receive hook_civicrm_install during its own installation (but not during the |
1426 | * installation of unrelated modules). | |
6a488035 | 1427 | */ |
00be9182 | 1428 | public static function install() { |
6a488035 TO |
1429 | return self::singleton()->invoke(0, self::$_nullObject, |
1430 | self::$_nullObject, self::$_nullObject, | |
87dab4a4 | 1431 | self::$_nullObject, self::$_nullObject, self::$_nullObject, |
6a488035 TO |
1432 | 'civicrm_install' |
1433 | ); | |
1434 | } | |
1435 | ||
1436 | /** | |
1437 | * This hook is called when a module-extension is uninstalled. | |
9399901d KJ |
1438 | * Each module will receive hook_civicrm_uninstall during its own uninstallation (but not during the |
1439 | * uninstallation of unrelated modules). | |
6a488035 | 1440 | */ |
00be9182 | 1441 | public static function uninstall() { |
6a488035 TO |
1442 | return self::singleton()->invoke(0, self::$_nullObject, |
1443 | self::$_nullObject, self::$_nullObject, | |
87dab4a4 | 1444 | self::$_nullObject, self::$_nullObject, self::$_nullObject, |
6a488035 TO |
1445 | 'civicrm_uninstall' |
1446 | ); | |
1447 | } | |
1448 | ||
1449 | /** | |
1450 | * This hook is called when a module-extension is re-enabled. | |
9399901d KJ |
1451 | * Each module will receive hook_civicrm_enable during its own re-enablement (but not during the |
1452 | * re-enablement of unrelated modules). | |
6a488035 | 1453 | */ |
00be9182 | 1454 | public static function enable() { |
6a488035 TO |
1455 | return self::singleton()->invoke(0, self::$_nullObject, |
1456 | self::$_nullObject, self::$_nullObject, | |
87dab4a4 | 1457 | self::$_nullObject, self::$_nullObject, self::$_nullObject, |
6a488035 TO |
1458 | 'civicrm_enable' |
1459 | ); | |
1460 | } | |
1461 | ||
1462 | /** | |
1463 | * This hook is called when a module-extension is disabled. | |
9399901d KJ |
1464 | * Each module will receive hook_civicrm_disable during its own disablement (but not during the |
1465 | * disablement of unrelated modules). | |
6a488035 | 1466 | */ |
00be9182 | 1467 | public static function disable() { |
6a488035 TO |
1468 | return self::singleton()->invoke(0, self::$_nullObject, |
1469 | self::$_nullObject, self::$_nullObject, | |
87dab4a4 | 1470 | self::$_nullObject, self::$_nullObject, self::$_nullObject, |
6a488035 TO |
1471 | 'civicrm_disable' |
1472 | ); | |
1473 | } | |
1474 | ||
5bc392e6 EM |
1475 | /** |
1476 | * @param $varType | |
1477 | * @param $var | |
1478 | * @param $object | |
1479 | * | |
1480 | * @return mixed | |
1481 | */ | |
00be9182 | 1482 | public static function alterReportVar($varType, &$var, &$object) { |
6a488035 TO |
1483 | return self::singleton()->invoke(3, $varType, $var, $object, |
1484 | self::$_nullObject, | |
87dab4a4 | 1485 | self::$_nullObject, self::$_nullObject, |
6a488035 TO |
1486 | 'civicrm_alterReportVar' |
1487 | ); | |
1488 | } | |
1489 | ||
1490 | /** | |
1491 | * This hook is called to drive database upgrades for extension-modules. | |
1492 | * | |
72536736 AH |
1493 | * @param string $op |
1494 | * The type of operation being performed; 'check' or 'enqueue'. | |
1495 | * @param CRM_Queue_Queue $queue | |
1496 | * (for 'enqueue') the modifiable list of pending up upgrade tasks. | |
6a488035 | 1497 | * |
72536736 AH |
1498 | * @return bool|null |
1499 | * NULL, if $op is 'enqueue'. | |
1500 | * TRUE, if $op is 'check' and upgrades are pending. | |
1501 | * FALSE, if $op is 'check' and upgrades are not pending. | |
6a488035 | 1502 | */ |
00be9182 | 1503 | public static function upgrade($op, CRM_Queue_Queue $queue = NULL) { |
6a488035 | 1504 | return self::singleton()->invoke(2, $op, $queue, |
87dab4a4 | 1505 | self::$_nullObject, self::$_nullObject, self::$_nullObject, |
6a488035 TO |
1506 | self::$_nullObject, |
1507 | 'civicrm_upgrade' | |
1508 | ); | |
1509 | } | |
1510 | ||
1511 | /** | |
1512 | * This hook is called when an email has been successfully sent by CiviCRM, but not on an error. | |
1513 | * | |
72536736 AH |
1514 | * @param array $params |
1515 | * The mailing parameters. Array fields include: groupName, from, toName, | |
1516 | * toEmail, subject, cc, bcc, text, html, returnPath, replyTo, headers, | |
1517 | * attachments (array) | |
1518 | * | |
1519 | * @return mixed | |
6a488035 | 1520 | */ |
00be9182 | 1521 | public static function postEmailSend(&$params) { |
6a488035 TO |
1522 | return self::singleton()->invoke(1, $params, |
1523 | self::$_nullObject, self::$_nullObject, | |
87dab4a4 | 1524 | self::$_nullObject, self::$_nullObject, self::$_nullObject, |
6a488035 TO |
1525 | 'civicrm_postEmailSend' |
1526 | ); | |
1527 | } | |
1528 | ||
1529 | /** | |
fe482240 | 1530 | * This hook is called when Settings specifications are loaded. |
6a488035 | 1531 | * |
72536736 AH |
1532 | * @param array $settingsFolders |
1533 | * List of paths from which to derive metadata | |
1534 | * | |
1535 | * @return mixed | |
6a488035 | 1536 | */ |
00be9182 | 1537 | public static function alterSettingsFolders(&$settingsFolders) { |
6a488035 | 1538 | return self::singleton()->invoke(1, $settingsFolders, |
37cd2432 TO |
1539 | self::$_nullObject, self::$_nullObject, |
1540 | self::$_nullObject, self::$_nullObject, self::$_nullObject, | |
1541 | 'civicrm_alterSettingsFolders' | |
6a488035 TO |
1542 | ); |
1543 | } | |
1544 | ||
1545 | /** | |
1546 | * This hook is called when Settings have been loaded from the xml | |
1547 | * It is an opportunity for hooks to alter the data | |
1548 | * | |
77855840 TO |
1549 | * @param array $settingsMetaData |
1550 | * Settings Metadata. | |
72536736 AH |
1551 | * @param int $domainID |
1552 | * @param mixed $profile | |
1553 | * | |
1554 | * @return mixed | |
6a488035 | 1555 | */ |
00be9182 | 1556 | public static function alterSettingsMetaData(&$settingsMetaData, $domainID, $profile) { |
6a488035 | 1557 | return self::singleton()->invoke(3, $settingsMetaData, |
37cd2432 TO |
1558 | $domainID, $profile, |
1559 | self::$_nullObject, self::$_nullObject, self::$_nullObject, | |
1560 | 'civicrm_alterSettingsMetaData' | |
6a488035 TO |
1561 | ); |
1562 | } | |
1563 | ||
5270c026 XD |
1564 | /** |
1565 | * This hook is called before running an api call. | |
1566 | * | |
72536736 AH |
1567 | * @param API_Wrapper[] $wrappers |
1568 | * (see CRM_Utils_API_ReloadOption as an example) | |
1569 | * @param mixed $apiRequest | |
5270c026 | 1570 | * |
72536736 AH |
1571 | * @return null |
1572 | * The return value is ignored | |
5270c026 | 1573 | */ |
00be9182 | 1574 | public static function apiWrappers(&$wrappers, $apiRequest) { |
09f8c8dc TO |
1575 | return self::singleton() |
1576 | ->invoke(2, $wrappers, $apiRequest, self::$_nullObject, self::$_nullObject, self::$_nullObject, | |
37cd2432 TO |
1577 | self::$_nullObject, 'civicrm_apiWrappers' |
1578 | ); | |
5270c026 XD |
1579 | } |
1580 | ||
6a488035 TO |
1581 | /** |
1582 | * This hook is called before running pending cron jobs. | |
1583 | * | |
1584 | * @param CRM_Core_JobManager $jobManager | |
1585 | * | |
72536736 AH |
1586 | * @return null |
1587 | * The return value is ignored. | |
6a488035 | 1588 | */ |
00be9182 | 1589 | public static function cron($jobManager) { |
6a488035 | 1590 | return self::singleton()->invoke(1, |
87dab4a4 | 1591 | $jobManager, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, |
6a488035 TO |
1592 | 'civicrm_cron' |
1593 | ); | |
1594 | } | |
1595 | ||
1596 | /** | |
1597 | * This hook is called when loading CMS permissions; use this hook to modify | |
1598 | * the array of system permissions for CiviCRM. | |
1599 | * | |
72536736 AH |
1600 | * @param array $permissions |
1601 | * Array of permissions. See CRM_Core_Permission::getCorePermissions() for | |
1602 | * the format of this array. | |
6a488035 | 1603 | * |
72536736 AH |
1604 | * @return null |
1605 | * The return value is ignored | |
6a488035 | 1606 | */ |
00be9182 | 1607 | public static function permission(&$permissions) { |
6a488035 | 1608 | return self::singleton()->invoke(1, $permissions, |
87dab4a4 | 1609 | self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, |
6a488035 TO |
1610 | 'civicrm_permission' |
1611 | ); | |
1612 | } | |
fed67e4d | 1613 | |
4b57bc9f EM |
1614 | /** |
1615 | * @param CRM_Core_Exception Exception $exception | |
77855840 TO |
1616 | * @param mixed $request |
1617 | * Reserved for future use. | |
4b57bc9f | 1618 | */ |
37cd2432 TO |
1619 | public static function unhandledException($exception, $request = NULL) { |
1620 | self::singleton() | |
1621 | ->invoke(2, $exception, $request, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, 'civicrm_unhandled_exception'); | |
4caeca04 TO |
1622 | // == 4.4 == |
1623 | //$event = new stdClass(); | |
1624 | //$event->exception = $exception; | |
1625 | //CRM_Core_LegacyErrorHandler::handleException($event); | |
1626 | ||
665b4982 | 1627 | // == 4.5+ == |
4caeca04 TO |
1628 | $event = new \Civi\Core\Event\UnhandledExceptionEvent($exception, self::$_nullObject); |
1629 | \Civi\Core\Container::singleton()->get('dispatcher')->dispatch("hook_civicrm_unhandled_exception", $event); | |
4b57bc9f | 1630 | } |
fed67e4d TO |
1631 | |
1632 | /** | |
fe482240 | 1633 | * This hook is called for declaring managed entities via API. |
fed67e4d | 1634 | * |
72536736 AH |
1635 | * @param array[] $entityTypes |
1636 | * List of entity types; each entity-type is an array with keys: | |
fed67e4d TO |
1637 | * - name: string, a unique short name (e.g. "ReportInstance") |
1638 | * - class: string, a PHP DAO class (e.g. "CRM_Report_DAO_Instance") | |
1639 | * - table: string, a SQL table name (e.g. "civicrm_report_instance") | |
1640 | * | |
72536736 AH |
1641 | * @return null |
1642 | * The return value is ignored | |
fed67e4d | 1643 | */ |
00be9182 | 1644 | public static function entityTypes(&$entityTypes) { |
9399901d | 1645 | return self::singleton()->invoke(1, $entityTypes, self::$_nullObject, self::$_nullObject, |
87dab4a4 | 1646 | self::$_nullObject, self::$_nullObject, self::$_nullObject, 'civicrm_entityTypes' |
fed67e4d TO |
1647 | ); |
1648 | } | |
a8387f19 TO |
1649 | |
1650 | /** | |
fe482240 | 1651 | * This hook is called while preparing a profile form. |
a8387f19 TO |
1652 | * |
1653 | * @param string $name | |
72536736 | 1654 | * @return mixed |
a8387f19 | 1655 | */ |
00be9182 | 1656 | public static function buildProfile($name) { |
9399901d | 1657 | return self::singleton()->invoke(1, $name, self::$_nullObject, self::$_nullObject, self::$_nullObject, |
87dab4a4 | 1658 | self::$_nullObject, self::$_nullObject, 'civicrm_buildProfile'); |
a8387f19 TO |
1659 | } |
1660 | ||
1661 | /** | |
fe482240 | 1662 | * This hook is called while validating a profile form submission. |
a8387f19 TO |
1663 | * |
1664 | * @param string $name | |
72536736 | 1665 | * @return mixed |
a8387f19 | 1666 | */ |
00be9182 | 1667 | public static function validateProfile($name) { |
9399901d | 1668 | return self::singleton()->invoke(1, $name, self::$_nullObject, self::$_nullObject, self::$_nullObject, |
87dab4a4 | 1669 | self::$_nullObject, self::$_nullObject, 'civicrm_validateProfile'); |
a8387f19 TO |
1670 | } |
1671 | ||
1672 | /** | |
fe482240 | 1673 | * This hook is called processing a valid profile form submission. |
a8387f19 TO |
1674 | * |
1675 | * @param string $name | |
72536736 | 1676 | * @return mixed |
a8387f19 | 1677 | */ |
00be9182 | 1678 | public static function processProfile($name) { |
9399901d | 1679 | return self::singleton()->invoke(1, $name, self::$_nullObject, self::$_nullObject, self::$_nullObject, |
87dab4a4 | 1680 | self::$_nullObject, self::$_nullObject, 'civicrm_processProfile'); |
a8387f19 TO |
1681 | } |
1682 | ||
1683 | /** | |
1684 | * This hook is called while preparing a read-only profile screen | |
1685 | * | |
1686 | * @param string $name | |
72536736 | 1687 | * @return mixed |
a8387f19 | 1688 | */ |
00be9182 | 1689 | public static function viewProfile($name) { |
9399901d | 1690 | return self::singleton()->invoke(1, $name, self::$_nullObject, self::$_nullObject, self::$_nullObject, |
87dab4a4 | 1691 | self::$_nullObject, self::$_nullObject, 'civicrm_viewProfile'); |
a8387f19 TO |
1692 | } |
1693 | ||
1694 | /** | |
1695 | * This hook is called while preparing a list of contacts (based on a profile) | |
1696 | * | |
1697 | * @param string $name | |
72536736 | 1698 | * @return mixed |
a8387f19 | 1699 | */ |
00be9182 | 1700 | public static function searchProfile($name) { |
9399901d | 1701 | return self::singleton()->invoke(1, $name, self::$_nullObject, self::$_nullObject, self::$_nullObject, |
87dab4a4 | 1702 | self::$_nullObject, self::$_nullObject, 'civicrm_searchProfile'); |
9399901d KJ |
1703 | } |
1704 | ||
d0fc33e2 M |
1705 | /** |
1706 | * This hook is invoked when building a CiviCRM name badge. | |
1707 | * | |
77855840 TO |
1708 | * @param string $labelName |
1709 | * String referencing name of badge format. | |
1710 | * @param object $label | |
1711 | * Reference to the label object. | |
1712 | * @param array $format | |
1713 | * Array of format data. | |
1714 | * @param array $participant | |
1715 | * Array of participant values. | |
d0fc33e2 | 1716 | * |
a6c01b45 CW |
1717 | * @return null |
1718 | * the return value is ignored | |
d0fc33e2 | 1719 | */ |
00be9182 | 1720 | public static function alterBadge($labelName, &$label, &$format, &$participant) { |
37cd2432 TO |
1721 | return self::singleton() |
1722 | ->invoke(4, $labelName, $label, $format, $participant, self::$_nullObject, self::$_nullObject, 'civicrm_alterBadge'); | |
d0fc33e2 M |
1723 | } |
1724 | ||
1725 | ||
9399901d | 1726 | /** |
fe482240 | 1727 | * This hook is called before encoding data in barcode. |
9399901d | 1728 | * |
77855840 TO |
1729 | * @param array $data |
1730 | * Associated array of values available for encoding. | |
1731 | * @param string $type | |
1732 | * Type of barcode, classic barcode or QRcode. | |
1733 | * @param string $context | |
1734 | * Where this hooks is invoked. | |
9399901d | 1735 | * |
72536736 | 1736 | * @return mixed |
9399901d | 1737 | */ |
e7292422 | 1738 | public static function alterBarcode(&$data, $type = 'barcode', $context = 'name_badge') { |
9399901d | 1739 | return self::singleton()->invoke(3, $data, $type, $context, self::$_nullObject, |
87dab4a4 | 1740 | self::$_nullObject, self::$_nullObject, 'civicrm_alterBarcode'); |
a8387f19 | 1741 | } |
99e9587a | 1742 | |
72ad6c1b TO |
1743 | /** |
1744 | * Modify or replace the Mailer object used for outgoing mail. | |
1745 | * | |
1746 | * @param object $mailer | |
1747 | * The default mailer produced by normal configuration; a PEAR "Mail" class (like those returned by Mail::factory) | |
1748 | * @param string $driver | |
1749 | * The type of the default mailer (eg "smtp", "sendmail", "mock", "CRM_Mailing_BAO_Spool") | |
1750 | * @param array $params | |
1751 | * The default mailer config options | |
72536736 AH |
1752 | * |
1753 | * @return mixed | |
72ad6c1b TO |
1754 | * @see Mail::factory |
1755 | */ | |
00be9182 | 1756 | public static function alterMail(&$mailer, $driver, $params) { |
c8e4bea0 | 1757 | return self::singleton() |
87dab4a4 | 1758 | ->invoke(3, $mailer, $driver, $params, self::$_nullObject, self::$_nullObject, self::$_nullObject, 'civicrm_alterMailer'); |
72ad6c1b TO |
1759 | } |
1760 | ||
99e9587a | 1761 | /** |
2efcf0c2 | 1762 | * This hook is called while building the core search query, |
99e9587a DS |
1763 | * so hook implementers can provide their own query objects which alters/extends core search. |
1764 | * | |
72536736 AH |
1765 | * @param array $queryObjects |
1766 | * @param string $type | |
1767 | * | |
1768 | * @return mixed | |
99e9587a | 1769 | */ |
00be9182 | 1770 | public static function queryObjects(&$queryObjects, $type = 'Contact') { |
37cd2432 TO |
1771 | return self::singleton() |
1772 | ->invoke(2, $queryObjects, $type, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, 'civicrm_queryObjects'); | |
99e9587a | 1773 | } |
15d9b3ae N |
1774 | |
1775 | /** | |
fe482240 | 1776 | * This hook is called while viewing contact dashboard. |
15d9b3ae | 1777 | * |
72536736 AH |
1778 | * @param array $availableDashlets |
1779 | * List of dashlets; each is formatted per api/v3/Dashboard | |
1780 | * @param array $defaultDashlets | |
1781 | * List of dashlets; each is formatted per api/v3/DashboardContact | |
1782 | * | |
1783 | * @return mixed | |
15d9b3ae | 1784 | */ |
00be9182 | 1785 | public static function dashboard_defaults($availableDashlets, &$defaultDashlets) { |
37cd2432 TO |
1786 | return self::singleton() |
1787 | ->invoke(2, $availableDashlets, $defaultDashlets, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, 'civicrm_dashboard_defaults'); | |
15d9b3ae | 1788 | } |
02094cdb JJ |
1789 | |
1790 | /** | |
1791 | * This hook is called before a case merge (or a case reassign) | |
f4aaa82a | 1792 | * |
77855840 TO |
1793 | * @param int $mainContactId |
1794 | * @param int $mainCaseId | |
1795 | * @param int $otherContactId | |
1796 | * @param int $otherCaseId | |
3d0d359e | 1797 | * @param bool $changeClient |
f4aaa82a | 1798 | * |
02094cdb JJ |
1799 | * @return void |
1800 | */ | |
00be9182 | 1801 | public static function pre_case_merge($mainContactId, $mainCaseId = NULL, $otherContactId = NULL, $otherCaseId = NULL, $changeClient = FALSE) { |
37cd2432 TO |
1802 | return self::singleton() |
1803 | ->invoke(5, $mainContactId, $mainCaseId, $otherContactId, $otherCaseId, $changeClient, self::$_nullObject, 'civicrm_pre_case_merge'); | |
02094cdb | 1804 | } |
f4aaa82a | 1805 | |
02094cdb JJ |
1806 | /** |
1807 | * This hook is called after a case merge (or a case reassign) | |
f4aaa82a | 1808 | * |
77855840 TO |
1809 | * @param int $mainContactId |
1810 | * @param int $mainCaseId | |
1811 | * @param int $otherContactId | |
1812 | * @param int $otherCaseId | |
3d0d359e | 1813 | * @param bool $changeClient |
77b97be7 | 1814 | * |
02094cdb JJ |
1815 | * @return void |
1816 | */ | |
00be9182 | 1817 | public static function post_case_merge($mainContactId, $mainCaseId = NULL, $otherContactId = NULL, $otherCaseId = NULL, $changeClient = FALSE) { |
37cd2432 TO |
1818 | return self::singleton() |
1819 | ->invoke(5, $mainContactId, $mainCaseId, $otherContactId, $otherCaseId, $changeClient, self::$_nullObject, 'civicrm_post_case_merge'); | |
02094cdb | 1820 | } |
250b3b1f | 1821 | |
1822 | /** | |
1823 | * Issue CRM-14276 | |
1824 | * Add a hook for altering the display name | |
1825 | * | |
1826 | * hook_civicrm_contact_get_displayname(&$display_name, $objContact) | |
f4aaa82a | 1827 | * |
250b3b1f | 1828 | * @param string $displayName |
1829 | * @param int $contactId | |
77855840 TO |
1830 | * @param object $dao |
1831 | * The contact object. | |
f4aaa82a EM |
1832 | * |
1833 | * @return mixed | |
250b3b1f | 1834 | */ |
00be9182 | 1835 | public static function alterDisplayName($displayName, $contactId, $dao) { |
250b3b1f | 1836 | return self::singleton()->invoke(3, |
1837 | $displayName, $contactId, $dao, self::$_nullObject, self::$_nullObject, | |
1838 | self::$_nullObject, 'civicrm_contact_get_displayname' | |
1839 | ); | |
1840 | } | |
e7ff7042 TO |
1841 | |
1842 | /** | |
1843 | * EXPERIMENTAL: This hook allows one to register additional Angular modules | |
1844 | * | |
77855840 TO |
1845 | * @param array $angularModules |
1846 | * List of modules. | |
a6c01b45 CW |
1847 | * @return null |
1848 | * the return value is ignored | |
e7ff7042 TO |
1849 | * |
1850 | * @code | |
1851 | * function mymod_civicrm_angularModules(&$angularModules) { | |
8671b4f2 TO |
1852 | * $angularModules['myAngularModule'] = array( |
1853 | * 'ext' => 'org.example.mymod', | |
1854 | * 'js' => array('js/myAngularModule.js'), | |
1855 | * ); | |
1856 | * $angularModules['myBigAngularModule'] = array( | |
1857 | * 'ext' => 'org.example.mymod', | |
1858 | * 'js' => array('js/part1.js', 'js/part2.js'), | |
1859 | * 'css' => array('css/myAngularModule.css'), | |
1860 | * 'partials' => array('partials/myBigAngularModule'), | |
1861 | * ); | |
e7ff7042 TO |
1862 | * } |
1863 | * @endcode | |
1864 | */ | |
00be9182 | 1865 | public static function angularModules(&$angularModules) { |
e7ff7042 TO |
1866 | return self::singleton()->invoke(1, $angularModules, |
1867 | self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, | |
1868 | 'civicrm_angularModules' | |
1869 | ); | |
1870 | } | |
1871 | ||
708d8fa2 TO |
1872 | /** |
1873 | * This hook fires whenever a record in a case changes. | |
1874 | * | |
1875 | * @param \Civi\CCase\Analyzer $analyzer | |
1876 | */ | |
00be9182 | 1877 | public static function caseChange(\Civi\CCase\Analyzer $analyzer) { |
708d8fa2 TO |
1878 | $event = new \Civi\CCase\Event\CaseChangeEvent($analyzer); |
1879 | \Civi\Core\Container::singleton()->get('dispatcher')->dispatch("hook_civicrm_caseChange", $event); | |
1880 | ||
1881 | return self::singleton()->invoke(1, $angularModules, | |
1882 | self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, | |
1883 | 'civicrm_caseChange' | |
1884 | ); | |
1885 | } | |
688ad538 TO |
1886 | |
1887 | /** | |
fe482240 | 1888 | * Generate a default CRUD URL for an entity. |
688ad538 | 1889 | * |
77855840 TO |
1890 | * @param array $spec |
1891 | * With keys:. | |
688ad538 TO |
1892 | * - action: int, eg CRM_Core_Action::VIEW or CRM_Core_Action::UPDATE |
1893 | * - entity_table: string | |
1894 | * - entity_id: int | |
1895 | * @param CRM_Core_DAO $bao | |
77855840 TO |
1896 | * @param array $link |
1897 | * To define the link, add these keys to $link:. | |
16b10e64 CW |
1898 | * - title: string |
1899 | * - path: string | |
1900 | * - query: array | |
1901 | * - url: string (used in lieu of "path"/"query") | |
688ad538 TO |
1902 | * Note: if making "url" CRM_Utils_System::url(), set $htmlize=false |
1903 | * @return mixed | |
1904 | */ | |
00be9182 | 1905 | public static function crudLink($spec, $bao, &$link) { |
688ad538 TO |
1906 | return self::singleton()->invoke(3, $spec, $bao, $link, |
1907 | self::$_nullObject, self::$_nullObject, self::$_nullObject, | |
1908 | 'civicrm_crudLink' | |
1909 | ); | |
1910 | } | |
6cccc6d4 TO |
1911 | |
1912 | /** | |
37cd2432 | 1913 | * @param array <CRM_Core_FileSearchInterface> $fileSearches |
6cccc6d4 TO |
1914 | * @return mixed |
1915 | */ | |
00be9182 | 1916 | public static function fileSearches(&$fileSearches) { |
6cccc6d4 TO |
1917 | return self::singleton()->invoke(1, $fileSearches, |
1918 | self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, | |
1919 | 'civicrm_fileSearches' | |
1920 | ); | |
1921 | } | |
96025800 | 1922 | |
6a488035 | 1923 | } |