Move to sources Core BulkChange

This commit is contained in:
Anne-Cath
2025-09-02 18:49:32 +02:00
parent a31e3450bf
commit 47aee14362
16 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
<?php
class CellStatus_Modify extends CellChangeSpec
{
protected $m_previousValue;
public function __construct($proposedValue, $previousValue = null)
{
// Unused (could be costly to know -see the case of reconciliation on ext keys)
//$this->m_previousValue = $previousValue;
parent::__construct($proposedValue);
}
public function GetDescription()
{
return Dict::S('UI:CSVReport-Value-Modified');
}
//public function GetPreviousValue()
//{
// return $this->m_previousValue;
//}
}