MyBB Community Forums

Full Version: AdminCP Header
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey can someone please tell me how to add stuff to the AdminCP header? Thanks
What do you mean stuff? Links?
I want too add links here
[Image: hshsh.png]
I found this code comment in ./admin/stryles/default/style.php and it might help you:
/**
 * This is an example style file for Admin CP styles.
 *
 * It allows you to override our existing layout generation
 * classes with your own to further customise the Admin CP
 * layout beyond CSS.
 *
 * Your class name      Should extend
 * ---------------      -------------
 * Page                 DefaultPage
 * SidebarItem          DefaultSidebarItem
 * PopupMenu            DefaultPopupMenu
 * Table                DefaultTable
 * Form                 DefaultForm
 * FormContainer        DefaultFormContainer
 *
 * For example, to output your own custom header:
 *
 * class Page extends DefaultPage
 * {
 *   function output_header($title)
 *   {
 *      echo "<h1>{$title}</h1>";
 *   }
 * }
 *
 */