Get the path to a Drupal module or theme
Key words and phrases:
drupal get module path
path to theme
Description & Info:
This is a very useful function in Drupal's API that is hard to find searching online for file system paths to Drupal modules or themes or anything like that.
So to get the path to a Drupal module or theme it's as simple as:
<?php
drupal_get_path('module', $module_name);
?>or:
<?php
drupal_get_path('theme', $theme_name);
?>
Post new comment
