public function MessageTSniff::processFunctionCall in Coder 8.2
Same name and namespace in other branches
- 8.3 coder_sniffer/DrupalPractice/Sniffs/FunctionCalls/MessageTSniff.php \DrupalPractice\Sniffs\FunctionCalls\MessageTSniff::processFunctionCall()
- 8.3.x coder_sniffer/DrupalPractice/Sniffs/FunctionCalls/MessageTSniff.php \DrupalPractice\Sniffs\FunctionCalls\MessageTSniff::processFunctionCall()
Processes this function call.
Parameters
\PHP_CodeSniffer\Files\File $phpcsFile The file being scanned.:
int $stackPtr The position of the function call in: the stack.
int $openBracket The position of the opening: parenthesis in the stack.
int $closeBracket The position of the closing: parenthesis in the stack.
Return value
void
File
- coder_sniffer/
DrupalPractice/ Sniffs/ FunctionCalls/ MessageTSniff.php, line 51
Class
- MessageTSniff
- Verifies that messages passed to drupal_set_message() run through t().
Namespace
DrupalPractice\Sniffs\FunctionCallsCode
public function processFunctionCall(File $phpcsFile, $stackPtr, $openBracket, $closeBracket) {
$tokens = $phpcsFile
->getTokens();
$argument = $this
->getArgument(1);
if ($argument !== false && $tokens[$argument['start']]['code'] === T_CONSTANT_ENCAPSED_STRING) {
$warning = 'Messages are user facing text and must run through t() for translation';
$phpcsFile
->addWarning($warning, $argument['start'], 'ErrorMessage');
}
}