subscribe('afterSurveyComplete', 'showTheResponse');
}
/*
* Below are the actual methods that handle events
*/
public function showTheResponse()
{
$event = $this->getEvent();
$surveyId = $event->get('surveyId');
$responseId = $event->get('responseId');
$response = $this->pluginManager->getAPI()->getResponse($surveyId, $responseId);
$event->getContent($this)
->addContent('You response was:
' . print_r($response, true) . ''); } }