MyBB Community Forums

Full Version: Hooks in ACP -> Forum management
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Please see this post:
http://community.mybboard.net/thread-55433.html

Nobody replied so far so I do guess that nobody has an answer and it's not possible.

I'd love to see a hook there.

Kind regards
Lennart Sauter
$plugins->add_hook('admin_forum_management_edit', 'func');
function func() {
 global $plugins;
 $plugins->add_hook('admin_formcontainer_output_row', 'func2');
}

function func2(&$pluginargs) {
 global $lang;
 if($pluginargs['title'] == $lang->forum_password) {
  // do stuff
 }
}
Something like that?
That's nice Smile
Thanks, exactly what I was looking for.