瀏覽代碼

[FrontEnd] Probème ordre des catégories sous-menu

develop
Fab 3 年之前
父節點
當前提交
296fc93feb
共有 1 個檔案被更改,包括 6 行新增1 行删除
  1. +6
    -1
      ShopBundle/Model/ProductCategory.php

+ 6
- 1
ShopBundle/Model/ProductCategory.php 查看文件

@@ -81,7 +81,12 @@ abstract class ProductCategory extends AbstractDocumentEntity implements TreeInt
*/
public function getChildrens(): Collection
{
return $this->childrens;
//TODO les lignes ci-dessous ne devraient pas exister, sert à résoudre le problème d'ordre dans le menu
$iterator = $this->childrens->getIterator();
$iterator->uasort(function ($a, $b) {
return ($a->getPosition() < $b->getPosition()) ? -1 : 1;
});
return new ArrayCollection(iterator_to_array($iterator));
}

public function addChildren(self $productCategory): self

Loading…
取消
儲存