You are here

function advanced_forum_path_to_images in Advanced Forum 5

Same name and namespace in other branches
  1. 6 advanced_forum.module \advanced_forum_path_to_images()

Returns the path to the advanced forum image directory

4 calls to advanced_forum_path_to_images()
advanced_forum_preprocess_comment in ./advanced_forum.module
Preprocesses template variables for the comment template.
advanced_forum_preprocess_forum_icon in ./advanced_forum.module
Preprocesses template variables for the forum icon template.
advanced_forum_preprocess_node in ./advanced_forum.module
Preprocesses template variables for the node template.
advanced_forum_theme_image in ./advanced_forum.module
Wrapper around theme_image that automatically includes the path.

File

./advanced_forum.module, line 1158
Enables the look and feel of other popular forum software.

Code

function advanced_forum_path_to_images() {
  static $image_path;
  if (!$image_path) {
    $image_path = advanced_forum_path_to_style() . '/images';
  }
  return $image_path;
}