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