Taxonomy vocabularies and PHP 8.2 - needs direction / decision.
Core support for PHP 8.2 is on its way. In a previous pull request, we decided to check for property existence in function taxonomy_form_vocabulary_submit() to prevent arbitrary form item values to bloat the object, but it turns out, that's not sufficient and possibly not even appropriate.
Looking at official documentation, it seems like class TaxonomyVocabulary is actually supposed to allow dynamic properties. We just didn't realize, as hook_taxonomy_vocabulary_load() isn't used anywhere in core. And there's no functional test for that hook, either.
Sorry for not being clear.
I have this view and two exposed filters on it.
I am trying to show different places on the map. These places are called "institutions".
They have a...
Still trying to understand: you have this view and an exposed form on it, right.
And you have two independent taxonomy terms and try to filter by them?
Or is this a hierarchal...
Hi geoma,
hm... I'm not quite sure, what "parent" means in that context.
Is it a taxonomy term? Or a related node type?
The map will only show geo data from the field...
Hi geoma,
How can I Include more info in the popup
In a view or in the popup of the field display on nodes?
In fields you can use tokens for field display...
Comments
Taxonomy vocabularies and PHP 8.2 - needs direction / decision.
Core support for PHP 8.2 is on its way. In a previous pull request, we decided to check for property existence in function taxonomy_form_vocabulary_submit() to prevent arbitrary form item values to bloat the object, but it turns out, that's not sufficient and possibly not even appropriate.
Looking at official documentation, it seems like class TaxonomyVocabulary is actually supposed to allow dynamic properties. We just didn't realize, as hook_taxonomy_vocabulary_load() isn't used anywhere in core. And there's no functional test for that hook, either.
Issue #6197 provides more info.
The decision has notable impact on contrib modules.