You are here

QuizQuestionRelationshipMetadataController.class.inc in Quiz 7.5

Same filename and directory in other branches
  1. 7.6 includes/QuizQuestionRelationshipMetadataController.class.inc

File

includes/QuizQuestionRelationshipMetadataController.class.inc
View source
<?php

class QuizQuestionRelationshipMetadataController extends EntityDefaultMetadataController {
  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;
  }

}