CRM-14235 Preparation for Drupal 8
[civicrm-core.git] / CRM / Utils / Hook.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
232624b1 4 | CiviCRM version 4.4 |
6a488035
TO
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
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 +--------------------------------------------------------------------+
26*/
27
28/**
29 *
30 * @package CiviCRM_Hook
31 * @copyright CiviCRM LLC (c) 2004-2013
32 * $Id: $
33 *
34 */
35
36abstract class CRM_Utils_Hook {
37
38 // Allowed values for dashboard hook content placement
39 // Default - place content below activity list
40 CONST DASHBOARD_BELOW = 1;
41 // Place content above activity list
42 CONST DASHBOARD_ABOVE = 2;
43 // Don't display activity list at all
44 CONST DASHBOARD_REPLACE = 3;
45
46 // by default - place content below existing content
47 CONST SUMMARY_BELOW = 1;
48 // pace hook content above
49 CONST SUMMARY_ABOVE = 2;
50 // create your own summarys
51 CONST SUMMARY_REPLACE = 3;
52
53 static $_nullObject = NULL;
54
55 /**
56 * We only need one instance of this object. So we use the singleton
57 * pattern and cache the instance in this variable
58 *
59 * @var object
60 * @static
61 */
62 static private $_singleton = NULL;
63
64 /**
65 * @var bool
66 */
67 private $commonIncluded = FALSE;
68
69 /**
70 * @var array(string)
71 */
72 private $commonCiviModules = array();
73
74 /**
75 * Constructor and getter for the singleton instance
76 *
72536736
AH
77 * @param bool $fresh
78 *
79 * @return self
80 * An instance of $config->userHookClass
6a488035
TO
81 */
82 static function singleton($fresh = FALSE) {
83 if (self::$_singleton == NULL || $fresh) {
84 $config = CRM_Core_Config::singleton();
85 $class = $config->userHookClass;
86 require_once (str_replace('_', DIRECTORY_SEPARATOR, $config->userHookClass) . '.php');
87 self::$_singleton = new $class();
88 }
89 return self::$_singleton;
90 }
91
72536736 92 /**
f0a7a0c9
EM
93 *Invoke hooks
94 *
95 * @param int $numParams Number of parameters to pass to the hook
96 * @param mixed $arg1 parameter to be passed to the hook
97 * @param mixed $arg2 parameter to be passed to the hook
98 * @param mixed $arg3 parameter to be passed to the hook
99 * @param mixed $arg4 parameter to be passed to the hook
100 * @param mixed $arg5 parameter to be passed to the hook
101 * @param mixed $arg6 parameter to be passed to the hook
102 * @param string $fnSuffix function suffix, this is effectively the hook name
72536736
AH
103 *
104 * @return mixed
105 */
6a488035 106 abstract function invoke($numParams,
87dab4a4 107 &$arg1, &$arg2, &$arg3, &$arg4, &$arg5, &$arg6,
6a488035
TO
108 $fnSuffix
109 );
110
6a488035 111 function commonInvoke($numParams,
87dab4a4 112 &$arg1, &$arg2, &$arg3, &$arg4, &$arg5, &$arg6,
6a488035
TO
113 $fnSuffix, $fnPrefix
114 ) {
115
116 $this->commonBuildModuleList($fnPrefix);
4636d4fd 117
6a488035 118 return $this->runHooks($this->commonCiviModules, $fnSuffix,
87dab4a4 119 $numParams, $arg1, $arg2, $arg3, $arg4, $arg5, $arg6
6a488035
TO
120 );
121 }
122
123 /**
124 * Build the list of modules to be processed for hooks.
72536736
AH
125 *
126 * @param string $fnPrefix
6a488035
TO
127 */
128 function commonBuildModuleList($fnPrefix) {
129 if (!$this->commonIncluded) {
130 // include external file
131 $this->commonIncluded = TRUE;
132
133 $config = CRM_Core_Config::singleton();
134 if (!empty($config->customPHPPathDir) &&
135 file_exists("{$config->customPHPPathDir}/civicrmHooks.php")
136 ) {
137 @include_once ("civicrmHooks.php");
138 }
139
140 if (!empty($fnPrefix)) {
141 $this->commonCiviModules[$fnPrefix] = $fnPrefix;
142 }
143
144 $this->requireCiviModules($this->commonCiviModules);
145 }
146 }
147
72536736
AH
148 /**
149 * @param $civiModules
150 * @param $fnSuffix
151 * @param $numParams
152 * @param $arg1
153 * @param $arg2
154 * @param $arg3
155 * @param $arg4
156 * @param $arg5
157 * @param $arg6
158 *
159 * @return array|bool
160 */
3ac9ab1c 161 function runHooks($civiModules, $fnSuffix, $numParams,
87dab4a4 162 &$arg1, &$arg2, &$arg3, &$arg4, &$arg5, &$arg6
6a488035 163 ) {
3ac9ab1c
TO
164 // $civiModules is *not* passed by reference because runHooks
165 // must be reentrant. PHP is finicky about running
166 // multiple loops over the same variable. The circumstances
167 // to reproduce the issue are pretty intricate.
6a488035
TO
168 $result = $fResult = array();
169
4636d4fd
DL
170 if ($civiModules !== NULL) {
171 foreach ($civiModules as $module) {
172 $fnName = "{$module}_{$fnSuffix}";
173 if (function_exists($fnName)) {
174 switch ($numParams) {
175 case 0:
176 $fResult = $fnName();
177 break;
178
179 case 1:
180 $fResult = $fnName($arg1);
181 break;
182
183 case 2:
184 $fResult = $fnName($arg1, $arg2);
185 break;
186
187 case 3:
188 $fResult = $fnName($arg1, $arg2, $arg3);
189 break;
190
191 case 4:
192 $fResult = $fnName($arg1, $arg2, $arg3, $arg4);
193 break;
194
195 case 5:
196 $fResult = $fnName($arg1, $arg2, $arg3, $arg4, $arg5);
197 break;
198
87dab4a4
AH
199 case 6:
200 $fResult = $fnName($arg1, $arg2, $arg3, $arg4, $arg5, $arg6);
201 break;
f0a7a0c9 202
4636d4fd
DL
203 default:
204 CRM_Core_Error::fatal(ts('Invalid hook invocation'));
205 break;
206 }
6a488035 207 }
6a488035 208
4636d4fd 209 if (!empty($fResult) &&
6a488035 210 is_array($fResult)) {
4636d4fd
DL
211 $result = array_merge($result, $fResult);
212 }
6a488035
TO
213 }
214 }
215
216 return empty($result) ? TRUE : $result;
217 }
218
219 function requireCiviModules(&$moduleList) {
220 $civiModules = CRM_Core_PseudoConstant::getModuleExtensions();
221 foreach ($civiModules as $civiModule) {
222 if (!file_exists($civiModule['filePath'])) {
223 CRM_Core_Session::setStatus(
9399901d
KJ
224 ts( 'Error loading module file (%1). Please restore the file or disable the module.',
225 array(1 => $civiModule['filePath']) ),
1393e47e 226 ts( 'Warning'), 'error');
6a488035
TO
227 continue;
228 }
229 include_once $civiModule['filePath'];
230 $moduleList[$civiModule['prefix']] = $civiModule['prefix'];
231 }
232 }
233
234 /**
235 * This hook is called before a db write on some core objects.
236 * This hook does not allow the abort of the operation
237 *
238 * @param string $op the type of operation being performed
239 * @param string $objectName the name of the object
240 * @param object $id the object id if available
241 * @param array $params the parameters used for object creation / editing
242 *
243 * @return null the return value is ignored
6a488035
TO
244 */
245 static function pre($op, $objectName, $id, &$params) {
87dab4a4 246 return self::singleton()->invoke(4, $op, $objectName, $id, $params, self::$_nullObject, self::$_nullObject, 'civicrm_pre');
6a488035
TO
247 }
248
249 /**
250 * This hook is called after a db write on some core objects.
251 *
252 * @param string $op the type of operation being performed
253 * @param string $objectName the name of the object
254 * @param int $objectId the unique identifier for the object
255 * @param object $objectRef the reference to the object if available
256 *
257 * @return mixed based on op. pre-hooks return a boolean or
258 * an error message which aborts the operation
259 * @access public
260 */
261 static function post($op, $objectName, $objectId, &$objectRef) {
87dab4a4 262 return self::singleton()->invoke(4, $op, $objectName, $objectId, $objectRef, self::$_nullObject, self::$_nullObject, 'civicrm_post');
6a488035
TO
263 }
264
6a488035
TO
265 /**
266 * This hook retrieves links from other modules and injects it into
267 * the view contact tabs
268 *
269 * @param string $op the type of operation being performed
270 * @param string $objectName the name of the object
271 * @param int $objectId the unique identifier for the object
87dab4a4
AH
272 * @param array $links (optional) the links array (introduced in v3.2)
273 * @param int $mask (optional) the bitmask to show/hide links
274 * @param array $values (optional) the values to fill the links
6a488035 275 *
de8e002f 276 * @return null the return value is ignored
6a488035 277 */
87dab4a4
AH
278 static function links($op, $objectName, &$objectId, &$links, &$mask = NULL, &$values = array()) {
279 return self::singleton()->invoke(6, $op, $objectName, $objectId, $links, $mask, $values, 'civicrm_links');
6a488035
TO
280 }
281
282 /**
283 * This hook is invoked when building a CiviCRM form. This hook should also
284 * be used to set the default values of a form element
285 *
286 * @param string $formName the name of the form
287 * @param object $form reference to the form object
288 *
289 * @return null the return value is ignored
290 */
291 static function buildForm($formName, &$form) {
87dab4a4 292 return self::singleton()->invoke(2, $formName, $form, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, 'civicrm_buildForm');
6a488035
TO
293 }
294
295 /**
296 * This hook is invoked when a CiviCRM form is submitted. If the module has injected
297 * any form elements, this hook should save the values in the database
298 *
299 * @param string $formName the name of the form
300 * @param object $form reference to the form object
301 *
302 * @return null the return value is ignored
303 */
304 static function postProcess($formName, &$form) {
87dab4a4 305 return self::singleton()->invoke(2, $formName, $form, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, 'civicrm_postProcess');
6a488035
TO
306 }
307
308 /**
309 * This hook is invoked during all CiviCRM form validation. An array of errors
310 * detected is returned. Else we assume validation succeeded.
311 *
312 * @param string $formName the name of the form
313 * @param array &$fields the POST parameters as filtered by QF
314 * @param array &$files the FILES parameters as sent in by POST
315 * @param array &$form the form object
316 *
317 * @return mixed formRule hooks return a boolean or
318 * an array of error messages which display a QF Error
6a488035
TO
319 */
320 static function validate($formName, &$fields, &$files, &$form) {
87dab4a4 321 return self::singleton()->invoke(4, $formName, $fields, $files, $form, self::$_nullObject, self::$_nullObject, 'civicrm_validate');
6a488035
TO
322 }
323
324 /**
325 * This hook is invoked during all CiviCRM form validation. An array of errors
326 * detected is returned. Else we assume validation succeeded.
327 *
328 * @param string $formName the name of the form
329 * @param array &$fields the POST parameters as filtered by QF
330 * @param array &$files the FILES parameters as sent in by POST
331 * @param array &$form the form object
332 * @param array &$errors the array of errors.
333 *
334 * @return mixed formRule hooks return a boolean or
335 * an array of error messages which display a QF Error
6a488035
TO
336 */
337 static function validateForm($formName, &$fields, &$files, &$form, &$errors) {
87dab4a4 338 return self::singleton()->invoke(5, $formName, $fields, $files, $form, $errors, self::$_nullObject, 'civicrm_validateForm');
6a488035
TO
339 }
340
341 /**
342 * This hook is called before a db write on a custom table
343 *
344 * @param string $op the type of operation being performed
345 * @param string $groupID the custom group ID
346 * @param object $entityID the entityID of the row in the custom table
347 * @param array $params the parameters that were sent into the calling function
348 *
349 * @return null the return value is ignored
6a488035
TO
350 */
351 static function custom($op, $groupID, $entityID, &$params) {
87dab4a4 352 return self::singleton()->invoke(4, $op, $groupID, $entityID, $params, self::$_nullObject, self::$_nullObject, 'civicrm_custom');
6a488035
TO
353 }
354
355 /**
356 * This hook is called when composing the ACL where clause to restrict
357 * visibility of contacts to the logged in user
358 *
359 * @param int $type the type of permission needed
360 * @param array $tables (reference ) add the tables that are needed for the select clause
361 * @param array $whereTables (reference ) add the tables that are needed for the where clause
362 * @param int $contactID the contactID for whom the check is made
363 * @param string $where the currrent where clause
364 *
365 * @return null the return value is ignored
6a488035
TO
366 */
367 static function aclWhereClause($type, &$tables, &$whereTables, &$contactID, &$where) {
87dab4a4 368 return self::singleton()->invoke(5, $type, $tables, $whereTables, $contactID, $where, self::$_nullObject, 'civicrm_aclWhereClause');
6a488035
TO
369 }
370
371 /**
372 * This hook is called when composing the ACL where clause to restrict
373 * visibility of contacts to the logged in user
374 *
375 * @param int $type the type of permission needed
376 * @param int $contactID the contactID for whom the check is made
377 * @param string $tableName the tableName which is being permissioned
378 * @param array $allGroups the set of all the objects for the above table
379 * @param array $currentGroups the set of objects that are currently permissioned for this contact
380 *
381 * @return null the return value is ignored
6a488035
TO
382 */
383 static function aclGroup($type, $contactID, $tableName, &$allGroups, &$currentGroups) {
87dab4a4 384 return self::singleton()->invoke(5, $type, $contactID, $tableName, $allGroups, $currentGroups, self::$_nullObject, 'civicrm_aclGroup');
6a488035
TO
385 }
386
387 /**
388 * This hook is called when building the menu table
389 *
390 * @param array $files The current set of files to process
391 *
392 * @return null the return value is ignored
6a488035
TO
393 */
394 static function xmlMenu(&$files) {
395 return self::singleton()->invoke(1, $files,
87dab4a4 396 self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject,
6a488035
TO
397 'civicrm_xmlMenu'
398 );
399 }
400
401 /**
402 * This hook is called for declaring managed entities via API
403 *
404 * @param array $entities List of pending entities
405 *
406 * @return null the return value is ignored
407 * @access public
408 */
409 static function managed(&$entities) {
410 return self::singleton()->invoke(1, $entities,
87dab4a4 411 self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject,
6a488035
TO
412 'civicrm_managed'
413 );
414 }
415
416 /**
417 * This hook is called when rendering the dashboard (q=civicrm/dashboard)
418 *
419 * @param int $contactID - the contactID for whom the dashboard is being rendered
9399901d
KJ
420 * @param int $contentPlacement - (output parameter) where should the hook content be displayed
421 * relative to the activity list
6a488035
TO
422 *
423 * @return string the html snippet to include in the dashboard
424 * @access public
425 */
426 static function dashboard($contactID, &$contentPlacement = self::DASHBOARD_BELOW) {
427 $retval = self::singleton()->invoke(2, $contactID, $contentPlacement,
87dab4a4 428 self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject,
6a488035
TO
429 'civicrm_dashboard'
430 );
431
432 /*
433 * Note we need this seemingly unnecessary code because in the event that the implementation
434 * of the hook declares the second parameter but doesn't set it, then it comes back unset even
435 * though we have a default value in this function's declaration above.
436 */
437 if (!isset($contentPlacement)) {
438 $contentPlacement = self::DASHBOARD_BELOW;
439 }
440
441 return $retval;
442 }
443
444 /**
445 * This hook is called before storing recently viewed items.
446 *
447 * @param array $recentArray - an array of recently viewed or processed items, for in place modification
448 *
449 * @return array
450 * @access public
451 */
452 static function recent(&$recentArray) {
453 return self::singleton()->invoke(1, $recentArray,
87dab4a4 454 self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject,
6a488035
TO
455 'civicrm_recent'
456 );
457 }
458
459 /**
460 * This hook is called when building the amount structure for a Contribution or Event Page
461 *
462 * @param int $pageType - is this a contribution or event page
463 * @param object $form - reference to the form object
464 * @param array $amount - the amount structure to be displayed
465 *
466 * @return null
467 * @access public
468 */
469 static function buildAmount($pageType, &$form, &$amount) {
9399901d 470 return self::singleton()->invoke(3, $pageType, $form, $amount, self::$_nullObject,
87dab4a4 471 self::$_nullObject, self::$_nullObject, 'civicrm_buildAmount');
6a488035
TO
472 }
473
474 /**
475 * This hook is called when building the state list for a particular country.
476 *
72536736
AH
477 * @param array $countryID
478 * The country id whose states are being selected.
479 * @param $states
6a488035
TO
480 *
481 * @return null
6a488035
TO
482 */
483 static function buildStateProvinceForCountry($countryID, &$states) {
484 return self::singleton()->invoke(2, $countryID, $states,
87dab4a4 485 self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject,
6a488035
TO
486 'civicrm_buildStateProvinceForCountry'
487 );
488 }
489
490 /**
491 * This hook is called when rendering the tabs for a contact (q=civicrm/contact/view)c
492 *
493 * @param array $tabs - the array of tabs that will be displayed
494 * @param int $contactID - the contactID for whom the dashboard is being rendered
495 *
496 * @return null
6a488035
TO
497 */
498 static function tabs(&$tabs, $contactID) {
499 return self::singleton()->invoke(2, $tabs, $contactID,
87dab4a4 500 self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, 'civicrm_tabs'
6a488035
TO
501 );
502 }
503
fa3dbfbd 504 /**
72536736
AH
505 * This hook is called when rendering the tabs used for events and potentially
506 * contribution pages, etc.
507 *
508 * @param string $tabsetName
509 * Name of the screen or visual element.
510 * @param array $tabs
511 * Tabs that will be displayed.
512 * @param array $context
513 * Extra data about the screen or context in which the tab is used.
fa3dbfbd 514 *
2efcf0c2 515 * @return null
fa3dbfbd 516 */
379a8439 517 static function tabset($tabsetName, &$tabs, $context) {
518 return self::singleton()->invoke(3, $tabsetName, $tabs,
87dab4a4 519 $context, self::$_nullObject, self::$_nullObject, self::$_nullObject, 'civicrm_tabset'
fa3dbfbd 520 );
521 }
522
6a488035
TO
523 /**
524 * This hook is called when sending an email / printing labels
525 *
526 * @param array $tokens - the list of tokens that can be used for the contact
527 *
528 * @return null
529 * @access public
530 */
531 static function tokens(&$tokens) {
532 return self::singleton()->invoke(1, $tokens,
87dab4a4 533 self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, 'civicrm_tokens'
6a488035
TO
534 );
535 }
536
537 /**
538 * This hook is called when sending an email / printing labels to get the values for all the
539 * tokens returned by the 'tokens' hook
540 *
541 * @param array $details - the array to store the token values indexed by contactIDs (unless it a single)
542 * @param array $contactIDs - an array of contactIDs
543 * @param int $jobID - the jobID if this is associated with a CiviMail mailing
544 * @param array $tokens - the list of tokens associated with the content
545 * @param string $className - the top level className from where the hook is invoked
546 *
547 * @return null
548 * @access public
549 */
550 static function tokenValues(&$details,
551 $contactIDs,
552 $jobID = NULL,
553 $tokens = array(),
554 $className = NULL
555 ) {
87dab4a4 556 return self::singleton()->invoke(5, $details, $contactIDs, $jobID, $tokens, $className, self::$_nullObject, 'civicrm_tokenValues');
6a488035
TO
557 }
558
559 /**
560 * This hook is called before a CiviCRM Page is rendered. You can use this hook to insert smarty variables
561 * in a template
562 *
563 * @param object $page - the page that will be rendered
564 *
565 * @return null
566 * @access public
567 */
568 static function pageRun(&$page) {
569 return self::singleton()->invoke(1, $page,
87dab4a4 570 self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject,
6a488035
TO
571 'civicrm_pageRun'
572 );
573 }
574
575 /**
576 * This hook is called after a copy of an object has been made. The current objects are
577 * Event, Contribution Page and UFGroup
578 *
579 * @param string $objectName - name of the object
580 * @param object $object - reference to the copy
581 *
582 * @return null
583 * @access public
584 */
585 static function copy($objectName, &$object) {
586 return self::singleton()->invoke(2, $objectName, $object,
87dab4a4 587 self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject,
6a488035
TO
588 'civicrm_copy'
589 );
590 }
591
592 /**
593 * This hook is called when a contact unsubscribes from a mailing. It allows modules
594 * to override what the contacts are removed from.
595 *
72536736
AH
596 * @param string $op
597 * Ignored for now
598 * @param int $mailingId
599 * The id of the mailing to unsub from
600 * @param int $contactId
601 * The id of the contact who is unsubscribing
602 * @param array|int $groups
603 * Groups the contact will be removed from.
604 * @param array|int $baseGroups
605 * Base groups (used in smart mailings) the contact will be removed from.
606 *
dcbd3a55 607 *
72536736
AH
608 * @return mixed
609 */
6a488035 610 static function unsubscribeGroups($op, $mailingId, $contactId, &$groups, &$baseGroups) {
87dab4a4 611 return self::singleton()->invoke(5, $op, $mailingId, $contactId, $groups, $baseGroups, self::$_nullObject, 'civicrm_unsubscribeGroups');
6a488035
TO
612 }
613
614 /**
9399901d
KJ
615 * This hook is called when CiviCRM needs to edit/display a custom field with options (select, radio, checkbox,
616 * adv multiselect)
6a488035
TO
617 *
618 * @param int $customFieldID - the custom field ID
619 * @param array $options - the current set of options for that custom field.
620 * You can add/remove existing options.
9399901d
KJ
621 * Important: This array may contain meta-data about the field that is needed elsewhere, so it is important
622 * to be careful to not overwrite the array.
6a488035 623 * Only add/edit/remove the specific field options you intend to affect.
9399901d
KJ
624 * @param boolean $detailedFormat - if true,
625 * the options are in an ID => array ( 'id' => ID, 'label' => label, 'value' => value ) format
72536736
AH
626 *
627 * @return mixed
6a488035
TO
628 */
629 static function customFieldOptions($customFieldID, &$options, $detailedFormat = FALSE) {
630 return self::singleton()->invoke(3, $customFieldID, $options, $detailedFormat,
87dab4a4 631 self::$_nullObject, self::$_nullObject, self::$_nullObject,
6a488035
TO
632 'civicrm_customFieldOptions'
633 );
634 }
635
636 /**
637 *
638 * This hook is called to display the list of actions allowed after doing a search.
639 * This allows the module developer to inject additional actions or to remove existing actions.
640 *
641 * @param string $objectType - the object type for this search
642 * - activity, campaign, case, contact, contribution, event, grant, membership, and pledge are supported.
643 * @param array $tasks - the current set of tasks for that custom field.
644 * You can add/remove existing tasks.
9399901d
KJ
645 * Each task needs to have a title (eg 'title' => ts( 'Add Contacts to Group')) and a class
646 * (eg 'class' => 'CRM_Contact_Form_Task_AddToGroup').
6a488035 647 * Optional result (boolean) may also be provided. Class can be an array of classes (not sure what that does :( ).
9399901d
KJ
648 * The key for new Task(s) should not conflict with the keys for core tasks of that $objectType, which can be
649 * found in CRM/$objectType/Task.php.
72536736
AH
650 *
651 * @return mixed
6a488035
TO
652 */
653 static function searchTasks($objectType, &$tasks) {
654 return self::singleton()->invoke(2, $objectType, $tasks,
87dab4a4 655 self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject,
6a488035
TO
656 'civicrm_searchTasks'
657 );
658 }
659
72536736
AH
660 /**
661 * @param mixed $form
662 * @param array $params
663 *
664 * @return mixed
665 */
6a488035
TO
666 static function eventDiscount(&$form, &$params) {
667 return self::singleton()->invoke(2, $form, $params,
87dab4a4 668 self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject,
6a488035
TO
669 'civicrm_eventDiscount'
670 );
671 }
672
673 /**
674 * This hook is called when composing a mailing. You can include / exclude other groups as needed.
675 *
72536736
AH
676 * @param mixed $form
677 * The form object for which groups / mailings being displayed
678 * @param array $groups
679 * The list of groups being included / excluded
680 * @param array $mailings
681 * The list of mailings being included / excluded
682 *
683 * @return mixed
6a488035
TO
684 */
685 static function mailingGroups(&$form, &$groups, &$mailings) {
686 return self::singleton()->invoke(3, $form, $groups, $mailings,
87dab4a4 687 self::$_nullObject, self::$_nullObject, self::$_nullObject,
6a488035
TO
688 'civicrm_mailingGroups'
689 );
690 }
691
692 /**
9399901d
KJ
693 * This hook is called when composing the array of membershipTypes and their cost during a membership registration
694 * (new or renewal).
6a488035
TO
695 * Note the hook is called on initial page load and also reloaded after submit (PRG pattern).
696 * You can use it to alter the membership types when first loaded, or after submission
697 * (for example if you want to gather data in the form and use it to alter the fees).
698 *
72536736
AH
699 * @param mixed $form
700 * The form object that is presenting the page
701 * @param array $membershipTypes
702 * The array of membership types and their amount
703 *
704 * @return mixed
6a488035
TO
705 */
706 static function membershipTypeValues(&$form, &$membershipTypes) {
707 return self::singleton()->invoke(2, $form, $membershipTypes,
87dab4a4 708 self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject,
6a488035
TO
709 'civicrm_membershipTypeValues'
710 );
711 }
712
713 /**
714 * This hook is called when rendering the contact summary
715 *
72536736
AH
716 * @param int $contactID
717 * The contactID for whom the summary is being rendered
718 * @param mixed $content
719 * @param int $contentPlacement
720 * Specifies where the hook content should be displayed relative to the
721 * existing content
6a488035 722 *
72536736
AH
723 * @return string
724 * The html snippet to include in the contact summary
6a488035
TO
725 */
726 static function summary($contactID, &$content, &$contentPlacement = self::SUMMARY_BELOW) {
727 return self::singleton()->invoke(3, $contactID, $content, $contentPlacement,
87dab4a4 728 self::$_nullObject, self::$_nullObject, self::$_nullObject,
6a488035
TO
729 'civicrm_summary'
730 );
731 }
732
733 /**
734 * Use this hook to populate the list of contacts returned by Contact Reference custom fields.
735 * By default, Contact Reference fields will search on and return all CiviCRM contacts.
736 * If you want to limit the contacts returned to a specific group, or some other criteria
737 * - you can override that behavior by providing a SQL query that returns some subset of your contacts.
738 * The hook is called when the query is executed to get the list of contacts to display.
739 *
72536736 740 * @param mixed $query - - the query that will be executed (input and output parameter);
6a488035
TO
741 * It's important to realize that the ACL clause is built prior to this hook being fired,
742 * so your query will ignore any ACL rules that may be defined.
743 * Your query must return two columns:
744 * the contact 'data' to display in the autocomplete dropdown (usually contact.sort_name - aliased as 'data')
745 * the contact IDs
746 * @param string $name - the name string to execute the query against (this is the value being typed in by the user)
747 * @param string $context - the context in which this ajax call is being made (for example: 'customfield', 'caseview')
748 * @param int $id - the id of the object for which the call is being made.
749 * For custom fields, it will be the custom field id
72536736
AH
750 *
751 * @return mixed
6a488035
TO
752 */
753 static function contactListQuery(&$query, $name, $context, $id) {
754 return self::singleton()->invoke(4, $query, $name, $context, $id,
87dab4a4 755 self::$_nullObject, self::$_nullObject,
6a488035
TO
756 'civicrm_contactListQuery'
757 );
758 }
759
760 /**
761 * Hook definition for altering payment parameters before talking to a payment processor back end.
762 *
763 * Definition will look like this:
764 *
765 * function hook_civicrm_alterPaymentProcessorParams($paymentObj,
766 * &$rawParams, &$cookedParams);
767 *
768 * @param string $paymentObj
769 * instance of payment class of the payment processor invoked (e.g., 'CRM_Core_Payment_Dummy')
770 * @param array &$rawParams
771 * array of params as passed to to the processor
72536736 772 * @param array &$cookedParams
6a488035
TO
773 * params after the processor code has translated them into its own key/value pairs
774 *
72536736 775 * @return mixed
6a488035
TO
776 */
777 static function alterPaymentProcessorParams($paymentObj,
778 &$rawParams,
779 &$cookedParams
780 ) {
781 return self::singleton()->invoke(3, $paymentObj, $rawParams, $cookedParams,
87dab4a4 782 self::$_nullObject, self::$_nullObject, self::$_nullObject,
6a488035
TO
783 'civicrm_alterPaymentProcessorParams'
784 );
785 }
786
787 /**
788 * This hook is called when an email is about to be sent by CiviCRM.
789 *
72536736
AH
790 * @param array $params
791 * Array fields include: groupName, from, toName, toEmail, subject, cc, bcc, text, html,
9399901d 792 * returnPath, replyTo, headers, attachments (array)
6a488035 793 * @param string $context - the context in which the hook is being invoked, eg 'civimail'
72536736
AH
794 *
795 * @return mixed
6a488035
TO
796 */
797 static function alterMailParams(&$params, $context = NULL) {
798 return self::singleton()->invoke(2, $params, $context,
87dab4a4 799 self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject,
6a488035
TO
800 'civicrm_alterMailParams'
801 );
802 }
803
804 /**
805 * This hook is called when rendering the Manage Case screen
806 *
807 * @param int $caseID - the case ID
808 *
9399901d
KJ
809 * @return array of data to be displayed, where the key is a unique id to be used for styling (div id's)
810 * and the value is an array with keys 'label' and 'value' specifying label/value pairs
6a488035
TO
811 * @access public
812 */
813 static function caseSummary($caseID) {
814 return self::singleton()->invoke(1, $caseID,
87dab4a4 815 self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject,
6a488035
TO
816 'civicrm_caseSummary'
817 );
818 }
819
6b86870e
TO
820 /**
821 * This hook is called when locating CiviCase types.
822 *
823 * @param array $caseTypes
72536736
AH
824 *
825 * @return mixed
6b86870e
TO
826 */
827 static function caseTypes(&$caseTypes) {
87dab4a4 828 return self::singleton()->invoke(1, $caseTypes, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, 'civicrm_caseTypes');
6b86870e
TO
829 }
830
6a488035
TO
831 /**
832 * This hook is called soon after the CRM_Core_Config object has ben initialized.
833 * You can use this hook to modify the config object and hence behavior of CiviCRM dynamically.
72536736
AH
834 *
835 * @param CRM_Core_Config|array $config
836 * The config object
837 *
838 * @return mixed
6a488035
TO
839 */
840 static function config(&$config) {
841 return self::singleton()->invoke(1, $config,
87dab4a4 842 self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject,
6a488035
TO
843 'civicrm_config'
844 );
845 }
846
847 static function enableDisable($recordBAO, $recordID, $isActive) {
848 return self::singleton()->invoke(3, $recordBAO, $recordID, $isActive,
87dab4a4 849 self::$_nullObject, self::$_nullObject, self::$_nullObject,
6a488035
TO
850 'civicrm_enableDisable'
851 );
852 }
853
854 /**
855 * This hooks allows to change option values
856 *
72536736
AH
857 * @param array $options
858 * Associated array of option values / id
859 * @param string $name
860 * Option group name
6a488035 861 *
72536736 862 * @return mixed
6a488035
TO
863 */
864 static function optionValues(&$options, $name) {
865 return self::singleton()->invoke(2, $options, $name,
87dab4a4 866 self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject,
6a488035
TO
867 'civicrm_optionValues'
868 );
869 }
870
871 /**
872 * This hook allows modification of the navigation menu.
873 *
72536736
AH
874 * @param array $params
875 * Associated array of navigation menu entry to Modify/Add
876 *
877 * @return mixed
6a488035
TO
878 */
879 static function navigationMenu(&$params) {
880 return self::singleton()->invoke(1, $params,
87dab4a4 881 self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject,
6a488035
TO
882 'civicrm_navigationMenu'
883 );
884 }
885
886 /**
887 * This hook allows modification of the data used to perform merging of duplicates.
888 *
889 * @param string $type the type of data being passed (cidRefs|eidRefs|relTables|sqls)
72536736
AH
890 * @param array $data the data, as described in $type
891 * @param int $mainId contact_id of the contact that survives the merge
6a488035
TO
892 * @param int $otherId contact_id of the contact that will be absorbed and deleted
893 * @param array $tables when $type is "sqls", an array of tables as it may have been handed to the calling function
894 *
72536736 895 * @return mixed
6a488035
TO
896 */
897 static function merge($type, &$data, $mainId = NULL, $otherId = NULL, $tables = NULL) {
87dab4a4 898 return self::singleton()->invoke(5, $type, $data, $mainId, $otherId, $tables, self::$_nullObject, 'civicrm_merge');
6a488035
TO
899 }
900
901 /**
902 * This hook provides a way to override the default privacy behavior for notes.
903 *
72536736
AH
904 * @param array &$noteValues
905 * Associative array of values for this note
6a488035 906 *
72536736 907 * @return mixed
6a488035
TO
908 */
909 static function notePrivacy(&$noteValues) {
910 return self::singleton()->invoke(1, $noteValues,
87dab4a4 911 self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject,
6a488035
TO
912 'civicrm_notePrivacy'
913 );
914 }
915
916 /**
917 * This hook is called before record is exported as CSV
918 *
919 * @param string $exportTempTable - name of the temporary export table used during export
920 * @param array $headerRows - header rows for output
921 * @param array $sqlColumns - SQL columns
922 * @param int $exportMode - export mode ( contact, contribution, etc...)
923 *
72536736 924 * @return mixed
6a488035
TO
925 */
926 static function export(&$exportTempTable, &$headerRows, &$sqlColumns, &$exportMode) {
927 return self::singleton()->invoke(4, $exportTempTable, $headerRows, $sqlColumns, $exportMode,
87dab4a4 928 self::$_nullObject, self::$_nullObject,
6a488035
TO
929 'civicrm_export'
930 );
931 }
932
933 /**
934 * This hook allows modification of the queries constructed from dupe rules.
935 *
936 * @param string $obj object of rulegroup class
937 * @param string $type type of queries e.g table / threshold
938 * @param array $query set of queries
939 *
940 * @access public
941 */
942 static function dupeQuery($obj, $type, &$query) {
943 return self::singleton()->invoke(3, $obj, $type, $query,
87dab4a4 944 self::$_nullObject, self::$_nullObject, self::$_nullObject,
6a488035
TO
945 'civicrm_dupeQuery'
946 );
947 }
948
949 /**
950 * This hook is called AFTER EACH email has been processed by the script bin/EmailProcessor.php
951 *
952 * @param string $type type of mail processed: 'activity' OR 'mailing'
953 * @param array &$params the params that were sent to the CiviCRM API function
954 * @param object $mail the mail object which is an ezcMail class
955 * @param array &$result the result returned by the api call
956 * @param string $action (optional ) the requested action to be performed if the types was 'mailing'
957 *
958 * @access public
959 */
960 static function emailProcessor($type, &$params, $mail, &$result, $action = NULL) {
87dab4a4 961 return self::singleton()->invoke(5, $type, $params, $mail, $result, $action, self::$_nullObject, 'civicrm_emailProcessor');
6a488035
TO
962 }
963
964 /**
965 * This hook is called after a row has been processed and the
966 * record (and associated records imported
967 *
9399901d
KJ
968 * @param string $object - object being imported (for now Contact only, later Contribution, Activity,
969 * Participant and Member)
6a488035
TO
970 * @param string $usage - hook usage/location (for now process only, later mapping and others)
971 * @param string $objectRef - import record object
972 * @param array $params - array with various key values: currently
973 * contactID - contact id
974 * importID - row id in temp table
975 * importTempTable - name of tempTable
976 * fieldHeaders - field headers
977 * fields - import fields
978 *
979 * @return void
980 * @access public
981 */
982 static function import($object, $usage, &$objectRef, &$params) {
983 return self::singleton()->invoke(4, $object, $usage, $objectRef, $params,
87dab4a4 984 self::$_nullObject, self::$_nullObject,
6a488035
TO
985 'civicrm_import'
986 );
987 }
988
989 /**
990 * This hook is called when API permissions are checked (cf. civicrm_api3_api_check_permission()
aa5ba569 991 * in api/v3/utils.php and _civicrm_api3_permissions() in CRM/Core/DAO/permissions.php).
6a488035
TO
992 *
993 * @param string $entity the API entity (like contact)
994 * @param string $action the API action (like get)
995 * @param array &$params the API parameters
996 * @param array &$permisisons the associative permissions array (probably to be altered by this hook)
997 */
998 static function alterAPIPermissions($entity, $action, &$params, &$permissions) {
999 return self::singleton()->invoke(4, $entity, $action, $params, $permissions,
87dab4a4 1000 self::$_nullObject, self::$_nullObject,
6a488035
TO
1001 'civicrm_alterAPIPermissions'
1002 );
1003 }
1004
1005 static function postSave(&$dao) {
1006 $hookName = 'civicrm_postSave_' . $dao->getTableName();
1007 return self::singleton()->invoke(1, $dao,
87dab4a4 1008 self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject,
6a488035
TO
1009 $hookName
1010 );
1011 }
1012
1013 /**
1014 * This hook allows user to customize context menu Actions on contact summary page.
1015 *
1016 * @param array $actions Array of all Actions in contextmenu.
1017 * @param int $contactID ContactID for the summary page
1018 */
1019 static function summaryActions(&$actions, $contactID = NULL) {
1020 return self::singleton()->invoke(2, $actions, $contactID,
87dab4a4 1021 self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject,
6a488035
TO
1022 'civicrm_summaryActions'
1023 );
1024 }
1025
1026 /**
1027 * This hook is called from CRM_Core_Selector_Controller through which all searches in civicrm go.
1028 * This enables us hook implementors to modify both the headers and the rows
1029 *
1030 * The BIGGEST drawback with this hook is that you may need to modify the result template to include your
1031 * fields. The result files are CRM/{Contact,Contribute,Member,Event...}/Form/Selector.tpl
1032 *
1033 * However, if you use the same number of columns, you can overwrite the existing columns with the values that
1034 * you want displayed. This is a hackish, but avoids template modification.
1035 *
1036 * @param string $objectName the component name that we are doing the search
1037 * activity, campaign, case, contact, contribution, event, grant, membership, and pledge
1038 * @param array &$headers the list of column headers, an associative array with keys: ( name, sort, order )
1039 * @param array &$rows the list of values, an associate array with fields that are displayed for that component
1040 * @param array &$seletor the selector object. Allows you access to the context of the search
1041 *
1042 * @return void modify the header and values object to pass the data u need
1043 */
1044 static function searchColumns($objectName, &$headers, &$rows, &$selector) {
1045 return self::singleton()->invoke(4, $objectName, $headers, $rows, $selector,
87dab4a4 1046 self::$_nullObject, self::$_nullObject,
6a488035
TO
1047 'civicrm_searchColumns'
1048 );
1049 }
1050
1051 /**
1052 * This hook is called when uf groups are being built for a module.
1053 *
1054 * @param string $moduleName module name.
1055 * @param array $ufGroups array of ufgroups for a module.
1056 *
1057 * @return null
1058 * @access public
1059 */
1060 static function buildUFGroupsForModule($moduleName, &$ufGroups) {
1061 return self::singleton()->invoke(2, $moduleName, $ufGroups,
87dab4a4 1062 self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject,
6a488035
TO
1063 'civicrm_buildUFGroupsForModule'
1064 );
1065 }
1066
1067 /**
1068 * This hook is called when we are determining the contactID for a specific
1069 * email address
1070 *
1071 * @param string $email the email address
1072 * @param int $contactID the contactID that matches this email address, IF it exists
1073 * @param array $result (reference) has two fields
1074 * contactID - the new (or same) contactID
1075 * action - 3 possible values:
9399901d
KJ
1076 * CRM_Utils_Mail_Incoming::EMAILPROCESSOR_CREATE_INDIVIDUAL - create a new contact record
1077 * CRM_Utils_Mail_Incoming::EMAILPROCESSOR_OVERRIDE - use the new contactID
1078 * CRM_Utils_Mail_Incoming::EMAILPROCESSOR_IGNORE - skip this email address
6a488035
TO
1079 *
1080 * @return null
1081 * @access public
1082 */
1083 static function emailProcessorContact($email, $contactID, &$result) {
1084 return self::singleton()->invoke(3, $email, $contactID, $result,
87dab4a4 1085 self::$_nullObject, self::$_nullObject, self::$_nullObject,
6a488035
TO
1086 'civicrm_emailProcessorContact'
1087 );
1088 }
1089
1090 /**
1091 * Hook definition for altering the generation of Mailing Labels
1092 *
1093 * @param array $args an array of the args in the order defined for the tcpdf multiCell api call
1094 * with the variable names below converted into string keys (ie $w become 'w'
1095 * as the first key for $args)
1096 * float $w Width of cells. If 0, they extend up to the right margin of the page.
1097 * float $h Cell minimum height. The cell extends automatically if needed.
1098 * string $txt String to print
1099 * mixed $border Indicates if borders must be drawn around the cell block. The value can
1100 * be either a number:<ul><li>0: no border (default)</li><li>1: frame</li></ul>or
1101 * a string containing some or all of the following characters (in any order):
1102 * <ul><li>L: left</li><li>T: top</li><li>R: right</li><li>B: bottom</li></ul>
1103 * string $align Allows to center or align the text. Possible values are:<ul><li>L or empty string:
1104 * left align</li><li>C: center</li><li>R: right align</li><li>J: justification
1105 * (default value when $ishtml=false)</li></ul>
1106 * int $fill Indicates if the cell background must be painted (1) or transparent (0). Default value: 0.
1107 * int $ln Indicates where the current position should go after the call. Possible values are:<ul><li>0:
1108 * to the right</li><li>1: to the beginning of the next line [DEFAULT]</li><li>2: below</li></ul>
1109 * float $x x position in user units
1110 * float $y y position in user units
1111 * boolean $reseth if true reset the last cell height (default true).
1112 * int $stretch stretch carachter mode: <ul><li>0 = disabled</li><li>1 = horizontal scaling only if
1113 * necessary</li><li>2 = forced horizontal scaling</li><li>3 = character spacing only if
1114 * necessary</li><li>4 = forced character spacing</li></ul>
1115 * boolean $ishtml set to true if $txt is HTML content (default = false).
1116 * boolean $autopadding if true, uses internal padding and automatically adjust it to account for line width.
1117 * float $maxh maximum height. It should be >= $h and less then remaining space to the bottom of the page,
1118 * or 0 for disable this feature. This feature works only when $ishtml=false.
1119 *
1120 */
1121 static function alterMailingLabelParams(&$args) {
1122 return self::singleton()->invoke(1, $args,
1123 self::$_nullObject, self::$_nullObject,
87dab4a4 1124 self::$_nullObject, self::$_nullObject, self::$_nullObject,
6a488035
TO
1125 'civicrm_alterMailingLabelParams'
1126 );
1127 }
1128
1129 /**
1130 * This hooks allows alteration of generated page content
1131 *
1132 * @param $content previously generated content
1133 * @param $context context of content - page or form
1134 * @param $tplName the file name of the tpl
1135 * @param $object a reference to the page or form object
1136 *
1137 * @access public
1138 */
1139 static function alterContent(&$content, $context, $tplName, &$object) {
1140 return self::singleton()->invoke(4, $content, $context, $tplName, $object,
87dab4a4 1141 self::$_nullObject, self::$_nullObject,
6a488035
TO
1142 'civicrm_alterContent'
1143 );
1144 }
1145
8aac22c8 1146 /**
1147 * This hooks allows alteration of the tpl file used to generate content. It differs from the
1148 * altercontent hook as the content has already been rendered through the tpl at that point
1149 *
1150 * @param $formName previously generated content
1151 * @param $form reference to the form object
1152 * @param $context context of content - page or form
1153 * @param $tplName reference the file name of the tpl
1154 *
1155 * @access public
1156 */
1157 static function alterTemplateFile($formName, &$form, $context, &$tplName) {
1158 return self::singleton()->invoke(4, $formName, $form, $context, $tplName,
87dab4a4 1159 self::$_nullObject, self::$_nullObject,
8aac22c8 1160 'civicrm_alterTemplateFile'
1161 );
1162 }
6a488035
TO
1163 /**
1164 * This hook collects the trigger definition from all components
1165 *
1166 * @param $triggerInfo reference to an array of trigger information
1167 * each element has 4 fields:
1168 * table - array of tableName
1169 * when - BEFORE or AFTER
1170 * event - array of eventName - INSERT OR UPDATE OR DELETE
1171 * sql - array of statements optionally terminated with a ;
1172 * a statement can use the tokes {tableName} and {eventName}
1173 * to do token replacement with the table / event. This allows
1174 * templatizing logging and other hooks
1175 * @param string $tableName (optional) the name of the table that we are interested in only
1176 */
1177 static function triggerInfo(&$info, $tableName = NULL) {
1178 return self::singleton()->invoke(2, $info, $tableName,
87dab4a4 1179 self::$_nullObject, self::$_nullObject, self::$_nullObject,
6a488035
TO
1180 self::$_nullObject,
1181 'civicrm_triggerInfo'
1182 );
1183 }
1184
1185 /**
1186 * This hook is called when a module-extension is installed.
9399901d
KJ
1187 * Each module will receive hook_civicrm_install during its own installation (but not during the
1188 * installation of unrelated modules).
6a488035
TO
1189 */
1190 static function install() {
1191 return self::singleton()->invoke(0, self::$_nullObject,
1192 self::$_nullObject, self::$_nullObject,
87dab4a4 1193 self::$_nullObject, self::$_nullObject, self::$_nullObject,
6a488035
TO
1194 'civicrm_install'
1195 );
1196 }
1197
1198 /**
1199 * This hook is called when a module-extension is uninstalled.
9399901d
KJ
1200 * Each module will receive hook_civicrm_uninstall during its own uninstallation (but not during the
1201 * uninstallation of unrelated modules).
6a488035
TO
1202 */
1203 static function uninstall() {
1204 return self::singleton()->invoke(0, self::$_nullObject,
1205 self::$_nullObject, self::$_nullObject,
87dab4a4 1206 self::$_nullObject, self::$_nullObject, self::$_nullObject,
6a488035
TO
1207 'civicrm_uninstall'
1208 );
1209 }
1210
1211 /**
1212 * This hook is called when a module-extension is re-enabled.
9399901d
KJ
1213 * Each module will receive hook_civicrm_enable during its own re-enablement (but not during the
1214 * re-enablement of unrelated modules).
6a488035
TO
1215 */
1216 static function enable() {
1217 return self::singleton()->invoke(0, self::$_nullObject,
1218 self::$_nullObject, self::$_nullObject,
87dab4a4 1219 self::$_nullObject, self::$_nullObject, self::$_nullObject,
6a488035
TO
1220 'civicrm_enable'
1221 );
1222 }
1223
1224 /**
1225 * This hook is called when a module-extension is disabled.
9399901d
KJ
1226 * Each module will receive hook_civicrm_disable during its own disablement (but not during the
1227 * disablement of unrelated modules).
6a488035
TO
1228 */
1229 static function disable() {
1230 return self::singleton()->invoke(0, self::$_nullObject,
1231 self::$_nullObject, self::$_nullObject,
87dab4a4 1232 self::$_nullObject, self::$_nullObject, self::$_nullObject,
6a488035
TO
1233 'civicrm_disable'
1234 );
1235 }
1236
1237 static function alterReportVar($varType, &$var, &$object) {
1238 return self::singleton()->invoke(3, $varType, $var, $object,
1239 self::$_nullObject,
87dab4a4 1240 self::$_nullObject, self::$_nullObject,
6a488035
TO
1241 'civicrm_alterReportVar'
1242 );
1243 }
1244
1245 /**
1246 * This hook is called to drive database upgrades for extension-modules.
1247 *
72536736
AH
1248 * @param string $op
1249 * The type of operation being performed; 'check' or 'enqueue'.
1250 * @param CRM_Queue_Queue $queue
1251 * (for 'enqueue') the modifiable list of pending up upgrade tasks.
6a488035 1252 *
72536736
AH
1253 * @return bool|null
1254 * NULL, if $op is 'enqueue'.
1255 * TRUE, if $op is 'check' and upgrades are pending.
1256 * FALSE, if $op is 'check' and upgrades are not pending.
6a488035
TO
1257 */
1258 static function upgrade($op, CRM_Queue_Queue $queue = NULL) {
1259 return self::singleton()->invoke(2, $op, $queue,
87dab4a4 1260 self::$_nullObject, self::$_nullObject, self::$_nullObject,
6a488035
TO
1261 self::$_nullObject,
1262 'civicrm_upgrade'
1263 );
1264 }
1265
1266 /**
1267 * This hook is called when an email has been successfully sent by CiviCRM, but not on an error.
1268 *
72536736
AH
1269 * @param array $params
1270 * The mailing parameters. Array fields include: groupName, from, toName,
1271 * toEmail, subject, cc, bcc, text, html, returnPath, replyTo, headers,
1272 * attachments (array)
1273 *
1274 * @return mixed
6a488035
TO
1275 */
1276 static function postEmailSend(&$params) {
1277 return self::singleton()->invoke(1, $params,
1278 self::$_nullObject, self::$_nullObject,
87dab4a4 1279 self::$_nullObject, self::$_nullObject, self::$_nullObject,
6a488035
TO
1280 'civicrm_postEmailSend'
1281 );
1282 }
1283
1284 /**
1285 * This hook is called when Settings specifications are loaded
1286 *
72536736
AH
1287 * @param array $settingsFolders
1288 * List of paths from which to derive metadata
1289 *
1290 * @return mixed
6a488035
TO
1291 */
1292 static function alterSettingsFolders(&$settingsFolders) {
1293 return self::singleton()->invoke(1, $settingsFolders,
1294 self::$_nullObject, self::$_nullObject,
87dab4a4 1295 self::$_nullObject, self::$_nullObject, self::$_nullObject,
6a488035
TO
1296 'civicrm_alterSettingsFolders'
1297 );
1298 }
1299
1300 /**
1301 * This hook is called when Settings have been loaded from the xml
1302 * It is an opportunity for hooks to alter the data
1303 *
1304 * @param array $settingsMetaData - Settings Metadata
72536736
AH
1305 * @param int $domainID
1306 * @param mixed $profile
1307 *
1308 * @return mixed
6a488035
TO
1309 */
1310 static function alterSettingsMetaData(&$settingsMetaData, $domainID, $profile) {
1311 return self::singleton()->invoke(3, $settingsMetaData,
1312 $domainID, $profile,
87dab4a4 1313 self::$_nullObject, self::$_nullObject, self::$_nullObject,
6a488035
TO
1314 'civicrm_alterSettingsMetaData'
1315 );
1316 }
1317
5270c026
XD
1318 /**
1319 * This hook is called before running an api call.
1320 *
72536736
AH
1321 * @param API_Wrapper[] $wrappers
1322 * (see CRM_Utils_API_ReloadOption as an example)
1323 * @param mixed $apiRequest
5270c026 1324 *
72536736
AH
1325 * @return null
1326 * The return value is ignored
5270c026 1327 */
09f8c8dc
TO
1328 static function apiWrappers(&$wrappers, $apiRequest) {
1329 return self::singleton()
1330 ->invoke(2, $wrappers, $apiRequest, self::$_nullObject, self::$_nullObject, self::$_nullObject,
87dab4a4 1331 self::$_nullObject, 'civicrm_apiWrappers'
5270c026
XD
1332 );
1333 }
1334
6a488035
TO
1335 /**
1336 * This hook is called before running pending cron jobs.
1337 *
1338 * @param CRM_Core_JobManager $jobManager
1339 *
72536736
AH
1340 * @return null
1341 * The return value is ignored.
6a488035
TO
1342 */
1343 static function cron($jobManager) {
1344 return self::singleton()->invoke(1,
87dab4a4 1345 $jobManager, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject,
6a488035
TO
1346 'civicrm_cron'
1347 );
1348 }
1349
1350 /**
1351 * This hook is called when loading CMS permissions; use this hook to modify
1352 * the array of system permissions for CiviCRM.
1353 *
72536736
AH
1354 * @param array $permissions
1355 * Array of permissions. See CRM_Core_Permission::getCorePermissions() for
1356 * the format of this array.
6a488035 1357 *
72536736
AH
1358 * @return null
1359 * The return value is ignored
6a488035
TO
1360 */
1361 static function permission(&$permissions) {
1362 return self::singleton()->invoke(1, $permissions,
87dab4a4 1363 self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject,
6a488035
TO
1364 'civicrm_permission'
1365 );
1366 }
fed67e4d
TO
1367
1368
1369 /**
1370 * This hook is called for declaring managed entities via API
1371 *
72536736
AH
1372 * @param array[] $entityTypes
1373 * List of entity types; each entity-type is an array with keys:
fed67e4d
TO
1374 * - name: string, a unique short name (e.g. "ReportInstance")
1375 * - class: string, a PHP DAO class (e.g. "CRM_Report_DAO_Instance")
1376 * - table: string, a SQL table name (e.g. "civicrm_report_instance")
1377 *
72536736
AH
1378 * @return null
1379 * The return value is ignored
fed67e4d
TO
1380 */
1381 static function entityTypes(&$entityTypes) {
9399901d 1382 return self::singleton()->invoke(1, $entityTypes, self::$_nullObject, self::$_nullObject,
87dab4a4 1383 self::$_nullObject, self::$_nullObject, self::$_nullObject, 'civicrm_entityTypes'
fed67e4d
TO
1384 );
1385 }
a8387f19
TO
1386
1387 /**
1388 * This hook is called while preparing a profile form
1389 *
1390 * @param string $name
72536736 1391 * @return mixed
a8387f19
TO
1392 */
1393 static function buildProfile($name) {
9399901d 1394 return self::singleton()->invoke(1, $name, self::$_nullObject, self::$_nullObject, self::$_nullObject,
87dab4a4 1395 self::$_nullObject, self::$_nullObject, 'civicrm_buildProfile');
a8387f19
TO
1396 }
1397
1398 /**
1399 * This hook is called while validating a profile form submission
1400 *
1401 * @param string $name
72536736 1402 * @return mixed
a8387f19
TO
1403 */
1404 static function validateProfile($name) {
9399901d 1405 return self::singleton()->invoke(1, $name, self::$_nullObject, self::$_nullObject, self::$_nullObject,
87dab4a4 1406 self::$_nullObject, self::$_nullObject, 'civicrm_validateProfile');
a8387f19
TO
1407 }
1408
1409 /**
1410 * This hook is called processing a valid profile form submission
1411 *
1412 * @param string $name
72536736 1413 * @return mixed
a8387f19
TO
1414 */
1415 static function processProfile($name) {
9399901d 1416 return self::singleton()->invoke(1, $name, self::$_nullObject, self::$_nullObject, self::$_nullObject,
87dab4a4 1417 self::$_nullObject, self::$_nullObject, 'civicrm_processProfile');
a8387f19
TO
1418 }
1419
1420 /**
1421 * This hook is called while preparing a read-only profile screen
1422 *
1423 * @param string $name
72536736 1424 * @return mixed
a8387f19
TO
1425 */
1426 static function viewProfile($name) {
9399901d 1427 return self::singleton()->invoke(1, $name, self::$_nullObject, self::$_nullObject, self::$_nullObject,
87dab4a4 1428 self::$_nullObject, self::$_nullObject, 'civicrm_viewProfile');
a8387f19
TO
1429 }
1430
1431 /**
1432 * This hook is called while preparing a list of contacts (based on a profile)
1433 *
1434 * @param string $name
72536736 1435 * @return mixed
a8387f19
TO
1436 */
1437 static function searchProfile($name) {
9399901d 1438 return self::singleton()->invoke(1, $name, self::$_nullObject, self::$_nullObject, self::$_nullObject,
87dab4a4 1439 self::$_nullObject, self::$_nullObject, 'civicrm_searchProfile');
9399901d
KJ
1440 }
1441
1442 /**
1443 * This hook is called before encoding data in barcode
1444 *
1445 * @param array $data associated array of values available for encoding
1446 * @param string $type type of barcode, classic barcode or QRcode
1447 * @param string $context where this hooks is invoked.
1448 *
72536736 1449 * @return mixed
9399901d
KJ
1450 */
1451 static function alterBarcode( &$data, $type = 'barcode', $context = 'name_badge' ) {
1452 return self::singleton()->invoke(3, $data, $type, $context, self::$_nullObject,
87dab4a4 1453 self::$_nullObject, self::$_nullObject, 'civicrm_alterBarcode');
a8387f19 1454 }
99e9587a 1455
72ad6c1b
TO
1456 /**
1457 * Modify or replace the Mailer object used for outgoing mail.
1458 *
1459 * @param object $mailer
1460 * The default mailer produced by normal configuration; a PEAR "Mail" class (like those returned by Mail::factory)
1461 * @param string $driver
1462 * The type of the default mailer (eg "smtp", "sendmail", "mock", "CRM_Mailing_BAO_Spool")
1463 * @param array $params
1464 * The default mailer config options
72536736
AH
1465 *
1466 * @return mixed
72ad6c1b
TO
1467 * @see Mail::factory
1468 */
91bff2e5 1469 static function alterMail(&$mailer, $driver, $params) {
c8e4bea0 1470 return self::singleton()
87dab4a4 1471 ->invoke(3, $mailer, $driver, $params, self::$_nullObject, self::$_nullObject, self::$_nullObject, 'civicrm_alterMailer');
72ad6c1b
TO
1472 }
1473
99e9587a 1474 /**
2efcf0c2 1475 * This hook is called while building the core search query,
99e9587a
DS
1476 * so hook implementers can provide their own query objects which alters/extends core search.
1477 *
72536736
AH
1478 * @param array $queryObjects
1479 * @param string $type
1480 *
1481 * @return mixed
99e9587a 1482 */
c3e3dd65 1483 static function queryObjects(&$queryObjects, $type = 'Contact') {
87dab4a4 1484 return self::singleton()->invoke(2, $queryObjects, $type, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, 'civicrm_queryObjects');
99e9587a 1485 }
15d9b3ae
N
1486
1487 /**
1488 * This hook is called while viewing contact dashboard
1489 *
72536736
AH
1490 * @param array $availableDashlets
1491 * List of dashlets; each is formatted per api/v3/Dashboard
1492 * @param array $defaultDashlets
1493 * List of dashlets; each is formatted per api/v3/DashboardContact
1494 *
1495 * @return mixed
15d9b3ae
N
1496 */
1497 static function dashboard_defaults($availableDashlets, &$defaultDashlets) {
1c148cc9 1498 // @todo Required parameter $fnSuffix missing. Too few parameters?
15d9b3ae
N
1499 return self::singleton()->invoke(2, $availableDashlets, $defaultDashlets, self::$_nullObject, self::$_nullObject, self::$_nullObject, 'civicrm_dashboard_defaults');
1500 }
6a488035 1501}