Community Documentation

path_to_theme

5 theme.inc path_to_theme()
6 theme.inc path_to_theme()
7 theme.inc path_to_theme()
8 theme.inc path_to_theme()

Return the path to the current themed element.

It can point to the active theme or the module handling a themed implementation. For example, when invoked within the scope of a theming call it will depend on where the theming function is handled. If implemented from a module, it will point to the module. If implemented from the active theme, it will point to the active theme. When called outside the scope of a theming call, it will always point to the active theme.

▾ 2 functions call path_to_theme()

phptemplate_get_ie_styles in themes/garland/template.php
Generates IE CSS links for LTR and RTL languages.
template_preprocess in includes/theme.inc
Adds a default set of helper variables for preprocess functions and templates. This comes in before any other preprocess function which makes it possible to be used in default theme implementations (non-overriden theme functions).

File

includes/theme.inc, line 786
The theme system, which controls the output of Drupal.

Code

<?php
function path_to_theme() {
  global $theme_path;

  if (!isset($theme_path)) {
    init_theme();
  }

  return $theme_path;
}
?>

Comments

Other modules/themes

To get the path to another module or theme, use drupal_get_path().

Example usage: <img

Example usage:

<img src="/<?php print path_to_theme(); ?>/img/whatever.png"  />

path_to_theme() will return something similar to:

sites/yoursite.com/themes/yourtheme

You will need to include leading and trailing slashes in the case of the above example.

Login or register to post comments