You are here

function theme_drupalapi in Coder 6.2

Same name and namespace in other branches
  1. 5.2 coder.module \theme_drupalapi()
  2. 5 coder.module \theme_drupalapi()
  3. 6 coder.module \theme_drupalapi()
  4. 7 coder_review/coder_review.module \theme_drupalapi()

Format link to Drupal API.

Parameters

$function: Function to link to.

$version: Version to link to.

109 theme calls to theme_drupalapi()
_coder_47_array2object_warning in includes/coder_47.inc
_coder_47_conf_url_rewrite_warning in includes/coder_47.inc
_coder_47_file_directory_path_warning in includes/coder_47.inc
_coder_47_file_directory_temp_warning in includes/coder_47.inc
_coder_47_format_name_warning in includes/coder_47.inc

... See full list

File

./coder.module, line 2054

Code

function theme_drupalapi($function, $version = '') {
  return l($function, "http://api.drupal.org/api/function/{$function}/{$version}");
}