You are here

public function EntityformMetadataController::entityPropertyInfo in Entityform 7.2

Same name and namespace in other branches
  1. 7 entityform.info.inc \EntityformMetadataController::entityPropertyInfo()

Overrides EntityDefaultMetadataController::entityPropertyInfo

File

./entityform.info.inc, line 13
Provides Entity metadata integration.

Class

EntityformMetadataController
Extend the defaults.

Code

public function entityPropertyInfo() {
  $info = parent::entityPropertyInfo();
  $properties =& $info[$this->type]['properties'];
  $properties['user'] = array(
    'label' => t("User"),
    'type' => 'user',
    'description' => t("The user who submitted the form."),
    'getter callback' => 'entity_property_getter_method',
    'setter callback' => 'entity_property_setter_method',
    'setter permission' => 'administer entityform types',
    'required' => TRUE,
    'schema field' => 'uid',
  );
  $properties['created'] = array(
    'label' => t("Date submitted"),
    'type' => 'date',
    'description' => t("The date form was submitted."),
    'setter callback' => 'entity_property_verbatim_set',
    'setter permission' => 'administer entityform types',
    'required' => TRUE,
    'schema field' => 'created',
  );
  $properties['changed'] = array(
    'label' => t("Date changed"),
    'type' => 'date',
    'schema field' => 'changed',
    'description' => t("The date the form was most recently updated."),
  );

  // type property is created in parent::entityPropertyInfo().
  $properties['type']['label'] = t("Entityform Type");
  $properties['type']['type'] = 'entityform_type';
  $properties['type']['schema field'] = 'type';
  $properties['type']['description'] = t("The Entityform Type for the Entityform Submission.");

  // @todo This line could be removed depending on this http://drupal.org/node/1931376
  $properties['type']['required'] = TRUE;
  $properties['draft']['setter callback'] = 'entity_property_verbatim_set';
  return $info;
}