function _coder_review_php_ext in Coder 7.2
Return the valid PHP extensions.
4 calls to _coder_review_php_ext()
- coder_review_page_form in coder_review/
coder_review.module - Implements hook_form().
- drush_coder_review in coder_review/
coder_review.drush.inc - Performs the actual review for drush.
- _coder_review_page_form_includes in coder_review/
coder_review.module - Adds results to form definition for display on the coder review page.
- _coder_review_settings_form in coder_review/
coder_review.module - Form constructor: Builds settings form API array for coder_review.
File
- coder_review/
coder_review.common.inc, line 1474 - Common functions used by both the drush and form interfaces.
Code
function _coder_review_php_ext() {
return _variable_get('coder_review_php_ext', array(
'inc',
'php',
'install',
'test',
));
}