function _coder_drush_is_option in Coder 6.2
Same name and namespace in other branches
- 5.2 coder.drush.inc \_coder_drush_is_option()
- 6 coder.drush.inc \_coder_drush_is_option()
8 calls to _coder_drush_is_option()
- coder_drush_review in ./
coder.drush.inc - coder_page_form in ./
coder.module - Implementation of hook_form().
- coder_print_drush_messages in ./
coder.drush.inc - do_coder_reviews in ./
coder.module - Perform batch coder reviews for multiple files.
- theme_coder in ./
coder.module - Format coder form and results.
4 string references to '_coder_drush_is_option'
- coder_page_form in ./
coder.module - Implementation of hook_form().
- do_coder_reviews in ./
coder.module - Perform batch coder reviews for multiple files.
- theme_coder in ./
coder.module - Format coder form and results.
- theme_coder_warning in ./
coder.module - Format a coder warning to be included in results.
File
- ./
coder.drush.inc, line 246 - Command line utility for coder.
Code
function _coder_drush_is_option($option) {
global $_coder_drush_options;
return isset($_coder_drush_options[$option]);
}