Update Copywrite year to be 2019
[civicrm-core.git] / CRM / Core / Menu.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
6b83d5bd 6 | Copyright CiviCRM LLC (c) 2004-2019 |
6a488035
TO
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 */
6a488035
TO
27
28/**
29 * This file contains the various menus of the CiviCRM module
30 *
31 * @package CRM
6b83d5bd 32 * @copyright CiviCRM LLC (c) 2004-2019
6a488035
TO
33 */
34
35require_once 'CRM/Core/I18n.php';
28518c90
EM
36
37/**
ad37ac8e 38 * Class CRM_Core_Menu.
28518c90 39 */
6a488035
TO
40class CRM_Core_Menu {
41
42 /**
fe482240 43 * The list of menu items.
6a488035
TO
44 *
45 * @var array
6a488035
TO
46 */
47 static $_items = NULL;
48
49 /**
fe482240 50 * The list of permissioned menu items.
6a488035
TO
51 *
52 * @var array
6a488035
TO
53 */
54 static $_permissionedItems = NULL;
55
56 static $_serializedElements = array(
57 'access_arguments',
58 'access_callback',
59 'page_arguments',
60 'page_callback',
61 'breadcrumb',
62 );
63
64 static $_menuCache = NULL;
7da04cde 65 const MENU_ITEM = 1;
6a488035 66
a0ee3941 67 /**
fe482240 68 * This function fetches the menu items from xml and xmlMenu hooks.
49d97c48 69 *
ad37ac8e 70 * @param bool $fetchFromXML
6a0b768e 71 * Fetch the menu items from xml and not from cache.
49d97c48 72 *
a0ee3941
EM
73 * @return array
74 */
00be9182 75 public static function &xmlItems($fetchFromXML = FALSE) {
49d97c48 76 if (!self::$_items || $fetchFromXML) {
6a488035
TO
77 $config = CRM_Core_Config::singleton();
78
79 // We needs this until Core becomes a component
80 $coreMenuFilesNamespace = 'CRM_Core_xml_Menu';
81 $coreMenuFilesPath = str_replace('_', DIRECTORY_SEPARATOR, $coreMenuFilesNamespace);
82 global $civicrm_root;
83 $files = CRM_Utils_File::getFilesByExtension($civicrm_root . DIRECTORY_SEPARATOR . $coreMenuFilesPath, 'xml');
84
85 // Grab component menu files
86 $files = array_merge($files,
87 CRM_Core_Component::xmlMenu()
88 );
89
90 // lets call a hook and get any additional files if needed
91 CRM_Utils_Hook::xmlMenu($files);
92
93 self::$_items = array();
94 foreach ($files as $file) {
95 self::read($file, self::$_items);
96 }
7dc34fb8
TO
97
98 CRM_Utils_Hook::alterMenu(self::$_items);
6a488035
TO
99 }
100
101 return self::$_items;
102 }
103
a0ee3941 104 /**
ad37ac8e 105 * Read menu.
106 *
100fef9d 107 * @param string $name
5bfe764c
TO
108 * File name
109 * @param array $menu
110 * An alterable list of menu items.
a0ee3941
EM
111 *
112 * @throws Exception
113 */
00be9182 114 public static function read($name, &$menu) {
5bfe764c
TO
115 $xml = simplexml_load_file($name);
116 self::readXML($xml, $menu);
117 }
6a488035 118
5bfe764c
TO
119 /**
120 * @param SimpleXMLElement $xml
121 * An XML document defining a list of menu items.
122 * @param array $menu
123 * An alterable list of menu items.
124 */
125 public static function readXML($xml, &$menu) {
6a488035 126 $config = CRM_Core_Config::singleton();
6a488035
TO
127 foreach ($xml->item as $item) {
128 if (!(string ) $item->path) {
129 CRM_Core_Error::debug('i', $item);
130 CRM_Core_Error::fatal();
131 }
132 $path = (string ) $item->path;
133 $menu[$path] = array();
134 unset($item->path);
4535c1f5
TO
135
136 if ($item->ids_arguments) {
137 $ids = array();
36d4fa1b
TO
138 foreach (array('json' => 'json', 'html' => 'html', 'exception' => 'exceptions') as $tag => $attr) {
139 $ids[$attr] = array();
140 foreach ($item->ids_arguments->{$tag} as $value) {
141 $ids[$attr][] = (string) $value;
4535c1f5
TO
142 }
143 }
144 $menu[$path]['ids_arguments'] = $ids;
145 unset($item->ids_arguments);
146 }
147
6a488035
TO
148 foreach ($item as $key => $value) {
149 $key = (string ) $key;
150 $value = (string ) $value;
151 if (strpos($key, '_callback') &&
152 strpos($value, '::')
153 ) {
c8074a93
TO
154 // FIXME Remove the rewrite at this level. Instead, change downstream call_user_func*($value)
155 // to call_user_func*(Civi\Core\Resolver::singleton()->get($value)).
6a488035
TO
156 $value = explode('::', $value);
157 }
158 elseif ($key == 'access_arguments') {
c8074a93 159 // FIXME Move the permission parser to its own class (or *maybe* CRM_Core_Permission).
6a488035
TO
160 if (strpos($value, ',') ||
161 strpos($value, ';')
162 ) {
163 if (strpos($value, ',')) {
164 $elements = explode(',', $value);
165 $op = 'and';
166 }
167 else {
168 $elements = explode(';', $value);
169 $op = 'or';
170 }
171 $items = array();
172 foreach ($elements as $element) {
173 $items[] = $element;
174 }
175 $value = array($items, $op);
176 }
177 else {
178 $value = array(array($value), 'and');
179 }
180 }
181 elseif ($key == 'is_public' || $key == 'is_ssl') {
182 $value = ($value == 'true' || $value == 1) ? 1 : 0;
183 }
184 $menu[$path][$key] = $value;
185 }
186 }
187 }
188
189 /**
fe482240 190 * This function defines information for various menu items.
6a488035 191 *
ad37ac8e 192 * @param bool $fetchFromXML
6a0b768e 193 * Fetch the menu items from xml and not from cache.
49d97c48 194 *
7a9ab499 195 * @return array
6a488035 196 */
00be9182 197 public static function &items($fetchFromXML = FALSE) {
49d97c48 198 return self::xmlItems($fetchFromXML);
6a488035
TO
199 }
200
a0ee3941 201 /**
ad37ac8e 202 * Is array true (whatever that means!).
203 *
204 * @param array $values
a0ee3941
EM
205 *
206 * @return bool
207 */
00be9182 208 public static function isArrayTrue(&$values) {
6a488035
TO
209 foreach ($values as $name => $value) {
210 if (!$value) {
211 return FALSE;
212 }
213 }
214 return TRUE;
215 }
216
a0ee3941 217 /**
ad37ac8e 218 * Fill menu values.
219 *
220 * @param array $menu
221 * @param string $path
a0ee3941
EM
222 *
223 * @throws Exception
224 */
00be9182 225 public static function fillMenuValues(&$menu, $path) {
6a488035
TO
226 $fieldsToPropagate = array(
227 'access_callback',
228 'access_arguments',
229 'page_callback',
230 'page_arguments',
231 'is_ssl',
232 );
233 $fieldsPresent = array();
234 foreach ($fieldsToPropagate as $field) {
235 $fieldsPresent[$field] = CRM_Utils_Array::value($field, $menu[$path]) !== NULL ? TRUE : FALSE;
236 }
237
238 $args = explode('/', $path);
239 while (!self::isArrayTrue($fieldsPresent) && !empty($args)) {
240
241 array_pop($args);
242 $parentPath = implode('/', $args);
243
244 foreach ($fieldsToPropagate as $field) {
245 if (!$fieldsPresent[$field]) {
246 if (CRM_Utils_Array::value($field, CRM_Utils_Array::value($parentPath, $menu)) !== NULL) {
247 $fieldsPresent[$field] = TRUE;
248 $menu[$path][$field] = $menu[$parentPath][$field];
249 }
250 }
251 }
252 }
253
254 if (self::isArrayTrue($fieldsPresent)) {
255 return;
256 }
257
258 $messages = array();
259 foreach ($fieldsToPropagate as $field) {
260 if (!$fieldsPresent[$field]) {
261 $messages[] = ts("Could not find %1 in path tree",
262 array(1 => $field)
263 );
264 }
265 }
266 CRM_Core_Error::fatal("'$path': " . implode(', ', $messages));
267 }
268
269 /**
fe482240 270 * We use this function to.
6a488035
TO
271 *
272 * 1. Compute the breadcrumb
273 * 2. Compute local tasks value if any
274 * 3. Propagate access argument, access callback, page callback to the menu item
275 * 4. Build the global navigation block
ea3ddccf 276 *
277 * @param array $menu
6a488035 278 */
00be9182 279 public static function build(&$menu) {
6a488035
TO
280 foreach ($menu as $path => $menuItems) {
281 self::buildBreadcrumb($menu, $path);
282 self::fillMenuValues($menu, $path);
283 self::fillComponentIds($menu, $path);
284 self::buildReturnUrl($menu, $path);
285
286 // add add page_type if not present
287 if (!isset($menu[$path]['page_type'])) {
288 $menu[$path]['page_type'] = 0;
289 }
290 }
291
292 self::buildAdminLinks($menu);
293 }
294
a0ee3941 295 /**
fe482240 296 * This function recomputes menu from xml and populates civicrm_menu.
ad37ac8e 297 *
a0ee3941
EM
298 * @param bool $truncate
299 */
00be9182 300 public static function store($truncate = TRUE) {
6a488035
TO
301 // first clean up the db
302 if ($truncate) {
303 $query = 'TRUNCATE civicrm_menu';
304 CRM_Core_DAO::executeQuery($query);
305 }
49d97c48 306 $menuArray = self::items($truncate);
6a488035
TO
307
308 self::build($menuArray);
309
b44dc91e 310 $daoFields = CRM_Core_DAO_Menu::fields();
6a488035
TO
311
312 foreach ($menuArray as $path => $item) {
353ffa53
TO
313 $menu = new CRM_Core_DAO_Menu();
314 $menu->path = $path;
6a488035
TO
315 $menu->domain_id = CRM_Core_Config::domainID();
316
317 $menu->find(TRUE);
318
d6f1a16c 319 if (!CRM_Core_Config::isUpgradeMode() ||
eed7e803 320 CRM_Core_BAO_SchemaHandler::checkIfFieldExists('civicrm_menu', 'module_data', FALSE)
d6f1a16c
NM
321 ) {
322 // Move unrecognized fields to $module_data.
323 $module_data = array();
324 foreach (array_keys($item) as $key) {
325 if (!isset($daoFields[$key])) {
326 $module_data[$key] = $item[$key];
327 unset($item[$key]);
328 }
b44dc91e 329 }
b44dc91e 330
d6f1a16c
NM
331 $menu->module_data = serialize($module_data);
332 }
6a488035 333
c09129a5
NM
334 $menu->copyValues($item);
335
6a488035
TO
336 foreach (self::$_serializedElements as $element) {
337 if (!isset($item[$element]) ||
338 $item[$element] == 'null'
339 ) {
340 $menu->$element = NULL;
341 }
342 else {
343 $menu->$element = serialize($item[$element]);
344 }
345 }
346
347 $menu->save();
348 }
349 }
350
a0ee3941 351 /**
ad37ac8e 352 * Build admin links.
353 *
354 * @param array $menu
a0ee3941 355 */
00be9182 356 public static function buildAdminLinks(&$menu) {
6a488035
TO
357 $values = array();
358
359 foreach ($menu as $path => $item) {
a7488080 360 if (empty($item['adminGroup'])) {
6a488035
TO
361 continue;
362 }
363
0d8afee2 364 $query = !empty($item['path_arguments']) ? str_replace(',', '&', $item['path_arguments']) . '&reset=1' : 'reset=1';
6a488035
TO
365
366 $value = array(
367 'title' => $item['title'],
368 'desc' => CRM_Utils_Array::value('desc', $item),
369 'id' => strtr($item['title'], array(
353ffa53
TO
370 '(' => '_',
371 ')' => '',
372 ' ' => '',
2aa397bc 373 ',' => '_',
353ffa53 374 '/' => '_',
6a488035
TO
375 )
376 ),
d75f2f47 377 'url' => CRM_Utils_System::url($path, $query,
ad37ac8e 378 FALSE,
379 NULL,
380 TRUE,
381 FALSE,
382 // forceBackend; CRM-14439 work-around; acceptable for now because we don't display breadcrumbs on frontend
383 TRUE
f4bdec6a 384 ),
6a488035
TO
385 'icon' => CRM_Utils_Array::value('icon', $item),
386 'extra' => CRM_Utils_Array::value('extra', $item),
387 );
388 if (!array_key_exists($item['adminGroup'], $values)) {
389 $values[$item['adminGroup']] = array();
390 $values[$item['adminGroup']]['fields'] = array();
391 }
392 $weight = CRM_Utils_Array::value('weight', $item, 0);
393 $values[$item['adminGroup']]['fields']["{weight}.{$item['title']}"] = $value;
394 $values[$item['adminGroup']]['component_id'] = $item['component_id'];
395 }
396
397 foreach ($values as $group => $dontCare) {
398 $values[$group]['perColumn'] = round(count($values[$group]['fields']) / 2);
399 ksort($values[$group]);
400 }
401
402 $menu['admin'] = array('breadcrumb' => $values);
403 }
404
a0ee3941 405 /**
ad37ac8e 406 * Get navigation.
407 *
a0ee3941
EM
408 * @param bool $all
409 *
410 * @return mixed
411 * @throws Exception
412 */
00be9182 413 public static function &getNavigation($all = FALSE) {
6a488035
TO
414 CRM_Core_Error::fatal();
415
416 if (!self::$_menuCache) {
417 self::get('navigation');
418 }
419
420 if (CRM_Core_Config::isUpgradeMode()) {
421 return array();
422 }
423
424 if (!array_key_exists('navigation', self::$_menuCache)) {
425 // problem could be due to menu table empty. Just do a
426 // menu store and try again
427 self::store();
428
429 // here we goo
430 self::get('navigation');
431 if (!array_key_exists('navigation', self::$_menuCache)) {
432 CRM_Core_Error::fatal();
433 }
434 }
435 $nav = &self::$_menuCache['navigation'];
436
437 if (!$nav ||
438 !isset($nav['breadcrumb'])
439 ) {
440 return NULL;
441 }
442
443 $values = &$nav['breadcrumb'];
444 $config = CRM_Core_Config::singleton();
445 foreach ($values as $index => $item) {
446 if (strpos(CRM_Utils_Array::value($config->userFrameworkURLVar, $_REQUEST),
447 $item['path']
353ffa53
TO
448 ) === 0
449 ) {
6a488035
TO
450 $values[$index]['active'] = 'class="active"';
451 }
452 else {
453 $values[$index]['active'] = '';
454 }
455
456 if ($values[$index]['parent']) {
457 $parent = $values[$index]['parent'];
458
459 // only reset if still a leaf
460 if ($values[$parent]['class'] == 'leaf') {
461 $values[$parent]['class'] = 'collapsed';
462 }
463
464 // if a child or the parent is active, expand the menu
465 if ($values[$index]['active'] ||
466 $values[$parent]['active']
467 ) {
468 $values[$parent]['class'] = 'expanded';
469 }
470
471 // make the parent inactive if the child is active
472 if ($values[$index]['active'] &&
473 $values[$parent]['active']
474 ) {
475 $values[$parent]['active'] = '';
476 }
477 }
478 }
479
6a488035
TO
480 if (!$all) {
481 // remove all collapsed menu items from the array
482 foreach ($values as $weight => $v) {
483 if ($v['parent'] &&
484 $values[$v['parent']]['class'] == 'collapsed'
485 ) {
486 unset($values[$weight]);
487 }
488 }
489 }
490
491 // check permissions for the rest
492 $activeChildren = array();
493
494 foreach ($values as $weight => $v) {
495 if (CRM_Core_Permission::checkMenuItem($v)) {
496 if ($v['parent']) {
497 $activeChildren[] = $weight;
498 }
499 }
500 else {
501 unset($values[$weight]);
502 }
503 }
504
505 // add the start / end tags
506 $len = count($activeChildren) - 1;
507 if ($len >= 0) {
508 $values[$activeChildren[0]]['start'] = TRUE;
509 $values[$activeChildren[$len]]['end'] = TRUE;
510 }
511
512 ksort($values, SORT_NUMERIC);
513 $i18n = CRM_Core_I18n::singleton();
514 $i18n->localizeTitles($values);
515
516 return $values;
517 }
518
a0ee3941 519 /**
ad37ac8e 520 * Get admin links.
521 *
a0ee3941
EM
522 * @return null
523 */
00be9182 524 public static function &getAdminLinks() {
6a488035
TO
525 $links = self::get('admin');
526
527 if (!$links ||
528 !isset($links['breadcrumb'])
529 ) {
530 return NULL;
531 }
532
533 $values = &$links['breadcrumb'];
534 return $values;
535 }
536
537 /**
538 * Get the breadcrumb for a given path.
539 *
6a0b768e
TO
540 * @param array $menu
541 * An array of all the menu items.
542 * @param string $path
543 * Path for which breadcrumb is to be build.
6a488035 544 *
a6c01b45
CW
545 * @return array
546 * The breadcrumb for this path
6a488035 547 */
00be9182 548 public static function buildBreadcrumb(&$menu, $path) {
6a488035
TO
549 $crumbs = array();
550
551 $pathElements = explode('/', $path);
552 array_pop($pathElements);
553
554 $currentPath = NULL;
555 while ($newPath = array_shift($pathElements)) {
556 $currentPath = $currentPath ? ($currentPath . '/' . $newPath) : $newPath;
557
b44e3f84 558 // when we come across breadcrumb which involves ids,
6a488035
TO
559 // we should skip now and later on append dynamically.
560 if (isset($menu[$currentPath]['skipBreadcrumb'])) {
561 continue;
562 }
563
564 // add to crumb, if current-path exists in params.
565 if (array_key_exists($currentPath, $menu) &&
566 isset($menu[$currentPath]['title'])
567 ) {
0d8afee2 568 $urlVar = !empty($menu[$currentPath]['path_arguments']) ? '&' . $menu[$currentPath]['path_arguments'] : '';
6a488035
TO
569 $crumbs[] = array(
570 'title' => $menu[$currentPath]['title'],
571 'url' => CRM_Utils_System::url($currentPath,
38a0e912
TO
572 'reset=1' . $urlVar,
573 FALSE, // absolute
574 NULL, // fragment
575 TRUE, // htmlize
576 FALSE, // frontend
577 TRUE // forceBackend; CRM-14439 work-around; acceptable for now because we don't display breadcrumbs on frontend
6a488035
TO
578 ),
579 );
580 }
581 }
582 $menu[$path]['breadcrumb'] = $crumbs;
583
584 return $crumbs;
585 }
586
a0ee3941
EM
587 /**
588 * @param $menu
589 * @param $path
590 */
00be9182 591 public static function buildReturnUrl(&$menu, $path) {
6a488035
TO
592 if (!isset($menu[$path]['return_url'])) {
593 list($menu[$path]['return_url'], $menu[$path]['return_url_args']) = self::getReturnUrl($menu, $path);
594 }
595 }
596
a0ee3941
EM
597 /**
598 * @param $menu
599 * @param $path
600 *
601 * @return array
602 */
00be9182 603 public static function getReturnUrl(&$menu, $path) {
6a488035
TO
604 if (!isset($menu[$path]['return_url'])) {
605 $pathElements = explode('/', $path);
606 array_pop($pathElements);
607
608 if (empty($pathElements)) {
609 return array(NULL, NULL);
610 }
611 $newPath = implode('/', $pathElements);
612
613 return self::getReturnUrl($menu, $newPath);
614 }
615 else {
616 return array(
617 CRM_Utils_Array::value('return_url',
618 $menu[$path]
619 ),
620 CRM_Utils_Array::value('return_url_args',
621 $menu[$path]
622 ),
623 );
624 }
625 }
626
a0ee3941
EM
627 /**
628 * @param $menu
629 * @param $path
630 */
00be9182 631 public static function fillComponentIds(&$menu, $path) {
6a488035
TO
632 static $cache = array();
633
634 if (array_key_exists('component_id', $menu[$path])) {
635 return;
636 }
637
638 $args = explode('/', $path);
639
640 if (count($args) > 1) {
641 $compPath = $args[0] . '/' . $args[1];
642 }
643 else {
644 $compPath = $args[0];
645 }
646
647 $componentId = NULL;
648
649 if (array_key_exists($compPath, $cache)) {
650 $menu[$path]['component_id'] = $cache[$compPath];
651 }
652 else {
653 if (CRM_Utils_Array::value('component', CRM_Utils_Array::value($compPath, $menu))) {
654 $componentId = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_Component',
655 $menu[$compPath]['component'],
656 'id', 'name'
657 );
658 }
659 $menu[$path]['component_id'] = $componentId ? $componentId : NULL;
660 $cache[$compPath] = $menu[$path]['component_id'];
661 }
662 }
663
a0ee3941 664 /**
35146d69 665 * @param $path string
2bc65854 666 * Path of menu item to retrieve.
a0ee3941 667 *
35146d69 668 * @return array
2bc65854 669 * Menu entry array.
a0ee3941 670 */
00be9182 671 public static function get($path) {
6a488035
TO
672 // return null if menu rebuild
673 $config = CRM_Core_Config::singleton();
674
6a488035
TO
675 $args = explode('/', $path);
676
677 $elements = array();
678 while (!empty($args)) {
353ffa53
TO
679 $string = implode('/', $args);
680 $string = CRM_Core_DAO::escapeString($string);
6a488035
TO
681 $elements[] = "'{$string}'";
682 array_pop($args);
683 }
684
353ffa53
TO
685 $queryString = implode(', ', $elements);
686 $domainID = CRM_Core_Config::domainID();
6a488035
TO
687
688 $query = "
689(
690 SELECT *
691 FROM civicrm_menu
692 WHERE path in ( $queryString )
99a2c00a 693 AND domain_id = $domainID
6a488035
TO
694 ORDER BY length(path) DESC
695 LIMIT 1
696)
697";
698
699 if ($path != 'navigation') {
700 $query .= "
701UNION (
702 SELECT *
703 FROM civicrm_menu
704 WHERE path IN ( 'navigation' )
99a2c00a 705 AND domain_id = $domainID
6a488035
TO
706)
707";
708 }
709
710 $menu = new CRM_Core_DAO_Menu();
711 $menu->query($query);
712
713 self::$_menuCache = array();
714 $menuPath = NULL;
715 while ($menu->fetch()) {
716 self::$_menuCache[$menu->path] = array();
717 CRM_Core_DAO::storeValues($menu, self::$_menuCache[$menu->path]);
718
b44dc91e
TO
719 // Move module_data into main item.
720 if (isset(self::$_menuCache[$menu->path]['module_data'])) {
721 CRM_Utils_Array::extend(self::$_menuCache[$menu->path],
722 unserialize(self::$_menuCache[$menu->path]['module_data']));
723 unset(self::$_menuCache[$menu->path]['module_data']);
724 }
725
726 // Unserialize other elements.
6a488035
TO
727 foreach (self::$_serializedElements as $element) {
728 self::$_menuCache[$menu->path][$element] = unserialize($menu->$element);
729
730 if (strpos($path, $menu->path) !== FALSE) {
731 $menuPath = &self::$_menuCache[$menu->path];
732 }
733 }
734 }
735
736 if (strstr($path, 'report/instance')) {
737 $args = explode('/', $path);
738 if (is_numeric(end($args))) {
739 $menuPath['path'] .= '/' . end($args);
740 }
741 }
742
6a488035
TO
743 // *FIXME* : hack for 4.1 -> 4.2 upgrades.
744 if (preg_match('/^civicrm\/(upgrade\/)?queue\//', $path)) {
745 CRM_Queue_Menu::alter($path, $menuPath);
746 }
747
748 // Part of upgrade framework but not run inside main upgrade because it deletes data
749 // Once we have another example of a 'cleanup' we should generalize the clause below so it grabs string
750 // which follows upgrade/ and checks for existence of a function in Cleanup class.
751 if ($path == 'civicrm/upgrade/cleanup425') {
2aa397bc 752 $menuPath['page_callback'] = array('CRM_Upgrade_Page_Cleanup', 'cleanup425');
6a488035
TO
753 $menuPath['access_arguments'][0][] = 'administer CiviCRM';
754 $menuPath['access_callback'] = array('CRM_Core_Permission', 'checkMenu');
755 }
756
757 if (!empty($menuPath)) {
758 $i18n = CRM_Core_I18n::singleton();
759 $i18n->localizeTitles($menuPath);
760 }
761 return $menuPath;
762 }
763
a0ee3941
EM
764 /**
765 * @param $pathArgs
766 *
767 * @return mixed
768 */
00be9182 769 public static function getArrayForPathArgs($pathArgs) {
6a488035
TO
770 if (!is_string($pathArgs)) {
771 return;
772 }
773 $args = array();
774
775 $elements = explode(',', $pathArgs);
6a488035 776 foreach ($elements as $keyVal) {
3b4339fd 777 list($key, $val) = explode('=', $keyVal, 2);
6a488035
TO
778 $arr[$key] = $val;
779 }
780
781 if (array_key_exists('urlToSession', $arr)) {
782 $urlToSession = array();
783
784 $params = explode(';', $arr['urlToSession']);
785 $count = 0;
786 foreach ($params as $keyVal) {
787 list($urlToSession[$count]['urlVar'],
788 $urlToSession[$count]['sessionVar'],
789 $urlToSession[$count]['type'],
790 $urlToSession[$count]['default']
353ffa53 791 ) = explode(':', $keyVal);
6a488035
TO
792 $count++;
793 }
794 $arr['urlToSession'] = $urlToSession;
795 }
796 return $arr;
797 }
96025800 798
6a488035 799}