HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/PvdBoogaard/indoorski.nl/backup/oude-site/cms/api/events/events.controller.php
<?php

/**
 * ShowTemplate is fired at the end of a call to iwp_controller->ShowTemplate, but before the call to iwp_template->ParseTemplate. This allows modules to hook into the rendering of a page and assign content to defined sections of the template before it is finalised and sent to the browser.
 *
 */
class iwp_event_controller_showtemplate extends iwp_event_base
{
	/**
	 * Template name being shown
	 *
	 * @var string
	 */
	public $template;

	/**
	 * Current instance of iwp_controller
	 *
	 * @var iwp_controller
	 */
	public $controller;

	/**
	 *
	 * @param $template string
	 * @param $controller iwp_controller
	 * @return boolean
	 */
	public function __construct (&$template, &$controller)
	{
		$this->template = &$template;
		$this->controller = &$controller;
		parent::__construct(false);
	}
}