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);
}
}