Files
OMS/app/desktop/lib/service/view/menu.php
2025-12-28 23:13:25 +08:00

20 lines
969 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
/**
* Copyright © ShopeX http://www.shopex.cn. All rights reserved.
* See LICENSE file for license details.
*/
class desktop_service_view_menu{
function function_menu(){
//$html[] = "<a href='index.php?ctl=shoprelation&act=index&p[0]=apply'>网店邻居</a>";
if(!defined('WITHOUT_DESKTOP_APPMGR') || !constant('WITHOUT_DESKTOP_APPMGR')){
$html[] = "<a href='index.php?app=desktop&ctl=appmgr&act=index'>".app::get('desktop')->_('应用中心')."</a>";
}
$html[] = "<a href='index.php?ctl=adminpanel'>".app::get('desktop')->_('控制面板')."</a>";
$html[] = "<a href='index.php?app=desktop&ctl=default&act=alertpages&goto=".urlencode('index.php?app=desktop&ctl=recycle&act=index&nobuttion=1')."' target='_blank'>".app::get('desktop')->_('回收站')."</a>";
$html[] = "<a href='index.php?ctl=dashboard&act=index'>".app::get('desktop')->_('桌面')."</a>";
return $html;
}
}