@Todd would be the one to respond here (he set up the smarty templates). If you want to switch to a PHP master view instead, you can change the name to default.master.php and use this:
By the by for any of you Kohana devs out there, the handshaking is working without a hitch with my Kohana apps.
The only thing I had to change was in the session config file, I had to change the $config['validate'] setting to 'expiration' though I'm still trying to iron out a bit better way, as I prefer the session validating to use 'user_agent'.
But doing this, I've been able to let Vanilla do its thing and I can even have two different databases--one for my app, and one for Vanilla--and it works like a charm.
Now I can continue to do everything I want with Kohana's brilliance and share it seamlessly with V2's brilliance.
Comments
http://vanillaforums.org/page/PHPMasterView
And then you can check for an active session with:
The only thing I had to change was in the session config file, I had to change the $config['validate'] setting to 'expiration' though I'm still trying to iron out a bit better way, as I prefer the session validating to use 'user_agent'.
But doing this, I've been able to let Vanilla do its thing and I can even have two different databases--one for my app, and one for Vanilla--and it works like a charm.
Now I can continue to do everything I want with Kohana's brilliance and share it seamlessly with V2's brilliance.
Altogether a much better experience than V1.
Nice work, Mark!