Merge pull request #14432 from civicrm/5.14
[civicrm-core.git] / CRM / Utils / Hook / DrupalBase.php
CommitLineData
f0a7a0c9
EM
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
f0a7a0c9 5 +--------------------------------------------------------------------+
6b83d5bd 6 | Copyright CiviCRM LLC (c) 2004-2019 |
f0a7a0c9
EM
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
d25dd0ee 26 */
f0a7a0c9
EM
27
28/**
29 *
30 * @package CRM
6b83d5bd 31 * @copyright CiviCRM LLC (c) 2004-2019
f0a7a0c9
EM
32 */
33class CRM_Utils_Hook_DrupalBase extends CRM_Utils_Hook {
34
35 /**
36 * @var bool
37 */
38 private $isBuilt = FALSE;
39
40 /**
041ecc95 41 * All Modules.
42 *
43 * @var string[]
f0a7a0c9
EM
44 */
45 private $allModules = NULL;
46
47 /**
041ecc95 48 * CiviCRM Modules.
49 *
50 * @var string[]
f0a7a0c9
EM
51 */
52 private $civiModules = NULL;
53
54 /**
041ecc95 55 * Drupal modules.
56 *
57 * @var string[]
f0a7a0c9
EM
58 */
59 private $drupalModules = NULL;
60
61 /**
77855840
TO
62 * @param int $numParams
63 * Number of parameters to pass to the hook.
041ecc95 64 * @param mixed $arg1
77855840 65 * Parameter to be passed to the hook.
041ecc95 66 * @param mixed $arg2
77855840 67 * Parameter to be passed to the hook.
041ecc95 68 * @param mixed $arg3
77855840 69 * Parameter to be passed to the hook.
041ecc95 70 * @param mixed $arg4
77855840 71 * Parameter to be passed to the hook.
041ecc95 72 * @param mixed $arg5
77855840 73 * Parameter to be passed to the hook.
77b97be7 74 * @param mixed $arg6
77855840
TO
75 * @param string $fnSuffix
76 * Function suffix, this is effectively the hook name.
77b97be7 77 *
4a2db77c 78 * @return array|bool
041ecc95 79 * @throws \Exception
80 * @see CRM_Utils_Hook::invoke()
f0a7a0c9 81 */
354345c9 82 public function invokeViaUF(
a3e55d9c 83 $numParams,
f0a7a0c9
EM
84 &$arg1, &$arg2, &$arg3, &$arg4, &$arg5, &$arg6,
85 $fnSuffix) {
86
87 $this->buildModuleList();
88
89 return $this->runHooks($this->allModules, $fnSuffix,
90 $numParams, $arg1, $arg2, $arg3, $arg4, $arg5, $arg6
91 );
92 }
93
94 /**
95 * Build the list of modules to be processed for hooks.
96 */
00be9182 97 public function buildModuleList() {
f0a7a0c9
EM
98 if ($this->isBuilt === FALSE) {
99 if ($this->drupalModules === NULL) {
3f57d516 100 $this->drupalModules = $this->getDrupalModules();
f0a7a0c9
EM
101 }
102
103 if ($this->civiModules === NULL) {
be2fb01f 104 $this->civiModules = [];
f0a7a0c9
EM
105 $this->requireCiviModules($this->civiModules);
106 }
107
1a058091
KM
108 // CRM-12370
109 // we should add civicrm's module's just after main civicrm drupal module
110 // Note: Assume that drupalModules and civiModules may each be array() or NULL
111 if ($this->drupalModules !== NULL) {
112 foreach ($this->drupalModules as $moduleName) {
113 $this->allModules[$moduleName] = $moduleName;
114 if ($moduleName == 'civicrm') {
115 if (!empty($this->civiModules)) {
116 foreach ($this->civiModules as $civiModuleName) {
117 $this->allModules[$civiModuleName] = $civiModuleName;
118 }
119 }
120 }
121 }
122 }
123 else {
124 $this->allModules = (array) $this->civiModules;
125 }
126
f0a7a0c9
EM
127 if ($this->drupalModules !== NULL && $this->civiModules !== NULL) {
128 // both CRM and CMS have bootstrapped, so this is the final list
129 $this->isBuilt = TRUE;
130 }
131 }
132 }
96025800 133
3f57d516
WL
134 /**
135 * Gets modules installed on the Drupal site.
136 *
137 * @return array|null
138 * The machine names of the modules installed in Drupal, or NULL if unable
139 * to determine the modules.
140 */
141 protected function getDrupalModules() {
142 if (function_exists('module_list')) {
143 // copied from user_module_invoke
144 return module_list();
145 }
146 }
147
77b97be7 148}