function _coder_drush_set_option in Coder 6
Same name and namespace in other branches
- 5.2 coder.drush.inc \_coder_drush_set_option()
- 6.2 coder.drush.inc \_coder_drush_set_option()
1 call to _coder_drush_set_option()
File
- ./
coder.drush.inc, line 137
Code
function _coder_drush_set_option($option) {
global $_coder_drush_options;
if (!isset($_coder_drush_options)) {
$_coder_drush_options = array();
}
$_coder_drush_options[$option] = TRUE;
}