moved .js files to js folder
[com.zyxware.civiwci.git] / wci.civix.php
CommitLineData
60488185
M
1<?php
2
3// AUTO-GENERATED FILE -- Civix may overwrite any changes made to this file
4
5/**
6 * (Delegated) Implementation of hook_civicrm_config
7 *
8 * @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_config
9 */
10function _wci_civix_civicrm_config(&$config = NULL) {
11 static $configured = FALSE;
12 if ($configured) return;
13 $configured = TRUE;
14
15 $template =& CRM_Core_Smarty::singleton();
16
17 $extRoot = dirname( __FILE__ ) . DIRECTORY_SEPARATOR;
18 $extDir = $extRoot . 'templates';
19
20 if ( is_array( $template->template_dir ) ) {
21 array_unshift( $template->template_dir, $extDir );
22 } else {
23 $template->template_dir = array( $extDir, $template->template_dir );
24 }
25
26 $include_path = $extRoot . PATH_SEPARATOR . get_include_path( );
27 set_include_path( $include_path );
28}
29
30/**
31 * (Delegated) Implementation of hook_civicrm_xmlMenu
32 *
33 * @param $files array(string)
34 * @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_xmlMenu
35 */
36function _wci_civix_civicrm_xmlMenu(&$files) {
37 foreach (_wci_civix_glob(__DIR__ . '/xml/Menu/*.xml') as $file) {
38 $files[] = $file;
39 }
40}
41
42/**
43 * Implementation of hook_civicrm_install
44 *
45 * @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_install
46 */
47function _wci_civix_civicrm_install() {
48 _wci_civix_civicrm_config();
49 if ($upgrader = _wci_civix_upgrader()) {
ae48345c 50 $upgrader->onInstall();
60488185
M
51 }
52}
53
54/**
55 * Implementation of hook_civicrm_uninstall
56 *
57 * @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_uninstall
58 */
59function _wci_civix_civicrm_uninstall() {
60 _wci_civix_civicrm_config();
61 if ($upgrader = _wci_civix_upgrader()) {
ae48345c 62 $upgrader->onUninstall();
60488185
M
63 }
64}
65
66/**
67 * (Delegated) Implementation of hook_civicrm_enable
68 *
69 * @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_enable
70 */
71function _wci_civix_civicrm_enable() {
72 _wci_civix_civicrm_config();
73 if ($upgrader = _wci_civix_upgrader()) {
74 if (is_callable(array($upgrader, 'onEnable'))) {
ae48345c 75 $upgrader->onEnable();
60488185
M
76 }
77 }
78}
79
80/**
81 * (Delegated) Implementation of hook_civicrm_disable
82 *
83 * @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_disable
ae48345c 84 * @return mixed
60488185
M
85 */
86function _wci_civix_civicrm_disable() {
87 _wci_civix_civicrm_config();
88 if ($upgrader = _wci_civix_upgrader()) {
89 if (is_callable(array($upgrader, 'onDisable'))) {
ae48345c 90 $upgrader->onDisable();
60488185
M
91 }
92 }
93}
94
95/**
96 * (Delegated) Implementation of hook_civicrm_upgrade
97 *
98 * @param $op string, the type of operation being performed; 'check' or 'enqueue'
99 * @param $queue CRM_Queue_Queue, (for 'enqueue') the modifiable list of pending up upgrade tasks
100 *
101 * @return mixed based on op. for 'check', returns array(boolean) (TRUE if upgrades are pending)
102 * for 'enqueue', returns void
103 *
104 * @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_upgrade
105 */
106function _wci_civix_civicrm_upgrade($op, CRM_Queue_Queue $queue = NULL) {
107 if ($upgrader = _wci_civix_upgrader()) {
108 return $upgrader->onUpgrade($op, $queue);
109 }
110}
111
112/**
113 * @return CRM_Wci_Upgrader
114 */
115function _wci_civix_upgrader() {
116 if (!file_exists(__DIR__.'/CRM/Wci/Upgrader.php')) {
117 return NULL;
118 } else {
119 return CRM_Wci_Upgrader_Base::instance();
120 }
121}
122
123/**
124 * Search directory tree for files which match a glob pattern
125 *
126 * Note: Dot-directories (like "..", ".git", or ".svn") will be ignored.
127 * Note: In Civi 4.3+, delegate to CRM_Utils_File::findFiles()
128 *
129 * @param $dir string, base dir
130 * @param $pattern string, glob pattern, eg "*.txt"
131 * @return array(string)
132 */
133function _wci_civix_find_files($dir, $pattern) {
134 if (is_callable(array('CRM_Utils_File', 'findFiles'))) {
135 return CRM_Utils_File::findFiles($dir, $pattern);
136 }
137
138 $todos = array($dir);
139 $result = array();
140 while (!empty($todos)) {
141 $subdir = array_shift($todos);
142 foreach (_wci_civix_glob("$subdir/$pattern") as $match) {
143 if (!is_dir($match)) {
144 $result[] = $match;
145 }
146 }
147 if ($dh = opendir($subdir)) {
148 while (FALSE !== ($entry = readdir($dh))) {
149 $path = $subdir . DIRECTORY_SEPARATOR . $entry;
150 if ($entry{0} == '.') {
151 } elseif (is_dir($path)) {
152 $todos[] = $path;
153 }
154 }
155 closedir($dh);
156 }
157 }
158 return $result;
159}
160/**
161 * (Delegated) Implementation of hook_civicrm_managed
162 *
163 * Find any *.mgd.php files, merge their content, and return.
164 *
165 * @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_managed
166 */
167function _wci_civix_civicrm_managed(&$entities) {
168 $mgdFiles = _wci_civix_find_files(__DIR__, '*.mgd.php');
169 foreach ($mgdFiles as $file) {
170 $es = include $file;
171 foreach ($es as $e) {
172 if (empty($e['module'])) {
b18480e2 173 $e['module'] = 'org.civicrm.wci';
60488185
M
174 }
175 $entities[] = $e;
176 }
177 }
178}
179
180/**
181 * (Delegated) Implementation of hook_civicrm_caseTypes
182 *
183 * Find any and return any files matching "xml/case/*.xml"
184 *
185 * Note: This hook only runs in CiviCRM 4.4+.
186 *
187 * @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_caseTypes
188 */
189function _wci_civix_civicrm_caseTypes(&$caseTypes) {
190 if (!is_dir(__DIR__ . '/xml/case')) {
191 return;
192 }
193
194 foreach (_wci_civix_glob(__DIR__ . '/xml/case/*.xml') as $file) {
195 $name = preg_replace('/\.xml$/', '', basename($file));
196 if ($name != CRM_Case_XMLProcessor::mungeCaseType($name)) {
197 $errorMessage = sprintf("Case-type file name is malformed (%s vs %s)", $name, CRM_Case_XMLProcessor::mungeCaseType($name));
198 CRM_Core_Error::fatal($errorMessage);
199 // throw new CRM_Core_Exception($errorMessage);
200 }
201 $caseTypes[$name] = array(
b18480e2 202 'module' => 'org.civicrm.wci',
60488185
M
203 'name' => $name,
204 'file' => $file,
205 );
206 }
207}
208
209/**
210 * Glob wrapper which is guaranteed to return an array.
211 *
212 * The documentation for glob() says, "On some systems it is impossible to
213 * distinguish between empty match and an error." Anecdotally, the return
214 * result for an empty match is sometimes array() and sometimes FALSE.
215 * This wrapper provides consistency.
216 *
217 * @link http://php.net/glob
218 * @param string $pattern
219 * @return array, possibly empty
220 */
221function _wci_civix_glob($pattern) {
222 $result = glob($pattern);
223 return is_array($result) ? $result : array();
224}
225
226/**
227 * Inserts a navigation menu item at a given place in the hierarchy
228 *
229 * $menu - menu hierarchy
230 * $path - path where insertion should happen (ie. Administer/System Settings)
231 * $item - menu you need to insert (parent/child attributes will be filled for you)
232 * $parentId - used internally to recurse in the menu structure
233 */
234function _wci_civix_insert_navigation_menu(&$menu, $path, $item, $parentId = NULL) {
235 static $navId;
236
237 // If we are done going down the path, insert menu
238 if (empty($path)) {
239 if (!$navId) $navId = CRM_Core_DAO::singleValueQuery("SELECT max(id) FROM civicrm_navigation");
240 $navId ++;
241 $menu[$navId] = array (
242 'attributes' => array_merge($item, array(
243 'label' => CRM_Utils_Array::value('name', $item),
244 'active' => 1,
245 'parentID' => $parentId,
246 'navID' => $navId,
247 ))
248 );
249 return true;
250 } else {
251 // Find an recurse into the next level down
252 $found = false;
253 $path = explode('/', $path);
254 $first = array_shift($path);
255 foreach ($menu as $key => &$entry) {
256 if ($entry['attributes']['name'] == $first) {
257 if (!$entry['child']) $entry['child'] = array();
258 $found = _wci_civix_insert_navigation_menu($entry['child'], implode('/', $path), $item, $key);
259 }
260 }
261 return $found;
262 }
263}
264
265/**
266 * (Delegated) Implementation of hook_civicrm_alterSettingsFolders
267 *
268 * @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_alterSettingsFolders
269 */
270function _wci_civix_civicrm_alterSettingsFolders(&$metaDataFolders = NULL) {
271 static $configured = FALSE;
272 if ($configured) return;
273 $configured = TRUE;
274
275 $settingsDir = __DIR__ . DIRECTORY_SEPARATOR . 'settings';
276 if(is_dir($settingsDir) && !in_array($settingsDir, $metaDataFolders)) {
277 $metaDataFolders[] = $settingsDir;
278 }
ae48345c 279}