function _coder_review_path in Coder 7.2
Returns the URL path to the coder_review module.
Return value
string The URL path to the coder_review module.
3 calls to _coder_review_path()
- coder_review_page_form in coder_review/
coder_review.module - Implements hook_form().
- theme_coder_review_warning in coder_review/
coder_review.common.inc - Returns HTML for a coder_review warning to be included in results.
- _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 1554 - Common functions used by both the drush and form interfaces.
Code
function _coder_review_path() {
return drupal_get_path('module', 'coder_review');
}