function _coder_reviews in Coder 6
Same name and namespace in other branches
- 5.2 coder.module \_coder_reviews()
- 5 coder.module \_coder_reviews()
- 6.2 coder.module \_coder_reviews()
Get all of the code review modules, including contributions.
4 calls to _coder_reviews()
- coder_drush_review in ./
coder.drush.inc - coder_help in ./
coder.module - Implementation of hook_help().
- coder_page_form in ./
coder.module - Implementation of hook_form().
- _coder_settings_form in ./
coder.module - Build settings form API array for coder.
File
- ./
coder.module, line 45 - 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 _coder_reviews() {
return module_invoke_all('reviews');
}