Hello everyone.
I have a piece of working code here.
fields:
menschen:
type: multiselect
options: query
query: site.page("menschen").children
<?php
$engagiertIn = $pages->find('spielzeiten')->children()->children()
->filter(function($child) use($page) {
return $child->menschen()->toPages(',')->has($page);
});
?>
But! Now I should change this because the “menschen” from the multiselect have now been moved to a structure. I don’t understand how I have to rebuild the part with the so that it works again. Can anybody help?
fields:
menschen:
type: structure
fields:
rolle:
type: text
mensch:
type: multiselect
options: query
query: site.page("menschen").children
<?php
$engagiertIn = $pages->find('spielzeiten')->children()->children()
->filter(function($child) use($page) {
// ❌ return $child->menschen()->toPages(',')->has($page);
});
?>