<?php
class helloWorld extends PluginBase
{

	static protected $name        = 'Hello World Test';
	static protected $description = 'This is a Hello World plugin';

	public function init()
	{
		$this->subscribe('beforeQuestionRender');
		
		// $this->log("plugin helloWorld initiated");
		
	}

	public function beforeQuestionRender()
	{
		// $this->log("plugin helloWorld recieved event beforeQuestionRender");
		
		$this->getEvent()->set('questionhelp', 'Hello World');
	}
}