回答:
考えられるハックの1つは、年を動的に変更するのに役立ちます。
-> [管理]-> [一般]に移動し、[デザイン]-> [フッター]セクションを展開して、以下のコードを貼り付けます。
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()) ?>
...そして、フッター管理者で "{{year}}"著作権テキストを使用します。そうすれば、自動更新年とともにテキストを完全に制御できます。
このファイルに次のコンテンツを配置します。 {theme_dir}/Magento_Theme/templates/html/copyright.phtml
<small class="copyright">
<span>Copyright © You <?php echo date('Y') ?>, All Rights Reserved.</span>
</small>
次に、キャッシュをフラッシュします。
これを行う最善の方法は、のgetCopyrightメソッドでafterプラグインを作成すること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;
}
}
私はクリシュナ・イジャダの正規表現を年に合わせて借りました。また、これにより、著作権メッセージに現在の年が追加され、著作権が開始した年も表示されたままになります。
タイムゾーンを考える必要があります。これが私の答えです({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.
できた!