Using Joomla 3.10.11, T3 Framework 3.1.2 and T3 Blank "2.3.0" downloaded from here - the download link states 2.3.0, the filename reads t3-blank-template_2.3.0.zip
but the installed template in Joomla shows 2.2.9.
Anyway, the templateHook file is loaded, but none of the events are triggered. I can see in the code that the following code is now used:
JFactory::getApplication()->triggerEvent('onT3Init');
But the corresponding hook for this does not work, nothing happens:
`
jimport('joomla.event.event');
class T3_BlankHook extends JEvent
{
public function __construct(&$subject, $config)
{
parent::__construct($subject, $config);
}
public function onT3Init() // no params
{
die("this does not display");
}
}
`