function theme_drupalapi in Coder 5
Same name and namespace in other branches
- 5.2 coder.module \theme_drupalapi()
- 6.2 coder.module \theme_drupalapi()
- 6 coder.module \theme_drupalapi()
- 7 coder_review/coder_review.module \theme_drupalapi()
45 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 1258 - 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 = 'HEAD') {
return l($function, "http://api.drupal.org/api/{$version}/function/{$function}");
}