Matthew Hawley
Well-known member
Okay so This is the code event listener:
This is the Listener.php template:
This is the Listener.php template:
Code:
<?php
class VentrilloViewer_Listener
{
public static function templateHook($hookName, &$contents, array $hookParams, XenForo_Template_Abstract $template)
{
if ($hookName == 'ad_sidebar_bottom')
{
$contents .= $template->create('ventrillo_viewer_sidebar', $template->getParams());
}
}
}