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,16 @@
<?php
class RowStatus_Issue extends RowStatus
{
protected $m_sReason;
public function __construct($sReason)
{
$this->m_sReason = $sReason;
}
public function GetDescription()
{
return Dict::Format('UI:CSVReport-Row-Issue', $this->m_sReason);
}
}