You are here

function eck_author_property_property_info in Entity Construction Kit (ECK) 7.2

Same name and namespace in other branches
  1. 7.3 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 29

Code

function eck_author_property_property_info($property, $vars) {
  $vars['properties'][$property]['type'] = 'user';
  return $vars;
}