Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. OptionsTSniff.php

class OptionsTSniff

Checks that values in #options form arrays are translated.

@category PHP @package PHP_CodeSniffer @link http://pear.php.net/package/PHP_CodeSniffer

Hierarchy

  • class \DrupalPractice\Sniffs\General\OptionsTSniff implements \PHP_CodeSniffer\Sniffs\Sniff

Expanded class hierarchy of OptionsTSniff

File

vendor/drupal/coder/coder_sniffer/DrupalPractice/Sniffs/General/OptionsTSniff.php, line 22

Namespace

DrupalPractice\Sniffs\General
View source
class OptionsTSniff implements Sniff {
    
    /**
     * Returns an array of tokens this test wants to listen for.
     *
     * @return array<int|string>
     */
    public function register() {
        return [
            T_CONSTANT_ENCAPSED_STRING,
        ];
    }
    
    //end register()
    
    /**
     * Processes this test, when one of its tokens is encountered.
     *
     * @param \PHP_CodeSniffer\Files\File $phpcsFile The file being scanned.
     * @param int                         $stackPtr  The position of the function
     *                                               name in the stack.
     *
     * @return void
     */
    public function process(File $phpcsFile, $stackPtr) {
        // Look for the string "#options".
        $tokens = $phpcsFile->getTokens();
        if ($tokens[$stackPtr]['content'] !== '"#options"' && $tokens[$stackPtr]['content'] !== "'#options'") {
            return;
        }
        // Look for an opening array pattern that starts to define #options
        // values.
        $statementEnd = $phpcsFile->findNext(T_SEMICOLON, $stackPtr + 1);
        $arrayString = $phpcsFile->getTokensAsString($stackPtr + 1, $statementEnd - $stackPtr);
        // Cut out all the white space.
        $arrayString = preg_replace('/\\s+/', '', $arrayString);
        if (strpos($arrayString, '=>array(') !== 0 && strpos($arrayString, ']=array(') !== 0 && strpos($arrayString, '=>[') !== 0 && strpos($arrayString, ']=[') !== 0) {
            return;
        }
        // We only search within the #options array.
        $arrayToken = $phpcsFile->findNext([
            T_ARRAY,
            T_OPEN_SHORT_ARRAY,
        ], $stackPtr + 1);
        $nestedParenthesis = [];
        if (isset($tokens[$arrayToken]['nested_parenthesis']) === true) {
            $nestedParenthesis = $tokens[$arrayToken]['nested_parenthesis'];
        }
        if ($tokens[$arrayToken]['code'] === T_ARRAY) {
            $statementEnd = $tokens[$arrayToken]['parenthesis_closer'];
            $nestedParenthesis[$tokens[$arrayToken]['parenthesis_opener']] = $tokens[$arrayToken]['parenthesis_closer'];
        }
        else {
            $statementEnd = $tokens[$arrayToken]['bracket_closer'];
        }
        // We want to find if the element "#options" belongs to a form element.
        // Array with selectable options for a form element.
        $formElements = [
            "'checkboxes'",
            "'radios'",
            "'select'",
            "'tableselect'",
        ];
        // Find beginning of the array containing "#options" element.
        $startArray = $phpcsFile->findStartOfStatement($stackPtr, [
            T_DOUBLE_ARROW,
            T_OPEN_SHORT_ARRAY,
            T_OPEN_PARENTHESIS,
            T_COMMA,
        ]);
        // Find next element on array of "#type".
        $findType = $phpcsFile->findNext(T_CONSTANT_ENCAPSED_STRING, $startArray + 1, $statementEnd, false, "'#type'");
        // Stop checking the array if its #type cannot be determined.
        if ($findType === false) {
            return;
        }
        // Get the value of "#type".
        $valueType = $phpcsFile->findNext(T_CONSTANT_ENCAPSED_STRING, $findType + 1, null, false);
        // Go through the array by examining stuff after "=>".
        $arrow = $phpcsFile->findNext(T_DOUBLE_ARROW, $arrayToken + 1, $statementEnd, false, null, true);
        while ($arrow !== false) {
            $arrayValue = $phpcsFile->findNext(T_WHITESPACE, $arrow + 1, $statementEnd, true);
            $valueNestedParenthesis = [];
            if (isset($tokens[$arrayValue]['nested_parenthesis']) === true) {
                $valueNestedParenthesis = $tokens[$arrayValue]['nested_parenthesis'];
            }
            // We are only interested in string literals that are not numbers
            // and more than 3 characters long.
            if ($tokens[$arrayValue]['code'] === T_CONSTANT_ENCAPSED_STRING && is_numeric(substr($tokens[$arrayValue]['content'], 1, -1)) === false && strlen($tokens[$arrayValue]['content']) > 5 && in_array($tokens[$valueType]['content'], $formElements) === true && $valueNestedParenthesis === $nestedParenthesis) {
                // We need to make sure that the string is the one and only part
                // of the array value.
                $afterValue = $phpcsFile->findNext(T_WHITESPACE, $arrayValue + 1, $statementEnd, true);
                if ($tokens[$afterValue]['code'] === T_COMMA || $tokens[$afterValue]['code'] === T_CLOSE_PARENTHESIS) {
                    $warning = '#options values usually have to run through t() for translation';
                    // cspell:ignore TforValue
                    $phpcsFile->addWarning($warning, $arrayValue, 'TforValue');
                }
            }
            $arrow = $phpcsFile->findNext(T_DOUBLE_ARROW, $arrow + 1, $statementEnd, false, null, true);
        }
        
        //end while
    }
    
    //end process()

}

Members

Title Sort descending Modifiers Object type Summary Overriden Title
OptionsTSniff::process public function Processes this test, when one of its tokens is encountered. Overrides Sniff::process
OptionsTSniff::register public function Returns an array of tokens this test wants to listen for. Overrides Sniff::register
RSS feed
Powered by Drupal