function do_coder_review_grep in Coder 6.2
Same name and namespace in other branches
- 5.2 coder.module \do_coder_review_grep()
- 5 coder.module \do_coder_review_grep()
- 6 coder.module \do_coder_review_grep()
- 7.2 coder_review/coder_review.common.inc \do_coder_review_grep()
- 7 coder_review/coder_review.module \do_coder_review_grep()
Search for a string.
@note See do_coder_review_regex() for arguments.
1 call to do_coder_review_grep()
- do_coder_review in ./
coder.module - Perform code review for a review array.
File
- ./
coder.module, line 1729
Code
function do_coder_review_grep(&$coder_args, $review, $rule, $lines, &$results) {
if (isset($rule['#value'])) {
foreach ($lines as $lineno => $line_array) {
foreach ($line_array as $line) {
if (_coder_search_string($line, $rule)) {
$line = $coder_args['#all_lines'][$lineno];
$severity_name = _coder_severity_name($coder_args, $review, $rule);
_coder_error($results, $rule, $severity_name, $lineno, $line, $coder_args['#ignore_lines'][$review['#review_name']]);
}
}
}
}
}