mirror of
https://github.com/Combodo/iTop.git
synced 2026-03-02 15:44:11 +01:00
16 lines
299 B
PHP
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);
|
|
}
|
|
} |