mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-23 18:48:51 +02:00
* N°8761 - Assist in cleaning up data prior to uninstalling extensions - handle transaction ID + add deletion plan screen * N°8761 - poc of deletion plan screen * code style * N°8761 - WIP deletion plan execution * Delete all parent classes objects + cleanup * 🌐 translation (EN only) * remove history * In case of no leaf class to remove, delete also the child classes * 🎨 refactor & fix typo * Analysis not stored anymore in DB * Analysis for removed modules * 🌐 dico * Add spinner to setup button "Go to backoffice" * Fix count after PR review * Fix after PR review * Fix Number of elements to remove * Fix arrays --------- Co-authored-by: odain <olivier.dain@combodo.com>
36 lines
1.3 KiB
Twig
36 lines
1.3 KiB
Twig
{# @copyright Copyright (C) 2010-2025 Combodo SARL #}
|
|
{# @license http://opensource.org/licenses/AGPL-3.0 #}
|
|
|
|
{# Usable variables: #}
|
|
{# * sTitle => page title #}
|
|
{# * sMessage => success message #}
|
|
{# * sError => error message #}
|
|
|
|
{# DataFeatureRemoval #}
|
|
|
|
{% UIPanel ForInformation { sTitle:'DataFeatureRemoval:Main:Title'|dict_s, sSubTitle: 'DataFeatureRemoval:Main:SubTitle'|dict_s } %}
|
|
|
|
{% UIAlert ForInformation { sTitle:'DataFeatureRemoval:Helper:Title'|dict_s } %}
|
|
{{ 'DataFeatureRemoval:Helper:Desc1'|dict_s }}<BR>
|
|
{{ 'DataFeatureRemoval:Helper:Desc2'|dict_s }}
|
|
{% EndUIAlert %}
|
|
|
|
{% if null != DataFeatureRemovalErrorMessage %}
|
|
<div id="feature_removal_error_msg_div" style="display:block">
|
|
{% UIAlert ForFailure { sTitle:'DataFeatureRemoval:Failure:Title'|dict_s, sId: 'feature_removal_error_msg', sContent:DataFeatureRemovalErrorMessage } %}
|
|
{% EndUIAlert %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% include 'Features.html.twig' %}
|
|
{% include 'ExtensionRemovalData.html.twig' %}
|
|
|
|
{% if not bHasData %}
|
|
{% UIToolbar ForButton {} %}
|
|
<a href="{{ sSetupUrl }}">
|
|
{% UIButton ForPrimaryAction {sLabel:'UI:Button:Setup'|dict_s, sName:'btn_setup', sId:'btn_setup', bIsSubmit:false} %}
|
|
</a>
|
|
{% EndUIToolbar %}
|
|
{% endif %}
|
|
{% EndUIPanel %}
|