Merge pull request #3746 from eileenmcnaughton/prtest
[civicrm-core.git] / CRM / Utils / Hook / DrupalBase.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
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
31 * @copyright CiviCRM LLC (c) 2004-2014
32 * $Id$
33 *
34 */
35 class CRM_Utils_Hook_DrupalBase extends CRM_Utils_Hook {
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 $drupalModules = NULL;
56
57 /**
58 *
59 * @see CRM_Utils_Hook::invoke()
60 *
61 * @param integer $numParams Number of parameters to pass to the hook
62 * @param unknown $arg1 parameter to be passed to the hook
63 * @param unknown $arg2 parameter to be passed to the hook
64 * @param unknown $arg3 parameter to be passed to the hook
65 * @param unknown $arg4 parameter to be passed to the hook
66 * @param unknown $arg5 parameter to be passed to the hook
67 * @param mixed $arg6
68 * @param string $fnSuffix function suffix, this is effectively the hook name
69 *
70 * @return Ambigous <boolean, multitype:>
71 */
72 function invoke($numParams,
73 &$arg1, &$arg2, &$arg3, &$arg4, &$arg5, &$arg6,
74 $fnSuffix) {
75
76 $this->buildModuleList();
77
78 return $this->runHooks($this->allModules, $fnSuffix,
79 $numParams, $arg1, $arg2, $arg3, $arg4, $arg5, $arg6
80 );
81 }
82
83 /**
84 * Build the list of modules to be processed for hooks.
85 */
86 function buildModuleList() {
87 if ($this->isBuilt === FALSE) {
88 if ($this->drupalModules === NULL) {
89 if (function_exists('module_list')) {
90 // copied from user_module_invoke
91 $this->drupalModules = module_list();
92 }
93 }
94
95 if ($this->civiModules === NULL) {
96 $this->civiModules = array();
97 $this->requireCiviModules($this->civiModules);
98 }
99
100 // CRM-12370
101 // we should add civicrm's module's just after main civicrm drupal module
102 // Note: Assume that drupalModules and civiModules may each be array() or NULL
103 if ($this->drupalModules !== NULL) {
104 foreach ($this->drupalModules as $moduleName) {
105 $this->allModules[$moduleName] = $moduleName;
106 if ($moduleName == 'civicrm') {
107 if (!empty($this->civiModules)) {
108 foreach ($this->civiModules as $civiModuleName) {
109 $this->allModules[$civiModuleName] = $civiModuleName;
110 }
111 }
112 }
113 }
114 }
115 else {
116 $this->allModules = (array) $this->civiModules;
117 }
118
119 if ($this->drupalModules !== NULL && $this->civiModules !== NULL) {
120 // both CRM and CMS have bootstrapped, so this is the final list
121 $this->isBuilt = TRUE;
122 }
123 }
124 }
125 }