?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/schtroumpf.fr/modules/ps_mbo/src/Traits/



?? Go up: /home/webdevt/www/schtroumpf.fr/modules/ps_mbo/src

?? Viewing: HaveCdcComponent.php

<?php
/**
 * Copyright since 2007 PrestaShop SA and Contributors
 * PrestaShop is an International Registered Trademark & Property of PrestaShop SA
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Academic Free License version 3.0
 * that is bundled with this package in the file LICENSE.md.
 * It is also available through the world-wide-web at this URL:
 * https://opensource.org/licenses/AFL-3.0
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@prestashop.com so we can send you a copy immediately.
 *
 * @author    PrestaShop SA and Contributors <contact@prestashop.com>
 * @copyright Since 2007 PrestaShop SA and Contributors
 * @license   https://opensource.org/licenses/AFL-3.0 Academic Free License version 3.0
 */
declare(strict_types=1);

namespace PrestaShop\Module\Mbo\Traits;

use ToolsCore as Tools;

trait HaveCdcComponent
{
    public function loadCdcMediaFilesForControllers(array $controllers = [], array $additionalJs = [], array $additionalCss = []): void
    {
        if (in_array(Tools::getValue('controller'), $controllers)) {
            $this->context->controller->addJs($this->getPathUri() . 'views/js/cdc-error-templating.js');
            $this->context->controller->addCss($this->getPathUri() . 'views/css/cdc-error-templating.css');

            $cdcJsFile = getenv('MBO_CDC_URL');
            if (!is_string($cdcJsFile) || empty($cdcJsFile)) {
                $this->context->controller->addJs($this->getPathUri() . 'views/js/cdc-error.js');

                return;
            }

            $this->context->controller->addJs($cdcJsFile);

            foreach ($additionalJs as $jsPath) {
                $this->context->controller->addJs($jsPath);
            }
            foreach ($additionalCss as $cssPath) {
                $this->context->controller->addCSS($cssPath);
            }
        }
    }

    /**
     * @return false|string
     */
    public function smartyDisplayTpl(string $tpl, array $additionalParams = [])
    {
        try {
            /** @var \PrestaShop\Module\Mbo\Service\View\ContextBuilder $contextBuilder */
            $contextBuilder = $this->get('mbo.cdc.context_builder');
            /** @var \Symfony\Bundle\FrameworkBundle\Routing\Router $router */
            $router = $this->get('router');
        } catch (\Exception $e) {
            return false;
        }
        $this->context->smarty->assign(
            array_merge([
                'shop_context' => json_encode($contextBuilder->getViewContext()),
                'cdcErrorUrl' => $router->generate('admin_mbo_module_cdc_error'),
            ], $additionalParams)
        );

        return $this->display($this->name, $tpl);
    }
}


??

??