1 entityreference.module | entityreference_load_behavior_class($property) |
Load a behavior class for a given property.
File
- core/
modules/ entityreference/ entityreference.module, line 1473 - Entityreference primary module file.
Code
function entityreference_load_behavior_class($property) {
$plugins = _entityreference_behavior_plugins();
return !empty($plugins[$property]['class']) ? $plugins[$property]['class'] : NULL;
}