mirror of
https://gitee.com/ShopeX/OMS
synced 2026-04-01 21:46:43 +08:00
20 lines
969 B
PHP
20 lines
969 B
PHP
<?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;
|
||
}
|
||
} |