1
Hi,
I am a newbie in developing XOOPS module.
For the admin page, I found in the 2.2 API doc that we can "Creates a pretty menu and navigation bar above your module admin pag" by using
$xTheme->loadModuleAdminMenu(1)Ok, with reference to admin.php of profile module and dev wiki, I suppose there is such a menu bar by using the following codes in my admin/index.php :
include '../../../include/cp_header.php';
xoops_cp_header();
$xTheme->loadModuleAdminMenu(1);
xoops_cp_footer();
Unluckily, I could only see a plain system admin page like this :
Any idea ? Thank You!