mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 07:24:13 +01:00
23 lines
558 B
PHP
23 lines
558 B
PHP
<?php
|
|
|
|
class CellStatus_Modify extends CellChangeSpec
|
|
{
|
|
protected $m_previousValue;
|
|
|
|
public function __construct($proposedValue, $previousValue = null)
|
|
{
|
|
// Unused (could be costly to know -see the case of reconciliation on ext keys)
|
|
//$this->m_previousValue = $previousValue;
|
|
parent::__construct($proposedValue);
|
|
}
|
|
|
|
public function GetDescription()
|
|
{
|
|
return Dict::S('UI:CSVReport-Value-Modified');
|
|
}
|
|
|
|
//public function GetPreviousValue()
|
|
//{
|
|
// return $this->m_previousValue;
|
|
//}
|
|
} |