Merge branch 'split-file_bulkchange.class.inc.php_RowStatus_Modify.php' into split-file_bulkchange.class.inc.php

This commit is contained in:
Potherca-Bot
2025-09-02 16:42:22 +00:00
committed by anne-catherine

View File

@@ -0,0 +1,16 @@
<?php
class RowStatus_Modify extends RowStatus
{
protected $m_iChanged;
public function __construct($iChanged)
{
$this->m_iChanged = $iChanged;
}
public function GetDescription()
{
return Dict::Format('UI:CSVReport-Row-Updated', $this->m_iChanged);
}
}