mirror of
https://github.com/Combodo/iTop.git
synced 2026-03-10 11:34:13 +01:00
Merge branch 'split-file_bulkchange.class.inc.php_CellStatus_Modify.php' into split-file_bulkchange.class.inc.php
This commit is contained in:
23
core/bulkchange/CellStatus_Modify.php
Normal file
23
core/bulkchange/CellStatus_Modify.php
Normal file
@@ -0,0 +1,23 @@
|
||||
<?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;
|
||||
//}
|
||||
}
|
||||
Reference in New Issue
Block a user