You are here

function _coder_drush_is_option in Coder 6

Same name and namespace in other branches
  1. 5.2 coder.drush.inc \_coder_drush_is_option()
  2. 6.2 coder.drush.inc \_coder_drush_is_option()
5 calls to _coder_drush_is_option()
coder_drush_review in ./coder.drush.inc
coder_page_form in ./coder.module
Implementation of hook_form().
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.
theme_drush_coder in ./coder.drush.inc
3 string references to '_coder_drush_is_option'
coder_page_form in ./coder.module
Implementation of hook_form().
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 145

Code

function _coder_drush_is_option($option) {
  global $_coder_drush_options;
  return isset($_coder_drush_options[$option]);
}