![]() 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/app/code/Cnc/Cms/Setup/Patch/Data/ |
<?php // phpcs:disable Generic.Files.LineLength.TooLong /** * Copyright (c) 2019 Kaliop Digital Commerce (https://digitalcommerce.kaliop.com) All Rights Reserved. * https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) * cnc_cms_m2 * <[email protected]> */ declare(strict_types=1); namespace Cnc\Cms\Setup\Patch\Data; use Cnc\Cms\Setup\Patch\AbstractCmsDataPatch; use Cnc\Store\Model\Config as StoreConfig; use Magento\Framework\Setup\Patch\DataPatchInterface; class SetNoRoutePageContent extends AbstractCmsDataPatch implements DataPatchInterface { public static function getDependencies(): array { return []; } public function apply(): void { $this->createAndUpdatePages(); } public function getAliases(): array { return []; } /** * @return array */ protected function getPagesData(): array { if (!$this->pagesData) { $this->pagesData = [ [ 'title' => '[FR] - 404 - Page non trouvée', 'identifier' => 'no-route', 'is_active' => 1, 'stores' => [ $this->storeResolver->getDefaultStoreId(StoreConfig::STORE_CODE_FR_EU) ], 'sort_order' => 0, 'page_layout' => '1column', 'content' => '<div class="error-page-container"> <section class="error-page page-not-found"> <div class=" page-not-found__inner"> <h1 class=" page-not-found__title">Erreur <span class=" page-not-found--color">404</span></h1> <p class=" page-not-found__text"> Cette page n\'existe pas. </p> <a class=" page-not-found__link btn--pink" href="{{config path="web/secure/base_url"}}">Retour à la page d\'accueil.</a> </div> </section> </div>', ], [ 'title' => '[EN] - 404 - Page not found', 'identifier' => 'no-route-en', 'is_active' => 1, 'stores' => [ $this->storeResolver->getDefaultStoreId(StoreConfig::STORE_CODE_EN_EU), $this->storeResolver->getDefaultStoreId(StoreConfig::STORE_CODE_EN_GB), $this->storeResolver->getDefaultStoreId(StoreConfig::STORE_CODE_EN_US), ], 'sort_order' => 0, 'page_layout' => '1column', 'content' => '<div class="error-page-container"> <section class="error-page page-not-found"> <div class=" page-not-found__inner"> <h1 class=" page-not-found__title">Error <span class=" page-not-found--color">404</span></h1> <p class=" page-not-found__text"> This page doesn\'t exist. </p> <a class=" page-not-found__link btn--pink" href="{{config path="web/secure/base_url"}}">Back to homepage</a> </div> </section> </div>', ] ]; } return $this->pagesData; } }