function theme_drupalapi in Coder 6
Same name and namespace in other branches
- 5.2 coder.module \theme_drupalapi()
- 5 coder.module \theme_drupalapi()
- 6.2 coder.module \theme_drupalapi()
- 7 coder_review/coder_review.module \theme_drupalapi()
Format link to Drupal API.
Parameters
$function: Function to link to.
$version: Version to link to.
93 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
File
- ./
coder.module, line 1818 - 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}");
}