3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
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. |
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. |
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 +--------------------------------------------------------------------+
29 * This file contains the various menus of the CiviCRM module
32 * @copyright CiviCRM LLC (c) 2004-2015
37 require_once 'CRM/Core/I18n.php';
45 * The list of menu items.
49 static $_items = NULL;
52 * The list of permissioned menu items.
56 static $_permissionedItems = NULL;
58 static $_serializedElements = array(
66 static $_menuCache = NULL;
70 * This function fetches the menu items from xml and xmlMenu hooks.
72 * @param boolen $fetchFromXML
73 * Fetch the menu items from xml and not from cache.
77 public static function &xmlItems($fetchFromXML = FALSE) {
78 if (!self
::$_items ||
$fetchFromXML) {
79 $config = CRM_Core_Config
::singleton();
81 // We needs this until Core becomes a component
82 $coreMenuFilesNamespace = 'CRM_Core_xml_Menu';
83 $coreMenuFilesPath = str_replace('_', DIRECTORY_SEPARATOR
, $coreMenuFilesNamespace);
85 $files = CRM_Utils_File
::getFilesByExtension($civicrm_root . DIRECTORY_SEPARATOR
. $coreMenuFilesPath, 'xml');
87 // Grab component menu files
88 $files = array_merge($files,
89 CRM_Core_Component
::xmlMenu()
92 // lets call a hook and get any additional files if needed
93 CRM_Utils_Hook
::xmlMenu($files);
95 self
::$_items = array();
96 foreach ($files as $file) {
97 self
::read($file, self
::$_items);
101 return self
::$_items;
105 * @param string $name
110 public static function read($name, &$menu) {
112 $config = CRM_Core_Config
::singleton();
114 $xml = simplexml_load_file($name);
115 foreach ($xml->item
as $item) {
116 if (!(string ) $item->path
) {
117 CRM_Core_Error
::debug('i', $item);
118 CRM_Core_Error
::fatal();
120 $path = (string ) $item->path
;
121 $menu[$path] = array();
123 foreach ($item as $key => $value) {
124 $key = (string ) $key;
125 $value = (string ) $value;
126 if (strpos($key, '_callback') &&
129 // FIXME Remove the rewrite at this level. Instead, change downstream call_user_func*($value)
130 // to call_user_func*(Civi\Core\Resolver::singleton()->get($value)).
131 $value = explode('::', $value);
133 elseif ($key == 'access_arguments') {
134 // FIXME Move the permission parser to its own class (or *maybe* CRM_Core_Permission).
135 if (strpos($value, ',') ||
138 if (strpos($value, ',')) {
139 $elements = explode(',', $value);
143 $elements = explode(';', $value);
147 foreach ($elements as $element) {
150 $value = array($items, $op);
153 $value = array(array($value), 'and');
156 elseif ($key == 'is_public' ||
$key == 'is_ssl') {
157 $value = ($value == 'true' ||
$value == 1) ?
1 : 0;
159 $menu[$path][$key] = $value;
165 * This function defines information for various menu items.
167 * @param boolen $fetchFromXML
168 * Fetch the menu items from xml and not from cache.
172 public static function &items($fetchFromXML = FALSE) {
173 return self
::xmlItems($fetchFromXML);
181 public static function isArrayTrue(&$values) {
182 foreach ($values as $name => $value) {
196 public static function fillMenuValues(&$menu, $path) {
197 $fieldsToPropagate = array(
204 $fieldsPresent = array();
205 foreach ($fieldsToPropagate as $field) {
206 $fieldsPresent[$field] = CRM_Utils_Array
::value($field, $menu[$path]) !== NULL ?
TRUE : FALSE;
209 $args = explode('/', $path);
210 while (!self
::isArrayTrue($fieldsPresent) && !empty($args)) {
213 $parentPath = implode('/', $args);
215 foreach ($fieldsToPropagate as $field) {
216 if (!$fieldsPresent[$field]) {
217 if (CRM_Utils_Array
::value($field, CRM_Utils_Array
::value($parentPath, $menu)) !== NULL) {
218 $fieldsPresent[$field] = TRUE;
219 $menu[$path][$field] = $menu[$parentPath][$field];
225 if (self
::isArrayTrue($fieldsPresent)) {
230 foreach ($fieldsToPropagate as $field) {
231 if (!$fieldsPresent[$field]) {
232 $messages[] = ts("Could not find %1 in path tree",
237 CRM_Core_Error
::fatal("'$path': " . implode(', ', $messages));
241 * We use this function to.
243 * 1. Compute the breadcrumb
244 * 2. Compute local tasks value if any
245 * 3. Propagate access argument, access callback, page callback to the menu item
246 * 4. Build the global navigation block
248 public static function build(&$menu) {
249 foreach ($menu as $path => $menuItems) {
250 self
::buildBreadcrumb($menu, $path);
251 self
::fillMenuValues($menu, $path);
252 self
::fillComponentIds($menu, $path);
253 self
::buildReturnUrl($menu, $path);
255 // add add page_type if not present
256 if (!isset($menu[$path]['page_type'])) {
257 $menu[$path]['page_type'] = 0;
261 self
::buildAdminLinks($menu);
265 * This function recomputes menu from xml and populates civicrm_menu.
266 * @param bool $truncate
268 public static function store($truncate = TRUE) {
269 // first clean up the db
271 $query = 'TRUNCATE civicrm_menu';
272 CRM_Core_DAO
::executeQuery($query);
274 $menuArray = self
::items($truncate);
276 self
::build($menuArray);
278 $config = CRM_Core_Config
::singleton();
280 foreach ($menuArray as $path => $item) {
281 $menu = new CRM_Core_DAO_Menu();
283 $menu->domain_id
= CRM_Core_Config
::domainID();
287 $menu->copyValues($item);
289 foreach (self
::$_serializedElements as $element) {
290 if (!isset($item[$element]) ||
291 $item[$element] == 'null'
293 $menu->$element = NULL;
296 $menu->$element = serialize($item[$element]);
307 public static function buildAdminLinks(&$menu) {
310 foreach ($menu as $path => $item) {
311 if (empty($item['adminGroup'])) {
315 $query = !empty($item['path_arguments']) ?
str_replace(',', '&', $item['path_arguments']) . '&reset=1' : 'reset=1';
318 'title' => $item['title'],
319 'desc' => CRM_Utils_Array
::value('desc', $item),
320 'id' => strtr($item['title'], array(
328 'url' => CRM_Utils_System
::url($path, $query,
333 TRUE // forceBackend; CRM-14439 work-around; acceptable for now because we don't display breadcrumbs on frontend
335 'icon' => CRM_Utils_Array
::value('icon', $item),
336 'extra' => CRM_Utils_Array
::value('extra', $item),
338 if (!array_key_exists($item['adminGroup'], $values)) {
339 $values[$item['adminGroup']] = array();
340 $values[$item['adminGroup']]['fields'] = array();
342 $weight = CRM_Utils_Array
::value('weight', $item, 0);
343 $values[$item['adminGroup']]['fields']["{weight}.{$item['title']}"] = $value;
344 $values[$item['adminGroup']]['component_id'] = $item['component_id'];
347 foreach ($values as $group => $dontCare) {
348 $values[$group]['perColumn'] = round(count($values[$group]['fields']) / 2);
349 ksort($values[$group]);
352 $menu['admin'] = array('breadcrumb' => $values);
361 public static function &getNavigation($all = FALSE) {
362 CRM_Core_Error
::fatal();
364 if (!self
::$_menuCache) {
365 self
::get('navigation');
368 if (CRM_Core_Config
::isUpgradeMode()) {
372 if (!array_key_exists('navigation', self
::$_menuCache)) {
373 // problem could be due to menu table empty. Just do a
374 // menu store and try again
378 self
::get('navigation');
379 if (!array_key_exists('navigation', self
::$_menuCache)) {
380 CRM_Core_Error
::fatal();
383 $nav = &self
::$_menuCache['navigation'];
386 !isset($nav['breadcrumb'])
391 $values = &$nav['breadcrumb'];
392 $config = CRM_Core_Config
::singleton();
393 foreach ($values as $index => $item) {
394 if (strpos(CRM_Utils_Array
::value($config->userFrameworkURLVar
, $_REQUEST),
398 $values[$index]['active'] = 'class="active"';
401 $values[$index]['active'] = '';
404 if ($values[$index]['parent']) {
405 $parent = $values[$index]['parent'];
407 // only reset if still a leaf
408 if ($values[$parent]['class'] == 'leaf') {
409 $values[$parent]['class'] = 'collapsed';
412 // if a child or the parent is active, expand the menu
413 if ($values[$index]['active'] ||
414 $values[$parent]['active']
416 $values[$parent]['class'] = 'expanded';
419 // make the parent inactive if the child is active
420 if ($values[$index]['active'] &&
421 $values[$parent]['active']
423 $values[$parent]['active'] = '';
429 // remove all collapsed menu items from the array
430 foreach ($values as $weight => $v) {
432 $values[$v['parent']]['class'] == 'collapsed'
434 unset($values[$weight]);
439 // check permissions for the rest
440 $activeChildren = array();
442 foreach ($values as $weight => $v) {
443 if (CRM_Core_Permission
::checkMenuItem($v)) {
445 $activeChildren[] = $weight;
449 unset($values[$weight]);
453 // add the start / end tags
454 $len = count($activeChildren) - 1;
456 $values[$activeChildren[0]]['start'] = TRUE;
457 $values[$activeChildren[$len]]['end'] = TRUE;
460 ksort($values, SORT_NUMERIC
);
461 $i18n = CRM_Core_I18n
::singleton();
462 $i18n->localizeTitles($values);
470 public static function &getAdminLinks() {
471 $links = self
::get('admin');
474 !isset($links['breadcrumb'])
479 $values = &$links['breadcrumb'];
484 * Get the breadcrumb for a given path.
487 * An array of all the menu items.
488 * @param string $path
489 * Path for which breadcrumb is to be build.
492 * The breadcrumb for this path
495 public static function buildBreadcrumb(&$menu, $path) {
498 $pathElements = explode('/', $path);
499 array_pop($pathElements);
502 while ($newPath = array_shift($pathElements)) {
503 $currentPath = $currentPath ?
($currentPath . '/' . $newPath) : $newPath;
505 // when we come across breadcrumb which involves ids,
506 // we should skip now and later on append dynamically.
507 if (isset($menu[$currentPath]['skipBreadcrumb'])) {
511 // add to crumb, if current-path exists in params.
512 if (array_key_exists($currentPath, $menu) &&
513 isset($menu[$currentPath]['title'])
515 $urlVar = !empty($menu[$currentPath]['path_arguments']) ?
'&' . $menu[$currentPath]['path_arguments'] : '';
517 'title' => $menu[$currentPath]['title'],
518 'url' => CRM_Utils_System
::url($currentPath,
524 TRUE // forceBackend; CRM-14439 work-around; acceptable for now because we don't display breadcrumbs on frontend
529 $menu[$path]['breadcrumb'] = $crumbs;
538 public static function buildReturnUrl(&$menu, $path) {
539 if (!isset($menu[$path]['return_url'])) {
540 list($menu[$path]['return_url'], $menu[$path]['return_url_args']) = self
::getReturnUrl($menu, $path);
550 public static function getReturnUrl(&$menu, $path) {
551 if (!isset($menu[$path]['return_url'])) {
552 $pathElements = explode('/', $path);
553 array_pop($pathElements);
555 if (empty($pathElements)) {
556 return array(NULL, NULL);
558 $newPath = implode('/', $pathElements);
560 return self
::getReturnUrl($menu, $newPath);
564 CRM_Utils_Array
::value('return_url',
567 CRM_Utils_Array
::value('return_url_args',
578 public static function fillComponentIds(&$menu, $path) {
579 static $cache = array();
581 if (array_key_exists('component_id', $menu[$path])) {
585 $args = explode('/', $path);
587 if (count($args) > 1) {
588 $compPath = $args[0] . '/' . $args[1];
591 $compPath = $args[0];
596 if (array_key_exists($compPath, $cache)) {
597 $menu[$path]['component_id'] = $cache[$compPath];
600 if (CRM_Utils_Array
::value('component', CRM_Utils_Array
::value($compPath, $menu))) {
601 $componentId = CRM_Core_DAO
::getFieldValue('CRM_Core_DAO_Component',
602 $menu[$compPath]['component'],
606 $menu[$path]['component_id'] = $componentId ?
$componentId : NULL;
607 $cache[$compPath] = $menu[$path]['component_id'];
616 public static function get($path) {
617 // return null if menu rebuild
618 $config = CRM_Core_Config
::singleton();
622 $args = explode('/', $path);
625 while (!empty($args)) {
626 $string = implode('/', $args);
627 $string = CRM_Core_DAO
::escapeString($string);
628 $elements[] = "'{$string}'";
632 $queryString = implode(', ', $elements);
633 $domainID = CRM_Core_Config
::domainID();
634 $domainWhereClause = " AND domain_id = $domainID ";
635 if ($config->isUpgradeMode() &&
636 !CRM_Core_DAO
::checkFieldExists('civicrm_menu', 'domain_id')
638 //domain_id wouldn't be available for earlier version of
639 //3.0 and therefore can't be used as part of query for
641 $domainWhereClause = "";
648 WHERE path in ( $queryString )
650 ORDER BY length(path) DESC
655 if ($path != 'navigation') {
660 WHERE path IN ( 'navigation' )
666 $menu = new CRM_Core_DAO_Menu();
667 $menu->query($query);
669 self
::$_menuCache = array();
671 while ($menu->fetch()) {
672 self
::$_menuCache[$menu->path
] = array();
673 CRM_Core_DAO
::storeValues($menu, self
::$_menuCache[$menu->path
]);
675 foreach (self
::$_serializedElements as $element) {
676 self
::$_menuCache[$menu->path
][$element] = unserialize($menu->$element);
678 if (strpos($path, $menu->path
) !== FALSE) {
679 $menuPath = &self
::$_menuCache[$menu->path
];
684 if (strstr($path, 'report/instance')) {
685 $args = explode('/', $path);
686 if (is_numeric(end($args))) {
687 $menuPath['path'] .= '/' . end($args);
691 // *FIXME* : hack for 2.1 -> 2.2 upgrades.
692 if ($path == 'civicrm/upgrade') {
693 $menuPath['page_callback'] = 'CRM_Upgrade_Page_Upgrade';
694 $menuPath['access_arguments'][0][] = 'administer CiviCRM';
695 $menuPath['access_callback'] = array('CRM_Core_Permission', 'checkMenu');
697 // *FIXME* : hack for 4.1 -> 4.2 upgrades.
698 if (preg_match('/^civicrm\/(upgrade\/)?queue\//', $path)) {
699 CRM_Queue_Menu
::alter($path, $menuPath);
702 // Part of upgrade framework but not run inside main upgrade because it deletes data
703 // Once we have another example of a 'cleanup' we should generalize the clause below so it grabs string
704 // which follows upgrade/ and checks for existence of a function in Cleanup class.
705 if ($path == 'civicrm/upgrade/cleanup425') {
706 $menuPath['page_callback'] = array('CRM_Upgrade_Page_Cleanup', 'cleanup425');
707 $menuPath['access_arguments'][0][] = 'administer CiviCRM';
708 $menuPath['access_callback'] = array('CRM_Core_Permission', 'checkMenu');
711 if (!empty($menuPath)) {
712 $i18n = CRM_Core_I18n
::singleton();
713 $i18n->localizeTitles($menuPath);
723 public static function getArrayForPathArgs($pathArgs) {
724 if (!is_string($pathArgs)) {
729 $elements = explode(',', $pathArgs);
730 foreach ($elements as $keyVal) {
731 list($key, $val) = explode('=', $keyVal, 2);
735 if (array_key_exists('urlToSession', $arr)) {
736 $urlToSession = array();
738 $params = explode(';', $arr['urlToSession']);
740 foreach ($params as $keyVal) {
741 list($urlToSession[$count]['urlVar'],
742 $urlToSession[$count]['sessionVar'],
743 $urlToSession[$count]['type'],
744 $urlToSession[$count]['default']
745 ) = explode(':', $keyVal);
748 $arr['urlToSession'] = $urlToSession;