Skip to content

Instantly share code, notes, and snippets.

@graemetait
Created February 10, 2011 11:47
Show Gist options
  • Save graemetait/820391 to your computer and use it in GitHub Desktop.
Save graemetait/820391 to your computer and use it in GitHub Desktop.
<?php
class MyToroHandler extends ToroHandler {
public $tpl;
public function __construct() {
$this->tpl = new Template(TPL_PATH);
ToroHook::add('after_handler', function() { $this->tpl->display('layout.tpl.php'); });
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment