管理者のデフォルトのカテゴリツリーのように、フロントエンドにカテゴリツリーを表示したい。
フロントエンド側のカスタムモジュールとコンテンツ領域にカテゴリツリー構造を表示する必要があります。
任意のヘルプをいただければ幸いです。
ありがとう。
管理者のデフォルトのカテゴリツリーのように、フロントエンドにカテゴリツリーを表示したい。
フロントエンド側のカスタムモジュールとコンテンツ領域にカテゴリツリー構造を表示する必要があります。
任意のヘルプをいただければ幸いです。
ありがとう。
回答:
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を実行すると、以下のような出力が得られます。
これは、カテゴリツリーに基づいてメニューを生成するために使用するものです。簡単にするために、すべての私のカテゴリは、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>