Für die Moduladministration ist eine Datei admin.menu.php notwendig

Lege dazu diese Datei im Ordner core Deines Modules mit folgenden Inhalt an:

<?php
/**
 * This file is part of
 * pragmaMx - Web Content Management System.
 * Copyright by pragmaMx Developer Team - http://www.pragmamx.org
 *
 * pragmaMx is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * $Revision: 1.00 $
 * $Author: user $
 * $Date: 2014-01-01 10:00:00 $
 */

defined('mxMainFileLoaded') or die('access denied');

if ($radminsuper || $radminWasAuchImmer) {
    $module_name = basename(dirname(dirname(__FILE__)));
    adminmenu(adminUrl($module_name), _DIER_DEIN_MODULE_NAME, 'dein-module-bild.png', MX_ADMINPANEL_CONTENT);
}

?>

MX_ADMINPANEL_CONTENT wie gewohnt mit dem ersetzen, wo das Modul hin soll.

Das Bild für den Adminbereich muß nun in modules/Dein_Module/images liegen.
Die admin.case, admin.links werden nicht mehr verwendt.