6
There's still a few things you'll need to do...
1) Modify your module's ./xoops_version.php file to let XOOPS know you have an admin section for the module. Something like:
$modversion['hasAdmin'] = 1;
$modversion['adminindex'] = "admin/index.php";
$modversion['adminmenu'] = "admin/menu.php";
where admin/index.php has the main admin code. The admin/menu.php tells XOOPS what menu options are available for your module. It's easiest to view an existing module to get the idea of how this works.
2) In your admin/index.php file you'll need to add
xoops_cp_header();
before the code you want to display and
xoops_cp_footer();
after your code.
Hopefully this helps guide you in the right direction.