คำตอบ:
การแฮ็คหนึ่งครั้งที่เป็นไปได้สามารถช่วยเราในการปรับเปลี่ยนปีแบบไดนามิก
ไปที่ -> ผู้ดูแลระบบ -> ทั่วไปเลือกการออกแบบ -> ขยายส่วนท้ายกระดาษและวางรหัสด้านล่าง
Copyright © <script>document.write(new Date().getFullYear())</script> Magento. All rights reserved.
ลบแคชและตรวจสอบ
วางเนื้อหาต่อไปนี้ในไฟล์นี้:
{theme_dir}/Magento_Theme/templates/html/copyright.phtml
<?php /* @escapeNotVerified */ echo preg_replace('/(^|\s)(\d{4})(\s|$)/m', " ".date('Y'). " ", $block->getCopyright()); ?>
<?= /* @escapeNotVerified */ str_ireplace('{{year}}', date('Y'), $block->getCopyright()) ?>
... และจากนั้นใช้ข้อความลิขสิทธิ์ "{{ปี}}" ในส่วนท้ายของผู้ดูแลระบบ ด้วยวิธีนี้ฉันสามารถควบคุมข้อความได้อย่างเต็มที่พร้อมกับปีที่อัปเดตอัตโนมัติ
วางเนื้อหาต่อไปนี้ในไฟล์นี้: {theme_dir}/Magento_Theme/templates/html/copyright.phtml
<small class="copyright">
<span>Copyright © You <?php echo date('Y') ?>, All Rights Reserved.</span>
</small>
จากนั้นล้างแคช
วิธีที่ดีที่สุดในการทำเช่นนี้คือการสร้างปลั๊กอินหลังจากบนวิธี getCopyright Magento\Theme\Block\Html\Footer
ระบบ ไม่ใช่วิธีปฏิบัติที่ดีในการเพิ่มตรรกะในแม่แบบ
เพิ่มสิ่งต่อไปนี้ในโมดูลที่กำหนดเองในetc/frontend/di.xml
ไฟล์
<?xml version="1.0" encoding="UTF-8"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
<type name="Magento\Theme\Block\Html\Footer">
<plugin name="Vendor_Module::UpdateCopyrightWithCurrentYear" type="Vendor\Module\Plugin\Theme\Block\Html\Footer\UpdateCopyrightWithCurrentYear" />
</type>
</config>
สร้างPlugin/Theme/Block/Html/Footer/UpdateCopyrightWithCurrentYear.php
ภายในโมดูลของคุณ:
<?php
namespace Vendor\Module\Plugin\Theme\Block\Html\Footer;
use Magento\Theme\Block\Html\Footer;
class UpdateCopyrightWithCurrentYear
{
/**
* @param Footer $subject
* @param string $result
* @return string $result
*/
public function afterGetCopyright(Footer $subject, $result)
{
$result = preg_replace_callback(
'/(^|\s)(\d{4})(\s|$)/m',
function($matches) {
return $matches[2] != date('Y')?$matches[1] . $matches[2].' - '.date('Y') . $matches[3]:$matches[0];
},
$result);
return $result;
}
}
ฉันยืม regex ของกฤษณะ ijjada เพื่อให้ตรงกับปี นอกจากนี้ยังเพิ่มปีปัจจุบันในข้อความลิขสิทธิ์เพื่อให้ปีที่เริ่มต้นลิขสิทธิ์ยังคงปรากฏให้เห็น
จำเป็นต้องคิดถึงเขตเวลานี่คือคำตอบของฉัน ( {theme_dir}/Magento_Theme/templates/html/copyright.phtml
):
<?php
/* @var $block \Magento\Theme\Block\Html\Footer */
use Magento\Framework\App\ObjectManager;
use Magento\Framework\Stdlib\DateTime\TimezoneInterface;
$year = ObjectManager::getInstance()->get( TimezoneInterface::class )->date()->format( 'Y' );
?>
<small class="copyright">
<span><?= /* @escapeNotVerified */ $block->escapeHtml( __( 'Copyright © %1 xxx.', $year ) ) ?></span>
</small>
ฉันจะทำยังไง เขียนทับcopyright.phtml
:
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
?>
<small class="copyright">
<span><?= /* @escapeNotVerified */ str_replace ( '{{year}}', date('Y'), $block->getCopyright()) ?></span>
</small>
จากนั้นไปที่Content->Design->Configuration
เลือกธีมEdit->footer->copyright
เพิ่มสิ่งนี้:
Copyright © {{year}} Magento. All rights reserved.
ทำ!