mirror of
https://github.com/devcode-it/openstamanager.git
synced 2024-12-27 00:06:14 +01:00
Miglioramento ordinamento sottomenu
Miglioramento della query per l'ordinamneto dei sottomenu, basata sul commit 74aa3cf08c
.
This commit is contained in:
parent
74aa3cf08c
commit
d5cce8a23e
@ -316,7 +316,15 @@ class Modules
|
||||
$query .= ' LEFT JOIN `zz_modules` AS `t'.$i.'` ON `t'.$i.'`.`parent` = `t'.($i - 1).'`.`id`';
|
||||
}
|
||||
|
||||
$query .= ' WHERE `t0`.`parent` IS NULL ORDER BY `t0`.`order` ASC, `t1`.`order` ASC, `t2`.`order` ASC';
|
||||
$query .= ' WHERE `t0`.`parent` IS NULL ORDER BY ';
|
||||
|
||||
for ($i = 0; $i < $depth; ++$i) {
|
||||
$query .= '`t'.$i.'`.`order` ASC';
|
||||
|
||||
if ($i != $depth - 1) {
|
||||
$query .= ', ';
|
||||
}
|
||||
}
|
||||
|
||||
$modules = $database->fetchArray($query);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user