PDA

View Full Version : question about $template_hook[navbar_buttons_left]


iadmirevb
10-15-2009, 12:26 PM
Hello,
I want to modified the nav bar. I've read some articles in this forum and did some testing. Everything seems to work ok!

The only thing i don't get is this :$template_hook[navbar_buttons_left]. I can see it on the navbar template but don't no what it is or where is it...

What is it? and more important, how can i have access to it?

Thanks

Lynne
10-15-2009, 02:05 PM
You would write a plugin to use it. In your plugin code, you'd have something like:
$template_hook[navbar_buttons_left] .= 'proper html for the navbar button';

iadmirevb
10-15-2009, 07:18 PM
thanks