On this page
function drupal_valid_path
drupal_valid_path($path, $dynamic_allowed = FALSE)
Checks a path exists and the current user has access to it.
Parameters
$path: The path to check.
$dynamic_allowed: Whether paths with menu wildcards (like user/%) should be allowed.
Return value
TRUE if it is a valid path AND the current user has access permission, FALSE otherwise.
File
- includes/path.inc, line 554
- Functions to handle paths in Drupal, including path aliasing.
Code
function drupal_valid_path($path, $dynamic_allowed = FALSE) {
global $menu_admin;
// We indicate that a menu administrator is running the menu access check.
$menu_admin = TRUE;
if ($path == '<front>' || url_is_external($path)) {
$item = array('access' => TRUE);
}
elseif ($dynamic_allowed && preg_match('/\/\%/', $path)) {
// Path is dynamic (ie 'user/%'), so check directly against menu_router table.
if ($item = db_query("SELECT * FROM {menu_router} where path = :path", array(':path' => $path))->fetchAssoc()) {
$item['link_path'] = $item['path'];
$item['link_title'] = $item['title'];
$item['external'] = FALSE;
$item['options'] = '';
_menu_link_translate($item);
}
}
else {
$item = menu_get_item($path);
}
$menu_admin = FALSE;
return $item && $item['access'];
}
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/includes!path.inc/function/drupal_valid_path/7.x