PATH:
home
/
lab2454c
/
vaultchip.com
/
vendor
/
botble
/
platform
/
base
/
helpers
<?php use Illuminate\Support\Collection; if (!function_exists('sort_item_with_children')) { /** * Sort parents before children * @param Collection|array $list * @param array $result * @param int $parent * @param int $depth * @return array */ function sort_item_with_children($list, array &$result = [], $parent = null, $depth = 0): array { if ($list instanceof Collection) { $listArr = []; foreach ($list as $item) { $listArr[] = $item; } $list = $listArr; } foreach ($list as $key => $object) { if ($object->parent_id == $object->id) { array_push($result, $object); continue; } if ((int)$object->parent_id == (int)$parent) { array_push($result, $object); $object->depth = $depth; unset($list[$key]); sort_item_with_children($list, $result, $object->id, $depth + 1); } } return $result; } }
[-] constants.php
[edit]
[+]
..
[-] common.php
[edit]
[-] action-filter.php
[edit]
[-] sort.php
[edit]
[-] meta-box.php
[edit]