Files
iTop/sources/Core/BulkChange/RowStatus_Modify.php
Anne-Cath dd2f6e7413 WIP
2025-09-08 15:21:34 +02:00

16 lines
299 B
PHP

<?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);
}
}