send most action links thru hook_civicrm_links
[civicrm-core.git] / CRM / Utils / Hook / Drupal6.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.4 |
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 class CRM_Utils_Hook_Drupal6 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 function invoke($numParams,
58 &$arg1, &$arg2, &$arg3, &$arg4, &$arg5, &$arg6,
59 $fnSuffix
60 ) {
61
62 $this->buildModuleList();
63
64 return $this->runHooks($this->allModules, $fnSuffix,
65 $numParams, $arg1, $arg2, $arg3, $arg4, $arg5, $arg6
66 );
67 }
68
69 /**
70 * Build the list of modules to be processed for hooks.
71 */
72 function buildModuleList() {
73 if ($this->isBuilt === FALSE) {
74 if ($this->drupalModules === NULL) {
75 if (function_exists('module_list')) {
76 // copied from user_module_invoke
77 $this->drupalModules = module_list();
78 }
79 }
80
81 if ($this->civiModules === NULL) {
82 $this->civiModules = array();
83 $this->requireCiviModules($this->civiModules);
84 }
85
86 $this->allModules = array_merge((array)$this->drupalModules, (array)$this->civiModules);
87 if ($this->drupalModules !== NULL && $this->civiModules !== NULL) {
88 // both CRM and CMS have bootstrapped, so this is the final list
89 $this->isBuilt = TRUE;
90 }
91 }
92 }
93 }
94
95
96