Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/old/vendor/magento/framework/Phrase/Renderer/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/old/vendor/magento/framework/Phrase/Renderer/Translate.php
<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
namespace Magento\Framework\Phrase\Renderer;

use Magento\Framework\Phrase\RendererInterface;
use Magento\Framework\TranslateInterface;
use Psr\Log\LoggerInterface;

/**
 * Translate Phrase renderer
 */
class Translate implements RendererInterface
{
    /**
     * @var TranslateInterface
     */
    protected $translator;

    /**
     * @var LoggerInterface
     */
    protected $logger;

    /**
     * @var MessageFormatter
     */
    private $messageFormatter;

    /**
     * Renderer construct
     *
     * @param TranslateInterface $translator
     * @param LoggerInterface $logger
     * @param MessageFormatter $messageFormatter
     */
    public function __construct(
        TranslateInterface $translator,
        LoggerInterface $logger,
        MessageFormatter $messageFormatter
    ) {
        $this->translator = $translator;
        $this->logger = $logger;
        $this->messageFormatter = $messageFormatter;
    }

    /**
     * Render source text
     *
     * @param [] $source
     * @param [] $arguments
     * @return string
     * @throws \Exception
     * @SuppressWarnings(PHPMD.UnusedFormalParameter)
     */
    public function render(array $source, array $arguments)
    {
        $text = end($source);
        /* If phrase contains escaped quotes then use translation for phrase with non-escaped quote */
        $text = strtr($text, ['\"' => '"', "\\'" => "'"]);

        try {
            $data = $this->translator->getData();
        } catch (\Exception $e) {
            $this->logger->critical($e->getMessage());
            throw $e;
        }

        $source[] = array_key_exists($text, $data) ? $data[$text] : end($source);

        return $this->messageFormatter->render($source, $arguments);
    }
}

Spamworldpro Mini