Files
OMS/app/desktop/view/appmgr/uninstall.html
2026-01-04 17:22:44 +08:00

38 lines
1.5 KiB
HTML

<!--
Copyright 2026 ShopeX (https://www.shopex.cn)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<div class="notice" style="margin:10px 10px;"><{t}>即将卸载<{/t}><{$app.name}></div>
<div class="tableform">
<{if $app_tables || $ctl_mapper}>
<h4><{t}>注意!卸载过程将:<{/t}></h4>
<div class="division">
<ol style="padding:10px 0 0 15px">
<{if $app_tables}>
<li><{t}>从数据库里删除<{/t}><{$app_tables|count}><{t}>个表:<{/t}><b> <{$table_prefix}><{$app_tables|implode:' , '.$table_prefix}> </b></li>
<{/if}>
<{foreach from=$ctl_mapper item=map}>
<li><{t}>复原你的<{/t}> <strong><{$map}></strong> <{t}>流程。<{/t}></li>
<{/foreach}>
</ol>
</div>
<{/if}>
<div class="table-action">
<{button label=$___desktop="确认卸载"|t:'desktop' onclick="W.page('index.php?ctl=appmgr&act=do_uninstall&p[0]={$env.get.p.0}')"}>
<{button label=$___desktop="取消"|t:'desktop' onclick="W.page('index.php?ctl=appmgr&act=index')"}>
</div>
</div>