function _coder_review_file_path in Coder 7.2
Returns the file system path to the coder_review module.
Return value
string The file system path to the coder_review module.
3 calls to _coder_review_file_path()
- coder_review_reviews in coder_review/
coder_review.common.inc - Implements hook_reviews().
- coder_review_simpletest in coder_review/
coder_review.module - Implements hook_simpletest().
- _coder_review_modified in coder_review/
coder_review.common.inc - Determines most recent modification timestamp of key coder_review code files.
File
- coder_review/
coder_review.common.inc, line 1544 - Common functions used by both the drush and form interfaces.
Code
function _coder_review_file_path() {
return dirname(__FILE__);
}