![]() |
Add new tab/menu in ACP - Printable Version +- MyBB Community Forums (https://community.mybb.com) +-- Forum: Extensions (https://community.mybb.com/forum-201.html) +--- Forum: Plugins (https://community.mybb.com/forum-73.html) +---- Forum: Plugin Development (https://community.mybb.com/forum-68.html) +---- Thread: Add new tab/menu in ACP (/thread-220779.html) |
Add new tab/menu in ACP - gungrave41 - 2018-11-22 How do i hook a new tab or menu in ACP.. possiibly with a template based on ACP theme... I've made a custom plugin where the custom profile fields goes thru a lookup table first to check if data exists... Now i need a tab in ACP where I can insert data so I don't need to access phpmyadmin whenever i need new info... Can someone guide me... thanks! RE: Add new tab/menu in ACP - Omar G. - 2018-11-22 You are free to check my code in some of my plugins: https://github.com/Sama34/OUGC-Pages/blob/master/Upload/inc/plugins/ougc_pages.php#L36 There I use all necessary hooks to add your page in the ACP. RE: Add new tab/menu in ACP - Synx - 2018-11-28 Might check this out: https://github.com/dragonexpert/tutorials/blob/master/advanced_plugin_development.html#L206 |