The files

admin/includes/menu.css
admin/includes/menu.js
admin/includes/stylesheet.css


will no longer be part of Zen Cart in some future release.

For details please see https://docs.zen-cart.com/dev/plugin..._head_content/



Please remove them from your contributions (as described on the FAQ page above) for Zen Cart 1.5.7 and above, or modify them as shown in the code fragment below, kindly provided by @lat9, if you wish your plugin to work in old and new versions of Zen Cart.

To identify sections of code in your contributions that need updating, look for lines like the following snippets (these are NOT complete code-sections to change, just key things to search for to identify where the changes need to be applied):
PHP Code:
<link rel="stylesheet" href="includes/stylesheet.css"
and
PHP Code:
<script src="includes/menu.js"></script>
<script src="includes/general.js"></script>
<script>
function init()
{
    cssjsmenu('navbar'); 

The following code can be used to replace the old loading. See the "docs" page linked above for more detail of what code this is replacing:
PHP Code:
// -----
// This section provides compatibility to load the 'legacy' stylesheets and javascript formerly used 
// in Zen Cart versions prior to v2.0.0.  Here we determine the Zen Cart base version in use 
// to maintain the downwardly-compatible use of this module.
//
$admin_html_head_supported = ((PROJECT_VERSION_MAJOR . '.' . PROJECT_VERSION_MINOR) >= '1.5.7');
$body_onload = ($admin_html_head_supported === true) ? '' : ' onload="init();"';
?>
<!doctype html>
<html <?php echo HTML_PARAMS?>>
<head>
<meta charset="<?php echo CHARSET?>">
<title><?php echo TITLE?></title>
<?php
if ($admin_html_head_supported === true) {
    require 
DIR_WS_INCLUDES 'admin_html_head.php';
} else {
?>
<link rel="stylesheet" href="includes/stylesheet.css">
<link rel="stylesheet" href="includes/cssjsmenuhover.css" media="all" id="hoverJS">
<script src="includes/menu.js"></script>
<script src="includes/general.js"></script>
<script>
function init()
{
    cssjsmenu('navbar');
    if (document.getElementById) {
        var kill = document.getElementById('hoverJS');
        kill.disabled = true;
    }
}
</script>
<?php
}
?>
</head>
<body<?php echo $body_onload?>>
    <?php require DIR_WS_INCLUDES 'header.php'?>
<?php