You are here

public function H5PReportXAPIData::getInteractionType in Quiz 7.4

Get the type of interaction.

Return value

string

3 calls to H5PReportXAPIData::getInteractionType()
H5PReportXAPIData::getAdditionals in question_types/quiz_h5p/report/h5p-report-xapi-data.class.php
Get additonal data for some interaction types.
H5PReportXAPIData::isCompound in question_types/quiz_h5p/report/h5p-report-xapi-data.class.php
Check if the interaction has sub interactions with scoring.
H5PReportXAPIData::validateData in question_types/quiz_h5p/report/h5p-report-xapi-data.class.php
Checks if data is valid

File

question_types/quiz_h5p/report/h5p-report-xapi-data.class.php, line 155

Class

H5PReportXAPIData

Code

public function getInteractionType() {

  // Can be any string
  return $this
    ->getObjectDefinition('interactionType');
}