You are here

function theme_drupalapi in Coder 5.2

Same name and namespace in other branches
  1. 5 coder.module \theme_drupalapi()
  2. 6.2 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.

80 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 1579
Developer Module that assists with code review and version upgrade that supports a plug-in extensible hook system so contributed modules can define additional review standards.

Code

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