INFRA-132 - Change "else if" to "elseif"
[civicrm-core.git] / CRM / Utils / Hook / WordPress.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
6a488035 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
6a488035
TO
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26*/
27
28/**
29 *
30 * @package CRM
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
32 * $Id$
33 *
34 */
35class CRM_Utils_Hook_WordPress extends CRM_Utils_Hook {
3db28451
CW
36
37 /**
38 * @var bool
39 */
40 private $isBuilt = FALSE;
41
42 /**
43 * @var array(string)
44 */
45 private $allModules = NULL;
46
47 /**
48 * @var array(string)
49 */
50 private $civiModules = NULL;
51
52 /**
53 * @var array(string)
54 */
55 private $wordpressModules = NULL;
56
57 /**
58 * @var array(string)
59 */
60 private $hooksThatReturn = array(
61 'civicrm_upgrade',
62 'civicrm_caseSummary',
63 'civicrm_dashboard',
64 );
65
5bc392e6 66 /**
e7292422 67 * Invoke hooks
5bc392e6 68 *
77855840
TO
69 * @param int $numParams
70 * Number of parameters to pass to the hook.
71 * @param mixed $arg1
72 * Parameter to be passed to the hook.
73 * @param mixed $arg2
74 * Parameter to be passed to the hook.
75 * @param mixed $arg3
76 * Parameter to be passed to the hook.
77 * @param mixed $arg4
78 * Parameter to be passed to the hook.
79 * @param mixed $arg5
80 * Parameter to be passed to the hook.
81 * @param mixed $arg6
82 * Parameter to be passed to the hook.
83 * @param string $fnSuffix
84 * Function suffix, this is effectively the hook name.
5bc392e6
EM
85 *
86 * @return mixed
87 */
3db28451
CW
88 public function invoke(
89 $numParams,
87dab4a4 90 &$arg1, &$arg2, &$arg3, &$arg4, &$arg5, &$arg6,
6a488035
TO
91 $fnSuffix
92 ) {
e7292422 93
3db28451 94 /**
e7292422
TO
95 * do_action_ref_array is the default way of calling WordPress hooks
96 * because for the most part no return value is wanted. However, this is
97 * only generally true, so using do_action_ref_array() is only called for those
3db28451
CW
98 * hooks which do not require a return value. We exclude the following, which
99 * are incompatible with the WordPress Plugin API:
e7292422 100 *
3db28451
CW
101 * civicrm_upgrade
102 * http://wiki.civicrm.org/confluence/display/CRMDOC43/hook_civicrm_upgrade
e7292422 103 *
3db28451
CW
104 * civicrm_caseSummary
105 * http://wiki.civicrm.org/confluence/display/CRMDOC43/hook_civicrm_caseSummary
e7292422 106 *
3db28451
CW
107 * civicrm_dashboard
108 * http://wiki.civicrm.org/confluence/display/CRMDOC43/hook_civicrm_dashboard
109 */
e7292422 110
3db28451
CW
111 // distinguish between types of hook
112 if ( ! in_array( $fnSuffix, $this->hooksThatReturn ) ) {
e7292422 113
3db28451 114 // only pass the arguments that have values
e7292422
TO
115 $args = array_slice(
116 array( &$arg1, &$arg2, &$arg3, &$arg4, &$arg5, &$arg6 ),
117 0,
3db28451
CW
118 $numParams
119 );
e7292422 120
3db28451
CW
121 /**
122 * Use WordPress Plugins API to modify $args
123 *
e7292422 124 * Because $args are passed as references to the WordPress callbacks,
3db28451
CW
125 * runHooks subsequently receives appropriately modified parameters.
126 */
e7292422 127
3db28451
CW
128 // protect from REST calls
129 if (function_exists('do_action_ref_array')) {
130 do_action_ref_array( $fnSuffix, $args );
131 }
e7292422 132
3db28451 133 }
e7292422 134
3db28451 135 /**
e7292422 136 * The following is based on the logic of the Joomla hook file by allowing
3db28451 137 * WordPress callbacks to do their stuff before runHooks gets called.
e7292422
TO
138 *
139 * It also follows the logic of the Drupal hook file by building the "module"
3db28451
CW
140 * (read "plugin") list and then calling runHooks directly. This should avoid
141 * the need for the post-processing that the Joomla hook file does.
e7292422
TO
142 *
143 * Note that hooks which require a return value are incompatible with the
144 * signature of apply_filters_ref_array and must therefore be called in
145 * global scope, like in Drupal. It's not ideal, but plugins can always route
3db28451 146 * these calls to methods in their classes.
e7292422 147 *
3db28451
CW
148 * At some point, those hooks could be pre-processed and called via the WordPress
149 * Plugin API, but it would change their signature and require the CiviCRM docs
150 * to be rewritten for those calls in WordPress. So it's been done this way for
e7292422 151 * now. Ideally these hooks will be deprecated in favour of hooks that do not
3db28451
CW
152 * require return values.
153 */
e7292422 154
3db28451
CW
155 // build list of registered plugin codes
156 $this->buildModuleList();
e7292422 157
3db28451
CW
158 // Call runHooks the same way Drupal does
159 $moduleResult = $this->runHooks(
e7292422 160 $this->allModules,
3db28451 161 $fnSuffix,
e7292422 162 $numParams,
3db28451 163 $arg1, $arg2, $arg3, $arg4, $arg5, $arg6
6a488035 164 );
e7292422 165
3db28451
CW
166 // finally, return
167 return empty($moduleResult) ? TRUE : $moduleResult;
e7292422 168
6a488035 169 }
e7292422 170
3db28451
CW
171
172
173 /**
174 * Build the list of plugins ("modules" in CiviCRM terminology) to be processed for hooks.
175 * We need to do this to preserve the CiviCRM hook signatures for hooks that require
176 * a return value, since the WordPress Plugin API seems to be incompatible with them.
e7292422 177 *
3db28451
CW
178 * Copied and adapted from: CRM/Utils/Hook/Drupal6.php
179 */
00be9182 180 public function buildModuleList() {
3db28451 181 if ($this->isBuilt === FALSE) {
e7292422 182
3db28451 183 if ($this->wordpressModules === NULL) {
e7292422 184
3db28451
CW
185 // include custom PHP file - copied from parent->commonBuildModuleList()
186 $config = CRM_Core_Config::singleton();
187 if (!empty($config->customPHPPathDir) &&
188 file_exists("{$config->customPHPPathDir}/civicrmHooks.php")
189 ) {
e7292422 190 @include_once 'civicrmHooks.php';
3db28451
CW
191 }
192
193 // initialise with the pre-existing 'wordpress' prefix
194 $this->wordpressModules = array('wordpress');
e7292422 195
3db28451
CW
196 /**
197 * Use WordPress Plugin API to build list
198 * a plugin simply needs to declare its "unique_plugin_code" thus:
199 * add_filter('civicrm_wp_plugin_codes', 'function_that_returns_my_unique_plugin_code');
200 */
e7292422 201
3db28451
CW
202 // protect from REST calls
203 if (function_exists('apply_filters')) {
204 $this->wordpressModules = apply_filters('civicrm_wp_plugin_codes', $this->wordpressModules);
205 }
e7292422 206
3db28451
CW
207 }
208
209 if ($this->civiModules === NULL) {
210 $this->civiModules = array();
211 $this->requireCiviModules($this->civiModules);
212 }
213
e7292422 214 $this->allModules = array_merge((array) $this->wordpressModules, (array) $this->civiModules);
3db28451
CW
215 if ($this->wordpressModules !== NULL && $this->civiModules !== NULL) {
216 // both CRM and CMS have bootstrapped, so this is the final list
217 $this->isBuilt = TRUE;
218 }
e7292422 219
3db28451
CW
220 }
221 }
222
223
224
6a488035 225}