mirror of
https://github.com/Combodo/iTop.git
synced 2026-03-04 00:24:14 +01:00
16 lines
291 B
PHP
16 lines
291 B
PHP
<?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);
|
|
}
|
|
} |