!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-cli/i18n-command/src/   drwxr-xr-x
Free 708.37 GB of 879.6 GB (80.53%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     MapCodeExtractor.php (1.62 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace WP_CLI\I18n;

use Gettext\Extractors\JsCode;
use Gettext\Translations;
use Peast\Syntax\Exception as PeastException;
use WP_CLI;

final class MapCodeExtractor extends JsCode {
    use IterableCodeExtractor;

    public static $options = [
        'extractComments' => [ 'translators', 'Translators' ],
        'constants'       => [],
        'functions'       => [
            '__'  => 'text_domain',
            '_x'  => 'text_context_domain',
            '_n'  => 'single_plural_number_domain',
            '_nx' => 'single_plural_number_context_domain',
        ],
    ];

    /**
     * {@inheritdoc}
     */
    public static function fromString( $text, Translations $translations, array $options = [] ) {
        if ( ! array_key_exists( 'file', $options ) || substr( $options['file'], -7 ) !== '.js.map' ) {
            return;
        }
        $options['file'] = substr( $options['file'], 0, -7 ) . '.js';

        try {
            $options += self::$options;

            $map_object = json_decode( $text );

            if ( ! isset( $map_object->sourcesContent ) || ! is_array( $map_object->sourcesContent ) ) {
                return;
            }

            $text = implode( "\n", $map_object->sourcesContent );

            WP_CLI::debug( "Parsing file {$options['file']}", 'make-pot' );

            $functions = new JsFunctionsScanner( $text );

            $functions->enableCommentsExtraction( $options['extractComments'] );
            $functions->saveGettextFunctions( $translations, $options );
        } catch ( PeastException $e ) {
            WP_CLI::debug(
                sprintf(
                    'Could not parse file %1$s.map: %2$s (line %3$d, column %4$d in the concatenated sourcesContent)',
                    $options['file'],
                    $e->getMessage(),
                    $e->getPosition()->getLine(),
                    $e->getPosition()->getColumn()
                ),
                'make-pot'
            );
        }
    }
}

:: 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.2533 ]--