You are here

public function QuizQuestionRelationshipMetadataController::entityPropertyInfo in Quiz 7.5

Same name and namespace in other branches
  1. 7.6 includes/QuizQuestionRelationshipMetadataController.class.inc \QuizQuestionRelationshipMetadataController::entityPropertyInfo()

Overrides EntityDefaultMetadataController::entityPropertyInfo

File

includes/QuizQuestionRelationshipMetadataController.class.inc, line 5

Class

QuizQuestionRelationshipMetadataController

Code

public function entityPropertyInfo() {
  $info = parent::entityPropertyInfo();
  $info['quiz_question_relationship']['properties']['child_nid']['type'] = 'node';
  $info['quiz_question_relationship']['properties']['child_vid']['type'] = 'integer';
  $info['quiz_question_relationship']['properties']['parent_nid']['type'] = 'node';
  $info['quiz_question_relationship']['properties']['parent_vid']['type'] = 'integer';
  return $info;
}