Magento 2:フロントエンドに管理カテゴリツリーを表示


10

管理者のデフォルトのカテゴリツリーのように、フロントエンドにカテゴリツリーを表示したい。

フロントエンド側のカスタムモジュールとコンテンツ領域にカテゴリツリー構造を表示する必要があります。

任意のヘルプをいただければ幸いです。

ありがとう。



カテゴリ名を表示するだけでなく、adminと同じようなツリーのカテゴリが必要です。
Suresh Chikani 2017年

参照してください:mage2.pro/t/topic/912それはあなたを助けるでしょう
Nikunj Vadariya

1
@nikunjVadariyaご提案ありがとうございます。確認させてください。
Suresh Chikani 2017年

回答:


4

1)Magento 2のルートディレクトリから「app」に移動し、新しいディレクトリコードを作成します。次に、app / codeに、名前空間とモジュール名の2つのディレクトリを作成します。最終的なディレクトリは、app / code / Demo / CategoryTreeのようになります。

デモとして名前空間CategoryTreeモジュール名として。

2)app / code / Demo / CategoryTree / etcに「module.xml」ファイルを作成し、以下のコードをファイルに貼り付けます。

<?xml version="1.0"?>
<!--
/**
 * Copyright © 2013-2017 Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
-->
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
    <module name="Demo_CategoryTree" setup_version="1.0.0">
        <sequence>
            <module name="Magento_Catalog"/>
        </sequence>
    </module>
</config>

3)app / code / Demo / CategoryTree / etc / frontendに「route.xml」ファイルを作成し、以下のコードをファイルに貼り付けます。

<?xml version="1.0"?>
<!--
/**
 * Copyright © 2013-2017 Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
-->
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:App/etc/routes.xsd">
    <router id="standard">
        <route id="categorytree" frontName="categorytree">
            <module name="Demo_CategoryTree" />
        </route>
    </router>
</config>

4)app / code / Demo / CategoryTreeに「registration.php」ファイルを作成し、以下のコードをファイルに貼り付けます。

<?php
/**
 * Copyright © 2013-2017 Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */

\Magento\Framework\Component\ComponentRegistrar::register(
    \Magento\Framework\Component\ComponentRegistrar::MODULE,
    'Demo_CategoryTree',
    __DIR__
);

5)app / code / Demo / CategoryTree / Controller / Indexに「Index.php」ファイルを作成し、以下のコードをファイルに貼り付けます。

<?php
/**
 *
 * Copyright © 2013-2017 Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
namespace Demo\CategoryTree\Controller\Index;

class Index extends \Magento\Framework\App\Action\Action
{
    /**
     * @var \Magento\Framework\View\Result\PageFactory $resultPageFactory
     */
    protected $resultPageFactory;

    /**
     * @param \Magento\Framework\App\Action\Context $context
     * @param \Magento\Framework\View\Result\PageFactory $resultPageFactory
     */
    public function __construct(
        \Magento\Framework\App\Action\Context $context,
        \Magento\Framework\View\Result\PageFactory $resultPageFactory
    ) {
        $this->resultPageFactory = $resultPageFactory;
        parent::__construct($context);
    }

    /**
     * Renders CATEGORYTREE Index page
     *
     * @param string|null $coreRoute
     * @return \Magento\Framework\Controller\Result\Forward
     * @SuppressWarnings(PHPMD.UnusedFormalParameter)
     */
    public function execute($coreRoute = null)
    {
        $resultPage =  $this->resultPageFactory->create();
        $resultPage->getConfig()->getTitle()->set(__('CategoryTree'));
        return $resultPage;
    }
}

6)app / code / Demo / CategoryTree / view / frontend / layoutに「categorytree_index_index.xml」ファイルを作成し、以下のコードをファイルに貼り付けます。

<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="2columns-left" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
    <update handle="styles"/>
    <head>
        <css src="extjs/resources/css/ext-all.css"/>
        <css src="extjs/resources/css/ytheme-magento.css"/>
    </head>
    <body>
        <referenceContainer name="sidebar.additional">
            <block class="Magento\Catalog\Block\Adminhtml\Category\Tree" name="category.tree" template="Demo_CategoryTree::catalog/category/tree.phtml"/>
        </referenceContainer>
    </body>
</page>

7)vendor / magento / module-catalog / view / adminhtml / templates / catalog / category / tree.phtmlからapp / code / Demo / CategoryTree / view / frontend / templates / catalog / categoryにコピーします

8)app / code / Demo / CategoryTree / view / frontendに「requirejs-config.js」ファイルを作成し、以下のコードをファイルに貼り付けます。

var config = {
    "shim": {
        "extjs/ext-tree": [
            "prototype"
        ],
        "extjs/ext-tree-checkbox": [
            "extjs/ext-tree",
            "extjs/defaults"
        ]
    }
};

9)ルートディレクトリで以下のコマンドを実行します。

php bin/magento setup:upgrade
php bin/magento cache:clean
php bin/magento cache:flush
php bin/magento setup:static-content:deploy

10)この「http://local-magento.com/categorytree/index/index」のようなurlを実行すると、以下のような出力が得られます。

ここに画像の説明を入力してください



1

これは、カテゴリツリーに基づいてメニューを生成するために使用するものです。簡単にするために、すべての私のカテゴリは、Magento2の新規インストールに付属するID2のデフォルトカテゴリの下に保存されていることに注意してください。この構造がない場合$soncatsは、代わりにループするカテゴリのIDの配列として定義することもできます。

<ul id="nav" class="accordion vertnav vertnav-top grid-full wide">
    <?php
$fathercat = $objectManager->create('Magento\Catalog\Model\Category')->load(2); //this is my master root category, holds all other categories so I can loop through.
$soncats = $fathercat->getChildrenCategories(); 
$catids = array(2); 
foreach ($soncats as $soncat) {
    $categoryid = $soncat->getId();
    array_push($catids,$categoryid);
}
for($i = 1; $i < count($catids); ++$i) { 
    $basic = 1;
    $catId = $catids[$i];
    $subcategory = $objectManager->create('Magento\Catalog\Model\Category')->load($catId);
    $subcats = $subcategory->getChildrenCategories();
    $categoryname = $subcategory->getName(); 
    $categoryurl = $subcategory->getUrl(); ?>
    <li class="level0 nav-<?php echo $i;?> level-top parent"><a href="<?php echo $categoryurl ?>" class="level-top"><?php echo $categoryname; ?><span class="caret"> </span> </a><span class="opener"> </span>
        <div class="level0-wrapper dropdown-6col" style="left: 0;">
            <div class="level0-wrapper2">
                <ul class="level0 part">
                    <?php
                    foreach ($subcats as $subcat) { 
                        if ($subcat->getIsActive()) {
                            $subcat_url = $subcat->getUrl(); 
                            $subcat_name = $subcat->getName(); ?>
                            <li class="level1 nav-1-<?php echo $basic;?> item"><a href="<?php echo $subcat_url ?>"><?php echo $subcat_name; ?></a></li>
                            <?php
                        } $basic++; } ?>
                    </ul>
                </div>
            </div>
        </div>
    </li>
    <?php } ?>
</ul>

こんにちはジョン、あなたは未定義の変数$ addedqを持っているようです。
Purushotam Sangroula 2018年

こんにちはアニメ、それを見つけてくれてありがとう、addedqは以前に定義された別の変数であり、問​​題の私のプロジェクトに関連しています。コードが機能する必要はありません
John

このコードは子のサブカテゴリを表示しません
HaFiz Umer

@HaFizUmerというのはおかしいのでおかしいですが、Magento 2.0向けなので驚かないでしょう。Magento 2.1+の変更/書き換えが必要になる場合があります
John
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.