function eck_author_property_property_info in Entity Construction Kit (ECK) 7.3
Same name and namespace in other branches
- 7.2 plugins/property_behavior/author.inc \eck_author_property_property_info()
Let the system know that this property holds a user id.
1 string reference to 'eck_author_property_property_info'
- author.inc in plugins/
property_behavior/ author.inc
File
- plugins/
property_behavior/ author.inc, line 30
Code
function eck_author_property_property_info($property, $vars) {
$vars['properties'][$property]['type'] = 'user';
return $vars;
}