mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-23 10:38:45 +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>
26 lines
466 B
PHP
26 lines
466 B
PHP
<?php
|
|
|
|
namespace Combodo\iTop\DataFeatureRemoval\Entity;
|
|
|
|
class DeletionPlanSummaryEntity
|
|
{
|
|
public string $sClass;
|
|
|
|
/**
|
|
* @var int : DEL_MANUAL|DEL_AUTO|DEL_SILENT|DEL_MOVEUP|DEL_NONE
|
|
* @see \AttributeDefinition DEL_xxx
|
|
*/
|
|
public int $iMode = 0;
|
|
public ?string $sIssue = null;
|
|
public int $iUpdateCount = 0;
|
|
public int $iDeleteCount = 0;
|
|
|
|
/**
|
|
* @param string $sClass
|
|
*/
|
|
public function __construct(string $sClass)
|
|
{
|
|
$this->sClass = $sClass;
|
|
}
|
|
}
|