MyBB Community Forums

Full Version: Is there any place with a list of all the code snippets?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I use to use the list on MyBB Community but now it's down for some reason.
Make a file called snippets.php with the following content, upload it to your forum root and run it in the browser.

<?php

define("IN_MYBB", 1);
require_once "global.php";

echo "<pre>";
print_r($mybb);
echo "</pre>";

?>