backdrop-contrib / entity_plus

This module wraps in a variety of additional entity-related functionality from various sources. Partial port of D7 Entity API.
https://backdropcms.org/project/entity_plus
GNU General Public License v2.0
3 stars 11 forks source link

entity_plus_get_all_property_info() returns empty array for core entities #167

Closed argiepiano closed 11 months ago

argiepiano commented 11 months ago

This output is different from what's expected (see D7). It should include all Entity Plus properties for the entity (i.e. entity properties and Field API fields attached to that entity type).

For example, run

module_load_include('inc', 'entity_plus', 'includes/entity_plus.property');
dpm(entity_plus_get_all_property_info('node'));

Result: empty array!

argiepiano commented 11 months ago

False alarm! It works as expected.