MyBB Community Forums

Full Version: plugin create problem
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
i create plugin.

$plugins->add_hook("index_start", "myplugin_index_start");
function myplugin_index_start()
------- work in index page.

$plugins->add_hook("header_start", "myplugin_header_start");
function myplugin_header_start()
------- not work in header.

what is problem?
global template work code???

note: my english bad. sorry
There's no plugin hook called "header_start"

See: [wiki]MyBB Plugin Hooks[/wiki]

You probably want either global_start or global_end
global_start work.

too thanks... Smile