Skip to content

Instantly share code, notes, and snippets.

@bjmiller121
Created September 22, 2014 20:16
Show Gist options
  • Save bjmiller121/3d6cf18ceccc8de5c057 to your computer and use it in GitHub Desktop.
Save bjmiller121/3d6cf18ceccc8de5c057 to your computer and use it in GitHub Desktop.
drupal_match_path() example
// https://api.drupal.org/api/drupal/includes!path.inc/function/drupal_match_path/7
$alias = drupal_get_path_alias(current_path());
$urls = array(
'example/url',
'example/url/*',
);
$patterns = implode("\n", $urls);
if (drupal_match_path($alias, $patterns)) {
// Do something only on ther specified URL patterns
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment