Skip to content
Snippets Groups Projects
Commit caf38598 authored by jaapjansma's avatar jaapjansma
Browse files

Fixed regression issue from ssh -p 5023 civivelt@civicrm.dev.velt.nu on CiviCRM version 5.37

parent 88e506b8
No related branches found
No related tags found
No related merge requests found
# Version 1.81 (not yet released)
* Fixed regression issue from !120 on CiviCRM version 5.37
# Version 1.80
* Fixed regression issue from !120 on CiviCRM version 5.37
......
......@@ -253,6 +253,21 @@ function dataprocessor_civicrm_enable() {
_dataprocessor_civix_civicrm_enable();
}
/**
* Implements hook_civicrm_xmlMenu().
*
* @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_xmlMenu
*/
function dataprocessor_civicrm_xmlMenu(&$files) {
$menuXmlFiles = glob(__DIR__ . '/xml/Menu/*.xml');
if (is_array($menuXmlFiles)) {
foreach ($menuXmlFiles as $file) {
$files[] = $file;
}
}
}
/**
* Implements hook_civicrm_navigationMenu().
*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment