diff --git a/core/bulkchange/CellStatus_Ambiguous.php b/core/bulkchange/CellStatus_Ambiguous.php new file mode 100644 index 000000000..171e87bcc --- /dev/null +++ b/core/bulkchange/CellStatus_Ambiguous.php @@ -0,0 +1,43 @@ +m_iCount = $iCount; + $this->sSerializedSearch = $sSerializedSearch; + parent::__construct(null, $previousValue, ''); + } + + public function GetDescription() + { + $sCount = $this->m_iCount; + return Dict::Format('UI:CSVReport-Value-Ambiguous', $sCount); + } + + /** + * @return string + * @since 3.1.0 N°5305 + */ + public function GetSearchLinkUrl() + { + return sprintf("UI.php?operation=search&filter=%s", + rawurlencode($this->sSerializedSearch ?? "") + ); + } +} \ No newline at end of file