MyBB Community Forums

Full Version: Admin navigation question
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Quote:$menu[10] = array(
"title" => "",
"items" => array(
10 => array("title" => $lang->cp_home, "url" => "index.php?".SID."&action=home"),
20 => array("title" => $lang->cp_prefs, "url" => "adminoptions.php?".SID),
30 => array("title" => $lang->vercheck, "url" => "index.php?".SID."&action=vercheck"),
)
);

you see where it says

"cp_home" thats represented as "Admin CP Home"

i need to make my own so what file do i need to edit to do that?
woo wee i fixed it haha mybb is sick as eggplant

Any one who wants to add your own box to the admincp main page just add a new array like this:

$menu[170] = array(
"title" => "Somthing",
"items" => array(
10 => array("title" => "Test", "url" => "test.php?".SID),

)
);
'

title is the blue bar and Test is the link just edit test.php? to what ever the frame your linking to Smile like a shoutbox or somthen XD *This is 1.2 Smile