I’m creating a new structure from a set of structures from a set of pages:
'allServicesTranslated' => function () {
$services = page('services')->children();
$tags = new Structure();
foreach ($services as $p) {
$tags->add($p->servicesStructure()->toStructure());
}
return $tags;
},
I want to return these as options for a multiselect
as they contain translations for tags:
servicesTranslated:
type: multiselect
translate: false
options:
type: query
query: site.allServicesTranslated
text: "{{ structureItem.en }}"
value: "{{ structureItem.id }}"
If I dump the structure, everything has a consecutive number:
Kirby\Cms\Structure Object
(
[0] => 0
[1] => 1
[2] => 2
[3] => 3
[4] => 4
[5] => 5
[6] => 6
[7] => 7
[8] => 8
[9] => 9
[10] => 10
[11] => 11
[12] => 12
[13] => 13
[14] => 14
[15] => 15
[16] => 16
[17] => 17
[18] => 18
[19] => 19
[20] => 20
[21] => 21
[22] => 22
[23] => 23
)
However in the panel this only shows the last set of items added from the foreach loop because the id
resets to 0 (I can see this if I dump with toArray
):
Array
(
[0] => Array
(
[en] => Identity Design
[de] => Marken-Design
[id] => 0
)
[1] => Array
(
[en] => User Experience Design
[de] => UX-Design
[id] => 1
)
...
[8] => Array
(
[en] => Branding
[de] => Markenstrategie
[id] => 0
)
[9] => Array
(
[en] => Research
[de] => Marktforschung
[id] => 1
)
...
It appears that value: "{{ structureItem.id }}"
is grabbing the original id rather than the new one from the merged structure. Is there any way around this?