Current path: home/webdevt/www/schtroumpf.fr/modules/ps_mbo/src/Traits/Hooks/
?? Go up: /home/webdevt/www/schtroumpf.fr/modules/ps_mbo/src/Traits
<?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\Hooks;
use Exception;
trait UseDisplayAdminThemesListAfter
{
/**
* Hook displayAdminThemesListAfter.
* Includes content just after the themes list.
*
* @param array $params
*
* @return string
*
* @throws Exception
*/
public function hookDisplayAdminThemesListAfter(array $params): string
{
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 '';
}
$context = $contextBuilder->getViewContext();
$context['recommendation_format'] = 'card';
$this->smarty->assign([
'shop_context' => json_encode($context),
'cdcErrorUrl' => $router->generate('admin_mbo_module_cdc_error'),
]);
return $this->fetch('module:ps_mbo/views/templates/hook/recommended-themes.tpl');
}
/**
* @return void
*
* @throws Exception
*/
public function bootUseDisplayAdminThemesListAfter(): void
{
if (method_exists($this, 'addAdminControllerMedia')) {
$this->addAdminControllerMedia('loadMediaAdminThemesListAfter');
}
}
/**
* Add JS and CSS file
*
* @see \PrestaShop\Module\Mbo\Traits\Hooks\UseActionAdminControllerSetMedia
*
* @return void
*/
protected function loadMediaAdminThemesListAfter(): void
{
if (\Tools::getValue('controller') === 'AdminThemes') {
$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 (false === $cdcJsFile || !is_string($cdcJsFile) || empty($cdcJsFile)) {
$this->context->controller->addJs($this->getPathUri() . 'views/js/cdc-error.js');
return;
}
$this->context->controller->addJs($cdcJsFile);
}
}
}