How to add multi-select category tree at admin end in magento 2?Magento 2 : Selected categories are not visible in edit formMagento 2 : Show admin category tree on frontendHow to get category tree in Magento 2?Magento 2 Add Category Tree Renderer Input With Modal Buttonhow to add Category tree structure like product edit/add in custom moduleMagento 2 - Add tree category selector on backend moduleUnit Test for overwrite collection class in magento2How to add filtering to custom table field column in Customers admin grid in Magento2?Magento 2: How to override newsletter Subscriber modelWhy Getting categories and names on product view page Magento 2 fails?Magento 2.1 Create a filter in the product grid by new attributeMagento 2 Add new field to Magento_User admin formMagento 2 Custom Module admin form category treeTwo categories are loading every available product in categoryMagento 2.3 Can't view module's front end page output?Magento 2 How to remove price filter from category if module is enable?

Check if a string is entirely made of the same substring

"Whatever a Russian does, they end up making the Kalashnikov gun"? Are there any similar proverbs in English?

Why is the underscore command _ useful?

All ASCII characters with a given bit count

Could moose/elk survive in the Amazon forest?

What was Apollo 13's "Little Jolt" after MECO?

Multiple options vs single option UI

Can a stored procedure reference the database in which it is stored?

Why did C use the -> operator instead of reusing the . operator?

Restricting the options of a lookup field, based on the value of another lookup field?

Philosophical question on logistic regression: why isn't the optimal threshold value trained?

How do I deal with a coworker that keeps asking to make small superficial changes to a report, and it is seriously triggering my anxiety?

"My boss was furious with me and I have been fired" vs. "My boss was furious with me and I was fired"

Do I need to watch Ant-Man and the Wasp and Captain Marvel before watching Avengers: Endgame?

How do I check if a string is entirely made of the same substring?

Negative Resistance

Creating a chemical industry from a medieval tech level without petroleum

Nails holding drywall

What makes accurate emulation of old systems a difficult task?

A strange hotel

Contradiction proof for inequality of P and NP?

How much of a wave function must reside inside event horizon for it to be consumed by the black hole?

Where was the County of Thurn und Taxis located?

My bank got bought out, am I now going to have to start filing tax returns in a different state?



How to add multi-select category tree at admin end in magento 2?


Magento 2 : Selected categories are not visible in edit formMagento 2 : Show admin category tree on frontendHow to get category tree in Magento 2?Magento 2 Add Category Tree Renderer Input With Modal Buttonhow to add Category tree structure like product edit/add in custom moduleMagento 2 - Add tree category selector on backend moduleUnit Test for overwrite collection class in magento2How to add filtering to custom table field column in Customers admin grid in Magento2?Magento 2: How to override newsletter Subscriber modelWhy Getting categories and names on product view page Magento 2 fails?Magento 2.1 Create a filter in the product grid by new attributeMagento 2 Add new field to Magento_User admin formMagento 2 Custom Module admin form category treeTwo categories are loading every available product in categoryMagento 2.3 Can't view module's front end page output?Magento 2 How to remove price filter from category if module is enable?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








3















I would like to display *Category Tree Names** in multi select field in magento 2 admin end?



I have tried with below code but displaying only first cateogires could you please any one help on this?



$field = $fieldset->addField(
'wp_test',
'multiselect',
[
'name' => 'wp_test',
'label' => __("Test"),
'values' => $categorylistsource->toOptionArray(),
'value' => $this->_getTest(),
'title' => __('Test.'),
'note' => __('Test')

]
);



HelloConfigurableSkuModelConfigSource




<?php
/**

@copyright Copyright
*/
namespace HelloConfigurableSkuModelConfigSource;

use MagentoFrameworkOptionArrayInterface;

class Categorylist implements ArrayInterface

protected $_categoryFactory;
protected $_categoryCollectionFactory;

public function __construct(
MagentoCatalogModelCategoryFactory $categoryFactory,
MagentoCatalogModelResourceModelCategoryCollectionFactory $categoryCollectionFactory
)

$this->_categoryFactory = $categoryFactory;
$this->_categoryCollectionFactory = $categoryCollectionFactory;


public function getCategoryCollection($isActive = true, $level = false, $sortBy = false, $pageSize = false)

$collection = $this->_categoryCollectionFactory->create();
$collection->addAttributeToSelect('*');

// select only active categories
if ($isActive)
$collection->addIsActiveFilter();


// select categories of certain level
if ($level)
$collection->addLevelFilter($level);


// sort categories by some value
if ($sortBy)
$collection->addOrderField($sortBy);


// select certain number of categories
if ($pageSize)
$collection->setPageSize($pageSize);


return $collection;


public function toOptionArray()

$arr = $this->_toArray();
$ret = [];

foreach ($arr as $key => $value)

$ret[] = [
'value' => $key,
'label' => $value
];


return $ret;


private function _toArray()

$categories = $this->getCategoryCollection(true, false, false, false);

$catagoryList = array();
foreach ($categories as $category)

$catagoryList[$category->getEntityId()] = __($this->_getParentName($category->getPath()) . $category->getName());


return $catagoryList;


private function _getParentName($path = '')

$parentName = '';
$rootCats = array(1,2);

$catTree = explode("/", $path);
// Deleting category itself
array_pop($catTree);

if($catTree && (count($catTree) > count($rootCats)))

foreach ($catTree as $catId)

if(!in_array($catId, $rootCats))

$category = $this->_categoryFactory->create()->load($catId);
$categoryName = $category->getName();
$parentName .= $categoryName . ' -> ';




return $parentName;




But As per the above logic displaying only single line but i need to display like tree as mentioned below screenshot. how to achieve?



OUT PUT I WANT:-
enter image description here










share|improve this question
























  • Did you try with this one? magento.stackexchange.com/a/148556/33057

    – Khoa TruongDinh
    Nov 8 '18 at 7:41











  • yes @KhoaTruongDinh but no luck

    – Nagaraju Kasa
    Nov 8 '18 at 8:25











  • Did you try with some code lines? Could you post here?

    – Khoa TruongDinh
    Nov 8 '18 at 8:30











  • Sure I will update the same

    – Nagaraju Kasa
    Nov 8 '18 at 8:30






  • 1





    Good answer! I applied it in my project.

    – Andrada
    5 hours ago

















3















I would like to display *Category Tree Names** in multi select field in magento 2 admin end?



I have tried with below code but displaying only first cateogires could you please any one help on this?



$field = $fieldset->addField(
'wp_test',
'multiselect',
[
'name' => 'wp_test',
'label' => __("Test"),
'values' => $categorylistsource->toOptionArray(),
'value' => $this->_getTest(),
'title' => __('Test.'),
'note' => __('Test')

]
);



HelloConfigurableSkuModelConfigSource




<?php
/**

@copyright Copyright
*/
namespace HelloConfigurableSkuModelConfigSource;

use MagentoFrameworkOptionArrayInterface;

class Categorylist implements ArrayInterface

protected $_categoryFactory;
protected $_categoryCollectionFactory;

public function __construct(
MagentoCatalogModelCategoryFactory $categoryFactory,
MagentoCatalogModelResourceModelCategoryCollectionFactory $categoryCollectionFactory
)

$this->_categoryFactory = $categoryFactory;
$this->_categoryCollectionFactory = $categoryCollectionFactory;


public function getCategoryCollection($isActive = true, $level = false, $sortBy = false, $pageSize = false)

$collection = $this->_categoryCollectionFactory->create();
$collection->addAttributeToSelect('*');

// select only active categories
if ($isActive)
$collection->addIsActiveFilter();


// select categories of certain level
if ($level)
$collection->addLevelFilter($level);


// sort categories by some value
if ($sortBy)
$collection->addOrderField($sortBy);


// select certain number of categories
if ($pageSize)
$collection->setPageSize($pageSize);


return $collection;


public function toOptionArray()

$arr = $this->_toArray();
$ret = [];

foreach ($arr as $key => $value)

$ret[] = [
'value' => $key,
'label' => $value
];


return $ret;


private function _toArray()

$categories = $this->getCategoryCollection(true, false, false, false);

$catagoryList = array();
foreach ($categories as $category)

$catagoryList[$category->getEntityId()] = __($this->_getParentName($category->getPath()) . $category->getName());


return $catagoryList;


private function _getParentName($path = '')

$parentName = '';
$rootCats = array(1,2);

$catTree = explode("/", $path);
// Deleting category itself
array_pop($catTree);

if($catTree && (count($catTree) > count($rootCats)))

foreach ($catTree as $catId)

if(!in_array($catId, $rootCats))

$category = $this->_categoryFactory->create()->load($catId);
$categoryName = $category->getName();
$parentName .= $categoryName . ' -> ';




return $parentName;




But As per the above logic displaying only single line but i need to display like tree as mentioned below screenshot. how to achieve?



OUT PUT I WANT:-
enter image description here










share|improve this question
























  • Did you try with this one? magento.stackexchange.com/a/148556/33057

    – Khoa TruongDinh
    Nov 8 '18 at 7:41











  • yes @KhoaTruongDinh but no luck

    – Nagaraju Kasa
    Nov 8 '18 at 8:25











  • Did you try with some code lines? Could you post here?

    – Khoa TruongDinh
    Nov 8 '18 at 8:30











  • Sure I will update the same

    – Nagaraju Kasa
    Nov 8 '18 at 8:30






  • 1





    Good answer! I applied it in my project.

    – Andrada
    5 hours ago













3












3








3


1






I would like to display *Category Tree Names** in multi select field in magento 2 admin end?



I have tried with below code but displaying only first cateogires could you please any one help on this?



$field = $fieldset->addField(
'wp_test',
'multiselect',
[
'name' => 'wp_test',
'label' => __("Test"),
'values' => $categorylistsource->toOptionArray(),
'value' => $this->_getTest(),
'title' => __('Test.'),
'note' => __('Test')

]
);



HelloConfigurableSkuModelConfigSource




<?php
/**

@copyright Copyright
*/
namespace HelloConfigurableSkuModelConfigSource;

use MagentoFrameworkOptionArrayInterface;

class Categorylist implements ArrayInterface

protected $_categoryFactory;
protected $_categoryCollectionFactory;

public function __construct(
MagentoCatalogModelCategoryFactory $categoryFactory,
MagentoCatalogModelResourceModelCategoryCollectionFactory $categoryCollectionFactory
)

$this->_categoryFactory = $categoryFactory;
$this->_categoryCollectionFactory = $categoryCollectionFactory;


public function getCategoryCollection($isActive = true, $level = false, $sortBy = false, $pageSize = false)

$collection = $this->_categoryCollectionFactory->create();
$collection->addAttributeToSelect('*');

// select only active categories
if ($isActive)
$collection->addIsActiveFilter();


// select categories of certain level
if ($level)
$collection->addLevelFilter($level);


// sort categories by some value
if ($sortBy)
$collection->addOrderField($sortBy);


// select certain number of categories
if ($pageSize)
$collection->setPageSize($pageSize);


return $collection;


public function toOptionArray()

$arr = $this->_toArray();
$ret = [];

foreach ($arr as $key => $value)

$ret[] = [
'value' => $key,
'label' => $value
];


return $ret;


private function _toArray()

$categories = $this->getCategoryCollection(true, false, false, false);

$catagoryList = array();
foreach ($categories as $category)

$catagoryList[$category->getEntityId()] = __($this->_getParentName($category->getPath()) . $category->getName());


return $catagoryList;


private function _getParentName($path = '')

$parentName = '';
$rootCats = array(1,2);

$catTree = explode("/", $path);
// Deleting category itself
array_pop($catTree);

if($catTree && (count($catTree) > count($rootCats)))

foreach ($catTree as $catId)

if(!in_array($catId, $rootCats))

$category = $this->_categoryFactory->create()->load($catId);
$categoryName = $category->getName();
$parentName .= $categoryName . ' -> ';




return $parentName;




But As per the above logic displaying only single line but i need to display like tree as mentioned below screenshot. how to achieve?



OUT PUT I WANT:-
enter image description here










share|improve this question
















I would like to display *Category Tree Names** in multi select field in magento 2 admin end?



I have tried with below code but displaying only first cateogires could you please any one help on this?



$field = $fieldset->addField(
'wp_test',
'multiselect',
[
'name' => 'wp_test',
'label' => __("Test"),
'values' => $categorylistsource->toOptionArray(),
'value' => $this->_getTest(),
'title' => __('Test.'),
'note' => __('Test')

]
);



HelloConfigurableSkuModelConfigSource




<?php
/**

@copyright Copyright
*/
namespace HelloConfigurableSkuModelConfigSource;

use MagentoFrameworkOptionArrayInterface;

class Categorylist implements ArrayInterface

protected $_categoryFactory;
protected $_categoryCollectionFactory;

public function __construct(
MagentoCatalogModelCategoryFactory $categoryFactory,
MagentoCatalogModelResourceModelCategoryCollectionFactory $categoryCollectionFactory
)

$this->_categoryFactory = $categoryFactory;
$this->_categoryCollectionFactory = $categoryCollectionFactory;


public function getCategoryCollection($isActive = true, $level = false, $sortBy = false, $pageSize = false)

$collection = $this->_categoryCollectionFactory->create();
$collection->addAttributeToSelect('*');

// select only active categories
if ($isActive)
$collection->addIsActiveFilter();


// select categories of certain level
if ($level)
$collection->addLevelFilter($level);


// sort categories by some value
if ($sortBy)
$collection->addOrderField($sortBy);


// select certain number of categories
if ($pageSize)
$collection->setPageSize($pageSize);


return $collection;


public function toOptionArray()

$arr = $this->_toArray();
$ret = [];

foreach ($arr as $key => $value)

$ret[] = [
'value' => $key,
'label' => $value
];


return $ret;


private function _toArray()

$categories = $this->getCategoryCollection(true, false, false, false);

$catagoryList = array();
foreach ($categories as $category)

$catagoryList[$category->getEntityId()] = __($this->_getParentName($category->getPath()) . $category->getName());


return $catagoryList;


private function _getParentName($path = '')

$parentName = '';
$rootCats = array(1,2);

$catTree = explode("/", $path);
// Deleting category itself
array_pop($catTree);

if($catTree && (count($catTree) > count($rootCats)))

foreach ($catTree as $catId)

if(!in_array($catId, $rootCats))

$category = $this->_categoryFactory->create()->load($catId);
$categoryName = $category->getName();
$parentName .= $categoryName . ' -> ';




return $parentName;




But As per the above logic displaying only single line but i need to display like tree as mentioned below screenshot. how to achieve?



OUT PUT I WANT:-
enter image description here







magento2 attributes product-attribute category-tree






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 13 '18 at 3:12







Nagaraju Kasa

















asked Nov 8 '18 at 5:27









Nagaraju KasaNagaraju Kasa

2,80621742




2,80621742












  • Did you try with this one? magento.stackexchange.com/a/148556/33057

    – Khoa TruongDinh
    Nov 8 '18 at 7:41











  • yes @KhoaTruongDinh but no luck

    – Nagaraju Kasa
    Nov 8 '18 at 8:25











  • Did you try with some code lines? Could you post here?

    – Khoa TruongDinh
    Nov 8 '18 at 8:30











  • Sure I will update the same

    – Nagaraju Kasa
    Nov 8 '18 at 8:30






  • 1





    Good answer! I applied it in my project.

    – Andrada
    5 hours ago

















  • Did you try with this one? magento.stackexchange.com/a/148556/33057

    – Khoa TruongDinh
    Nov 8 '18 at 7:41











  • yes @KhoaTruongDinh but no luck

    – Nagaraju Kasa
    Nov 8 '18 at 8:25











  • Did you try with some code lines? Could you post here?

    – Khoa TruongDinh
    Nov 8 '18 at 8:30











  • Sure I will update the same

    – Nagaraju Kasa
    Nov 8 '18 at 8:30






  • 1





    Good answer! I applied it in my project.

    – Andrada
    5 hours ago
















Did you try with this one? magento.stackexchange.com/a/148556/33057

– Khoa TruongDinh
Nov 8 '18 at 7:41





Did you try with this one? magento.stackexchange.com/a/148556/33057

– Khoa TruongDinh
Nov 8 '18 at 7:41













yes @KhoaTruongDinh but no luck

– Nagaraju Kasa
Nov 8 '18 at 8:25





yes @KhoaTruongDinh but no luck

– Nagaraju Kasa
Nov 8 '18 at 8:25













Did you try with some code lines? Could you post here?

– Khoa TruongDinh
Nov 8 '18 at 8:30





Did you try with some code lines? Could you post here?

– Khoa TruongDinh
Nov 8 '18 at 8:30













Sure I will update the same

– Nagaraju Kasa
Nov 8 '18 at 8:30





Sure I will update the same

– Nagaraju Kasa
Nov 8 '18 at 8:30




1




1





Good answer! I applied it in my project.

– Andrada
5 hours ago





Good answer! I applied it in my project.

– Andrada
5 hours ago










1 Answer
1






active

oldest

votes


















1














please follow the below logic to get the category collection as tree structure. please let me know if u need any help.



<?php
namespace HelloConfigurableSkuModelConfigSource;

use MagentoFrameworkOptionArrayInterface;
use MagentoCatalogHelperCategory;

class Categorylist implements ArrayInterface

protected $_categoryHelper;
protected $categoryRepository;
protected $categoryList;

public function __construct(
MagentoCatalogHelperCategory $catalogCategory,
MagentoCatalogModelCategoryRepository $categoryRepository
)

$this->_categoryHelper = $catalogCategory;
$this->categoryRepository = $categoryRepository;


/*
* Return categories helper
*/

public function getStoreCategories($sorted = false, $asCollection = false, $toLoad = true)

return $this->_categoryHelper->getStoreCategories($sorted , $asCollection, $toLoad);


/*
* Option getter
* @return array
*/
public function toOptionArray()



$arr = $this->toArray();
$ret = [];

foreach ($arr as $key => $value)


$ret[] = [
'value' => $key,
'label' => $value
];


return $ret;


/*
* Get options in "key-value" format
* @return array
*/
public function toArray()


$categories = $this->getStoreCategories(true,false,true);
$categoryList = $this->renderCategories($categories);
return $categoryList;


public function renderCategories($_categories)

foreach ($_categories as $category)
$i = 0;
$this->categoryList[$category->getEntityId()] = __($category->getName()); // Main categories
$list = $this->renderSubCat($category,$i);


return $this->categoryList;


public function renderSubCat($cat,$j)

$categoryObj = $this->categoryRepository->get($cat->getId());

$level = $categoryObj->getLevel();
$arrow = str_repeat("---", $level-1);
$subcategories = $categoryObj->getChildrenCategories();

foreach($subcategories as $subcategory)
$this->categoryList[$subcategory->getEntityId()] = __($arrow.$subcategory->getName());

if($subcategory->hasChildren())

$this->renderSubCat($subcategory,$j);




return $this->categoryList;


?>





share|improve this answer























  • Thanks for your answer will check and getback

    – Nagaraju Kasa
    Nov 14 '18 at 6:24











Your Answer








StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "479"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f249360%2fhow-to-add-multi-select-category-tree-at-admin-end-in-magento-2%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









1














please follow the below logic to get the category collection as tree structure. please let me know if u need any help.



<?php
namespace HelloConfigurableSkuModelConfigSource;

use MagentoFrameworkOptionArrayInterface;
use MagentoCatalogHelperCategory;

class Categorylist implements ArrayInterface

protected $_categoryHelper;
protected $categoryRepository;
protected $categoryList;

public function __construct(
MagentoCatalogHelperCategory $catalogCategory,
MagentoCatalogModelCategoryRepository $categoryRepository
)

$this->_categoryHelper = $catalogCategory;
$this->categoryRepository = $categoryRepository;


/*
* Return categories helper
*/

public function getStoreCategories($sorted = false, $asCollection = false, $toLoad = true)

return $this->_categoryHelper->getStoreCategories($sorted , $asCollection, $toLoad);


/*
* Option getter
* @return array
*/
public function toOptionArray()



$arr = $this->toArray();
$ret = [];

foreach ($arr as $key => $value)


$ret[] = [
'value' => $key,
'label' => $value
];


return $ret;


/*
* Get options in "key-value" format
* @return array
*/
public function toArray()


$categories = $this->getStoreCategories(true,false,true);
$categoryList = $this->renderCategories($categories);
return $categoryList;


public function renderCategories($_categories)

foreach ($_categories as $category)
$i = 0;
$this->categoryList[$category->getEntityId()] = __($category->getName()); // Main categories
$list = $this->renderSubCat($category,$i);


return $this->categoryList;


public function renderSubCat($cat,$j)

$categoryObj = $this->categoryRepository->get($cat->getId());

$level = $categoryObj->getLevel();
$arrow = str_repeat("---", $level-1);
$subcategories = $categoryObj->getChildrenCategories();

foreach($subcategories as $subcategory)
$this->categoryList[$subcategory->getEntityId()] = __($arrow.$subcategory->getName());

if($subcategory->hasChildren())

$this->renderSubCat($subcategory,$j);




return $this->categoryList;


?>





share|improve this answer























  • Thanks for your answer will check and getback

    – Nagaraju Kasa
    Nov 14 '18 at 6:24















1














please follow the below logic to get the category collection as tree structure. please let me know if u need any help.



<?php
namespace HelloConfigurableSkuModelConfigSource;

use MagentoFrameworkOptionArrayInterface;
use MagentoCatalogHelperCategory;

class Categorylist implements ArrayInterface

protected $_categoryHelper;
protected $categoryRepository;
protected $categoryList;

public function __construct(
MagentoCatalogHelperCategory $catalogCategory,
MagentoCatalogModelCategoryRepository $categoryRepository
)

$this->_categoryHelper = $catalogCategory;
$this->categoryRepository = $categoryRepository;


/*
* Return categories helper
*/

public function getStoreCategories($sorted = false, $asCollection = false, $toLoad = true)

return $this->_categoryHelper->getStoreCategories($sorted , $asCollection, $toLoad);


/*
* Option getter
* @return array
*/
public function toOptionArray()



$arr = $this->toArray();
$ret = [];

foreach ($arr as $key => $value)


$ret[] = [
'value' => $key,
'label' => $value
];


return $ret;


/*
* Get options in "key-value" format
* @return array
*/
public function toArray()


$categories = $this->getStoreCategories(true,false,true);
$categoryList = $this->renderCategories($categories);
return $categoryList;


public function renderCategories($_categories)

foreach ($_categories as $category)
$i = 0;
$this->categoryList[$category->getEntityId()] = __($category->getName()); // Main categories
$list = $this->renderSubCat($category,$i);


return $this->categoryList;


public function renderSubCat($cat,$j)

$categoryObj = $this->categoryRepository->get($cat->getId());

$level = $categoryObj->getLevel();
$arrow = str_repeat("---", $level-1);
$subcategories = $categoryObj->getChildrenCategories();

foreach($subcategories as $subcategory)
$this->categoryList[$subcategory->getEntityId()] = __($arrow.$subcategory->getName());

if($subcategory->hasChildren())

$this->renderSubCat($subcategory,$j);




return $this->categoryList;


?>





share|improve this answer























  • Thanks for your answer will check and getback

    – Nagaraju Kasa
    Nov 14 '18 at 6:24













1












1








1







please follow the below logic to get the category collection as tree structure. please let me know if u need any help.



<?php
namespace HelloConfigurableSkuModelConfigSource;

use MagentoFrameworkOptionArrayInterface;
use MagentoCatalogHelperCategory;

class Categorylist implements ArrayInterface

protected $_categoryHelper;
protected $categoryRepository;
protected $categoryList;

public function __construct(
MagentoCatalogHelperCategory $catalogCategory,
MagentoCatalogModelCategoryRepository $categoryRepository
)

$this->_categoryHelper = $catalogCategory;
$this->categoryRepository = $categoryRepository;


/*
* Return categories helper
*/

public function getStoreCategories($sorted = false, $asCollection = false, $toLoad = true)

return $this->_categoryHelper->getStoreCategories($sorted , $asCollection, $toLoad);


/*
* Option getter
* @return array
*/
public function toOptionArray()



$arr = $this->toArray();
$ret = [];

foreach ($arr as $key => $value)


$ret[] = [
'value' => $key,
'label' => $value
];


return $ret;


/*
* Get options in "key-value" format
* @return array
*/
public function toArray()


$categories = $this->getStoreCategories(true,false,true);
$categoryList = $this->renderCategories($categories);
return $categoryList;


public function renderCategories($_categories)

foreach ($_categories as $category)
$i = 0;
$this->categoryList[$category->getEntityId()] = __($category->getName()); // Main categories
$list = $this->renderSubCat($category,$i);


return $this->categoryList;


public function renderSubCat($cat,$j)

$categoryObj = $this->categoryRepository->get($cat->getId());

$level = $categoryObj->getLevel();
$arrow = str_repeat("---", $level-1);
$subcategories = $categoryObj->getChildrenCategories();

foreach($subcategories as $subcategory)
$this->categoryList[$subcategory->getEntityId()] = __($arrow.$subcategory->getName());

if($subcategory->hasChildren())

$this->renderSubCat($subcategory,$j);




return $this->categoryList;


?>





share|improve this answer













please follow the below logic to get the category collection as tree structure. please let me know if u need any help.



<?php
namespace HelloConfigurableSkuModelConfigSource;

use MagentoFrameworkOptionArrayInterface;
use MagentoCatalogHelperCategory;

class Categorylist implements ArrayInterface

protected $_categoryHelper;
protected $categoryRepository;
protected $categoryList;

public function __construct(
MagentoCatalogHelperCategory $catalogCategory,
MagentoCatalogModelCategoryRepository $categoryRepository
)

$this->_categoryHelper = $catalogCategory;
$this->categoryRepository = $categoryRepository;


/*
* Return categories helper
*/

public function getStoreCategories($sorted = false, $asCollection = false, $toLoad = true)

return $this->_categoryHelper->getStoreCategories($sorted , $asCollection, $toLoad);


/*
* Option getter
* @return array
*/
public function toOptionArray()



$arr = $this->toArray();
$ret = [];

foreach ($arr as $key => $value)


$ret[] = [
'value' => $key,
'label' => $value
];


return $ret;


/*
* Get options in "key-value" format
* @return array
*/
public function toArray()


$categories = $this->getStoreCategories(true,false,true);
$categoryList = $this->renderCategories($categories);
return $categoryList;


public function renderCategories($_categories)

foreach ($_categories as $category)
$i = 0;
$this->categoryList[$category->getEntityId()] = __($category->getName()); // Main categories
$list = $this->renderSubCat($category,$i);


return $this->categoryList;


public function renderSubCat($cat,$j)

$categoryObj = $this->categoryRepository->get($cat->getId());

$level = $categoryObj->getLevel();
$arrow = str_repeat("---", $level-1);
$subcategories = $categoryObj->getChildrenCategories();

foreach($subcategories as $subcategory)
$this->categoryList[$subcategory->getEntityId()] = __($arrow.$subcategory->getName());

if($subcategory->hasChildren())

$this->renderSubCat($subcategory,$j);




return $this->categoryList;


?>






share|improve this answer












share|improve this answer



share|improve this answer










answered Nov 14 '18 at 6:20









Kavya cheeralaKavya cheerala

464




464












  • Thanks for your answer will check and getback

    – Nagaraju Kasa
    Nov 14 '18 at 6:24

















  • Thanks for your answer will check and getback

    – Nagaraju Kasa
    Nov 14 '18 at 6:24
















Thanks for your answer will check and getback

– Nagaraju Kasa
Nov 14 '18 at 6:24





Thanks for your answer will check and getback

– Nagaraju Kasa
Nov 14 '18 at 6:24

















draft saved

draft discarded
















































Thanks for contributing an answer to Magento Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f249360%2fhow-to-add-multi-select-category-tree-at-admin-end-in-magento-2%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Magento 2 - Add success message with knockout Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Success / Error message on ajax request$.widget is not a function when loading a homepage after add custom jQuery on custom themeHow can bind jQuery to current document in Magento 2 When template load by ajaxRedirect page using plugin in Magento 2Magento 2 - Update quantity and totals of cart page without page reload?Magento 2: Quote data not loaded on knockout checkoutMagento 2 : I need to change add to cart success message after adding product into cart through pluginMagento 2.2.5 How to add additional products to cart from new checkout step?Magento 2 Add error/success message with knockoutCan't validate Post Code on checkout page

Fil:Tokke komm.svg

Where did Arya get these scars? Unicorn Meta Zoo #1: Why another podcast? Announcing the arrival of Valued Associate #679: Cesar Manara Favourite questions and answers from the 1st quarter of 2019Why did Arya refuse to end it?Has the pronunciation of Arya Stark's name changed?Has Arya forgiven people?Why did Arya Stark lose her vision?Why can Arya still use the faces?Has the Narrow Sea become narrower?Does Arya Stark know how to make poisons outside of the House of Black and White?Why did Nymeria leave Arya?Why did Arya not kill the Lannister soldiers she encountered in the Riverlands?What is the current canonical age of Sansa, Bran and Arya Stark?