mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 15:34:12 +01:00
104 lines
3.4 KiB
PHP
104 lines
3.4 KiB
PHP
<?php
|
|
// Copyright (C) 2021 Combodo SARL
|
|
//
|
|
// This file is part of iTop.
|
|
//
|
|
// iTop is free software; you can redistribute it and/or modify
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// iTop is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU Affero General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
// along with iTop. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
|
|
/**
|
|
* Base class to hold the value managed by CustomFieldsHandler
|
|
*
|
|
* @copyright Copyright (C) 2021 Combodo SARL
|
|
* @license http://opensource.org/licenses/AGPL-3.0
|
|
*/
|
|
|
|
class ormCustomFieldsValue
|
|
{
|
|
protected $oHostObject;
|
|
protected $sAttCode;
|
|
protected $aCurrentValues;
|
|
|
|
/**
|
|
* @param DBObject $oHostObject
|
|
* @param $sAttCode
|
|
*/
|
|
public function __construct(DBObject $oHostObject, $sAttCode, $aCurrentValues = null)
|
|
{
|
|
$this->oHostObject = $oHostObject;
|
|
$this->sAttCode = $sAttCode;
|
|
$this->aCurrentValues = $aCurrentValues;
|
|
}
|
|
|
|
public function GetValues()
|
|
{
|
|
return $this->aCurrentValues;
|
|
}
|
|
|
|
/**
|
|
* Wrapper used when the only thing you have is the value...
|
|
* @return \Combodo\iTop\Form\Form
|
|
*/
|
|
public function GetForm()
|
|
{
|
|
$oAttDef = MetaModel::GetAttributeDef(get_class($this->oHostObject), $this->sAttCode);
|
|
return $oAttDef->GetForm($this->oHostObject);
|
|
}
|
|
|
|
public function GetAsHTML($bLocalize = true)
|
|
{
|
|
$oAttDef = MetaModel::GetAttributeDef(get_class($this->oHostObject), $this->sAttCode);
|
|
$oHandler = $oAttDef->GetHandler($this->GetValues());
|
|
return $oHandler->GetAsHTML($this->aCurrentValues, $bLocalize);
|
|
}
|
|
|
|
public function GetAsXML($bLocalize = true)
|
|
{
|
|
$oAttDef = MetaModel::GetAttributeDef(get_class($this->oHostObject), $this->sAttCode);
|
|
$oHandler = $oAttDef->GetHandler($this->GetValues());
|
|
return $oHandler->GetAsXML($this->aCurrentValues, $bLocalize);
|
|
}
|
|
|
|
public function GetAsCSV($sSeparator = ',', $sTextQualifier = '"', $bLocalize = true)
|
|
{
|
|
$oAttDef = MetaModel::GetAttributeDef(get_class($this->oHostObject), $this->sAttCode);
|
|
$oHandler = $oAttDef->GetHandler($this->GetValues());
|
|
return $oHandler->GetAsCSV($this->aCurrentValues, $sSeparator, $sTextQualifier, $bLocalize);
|
|
}
|
|
|
|
/**
|
|
* Get various representations of the value, for insertion into a template (e.g. in Notifications)
|
|
* @param $value mixed The current value of the field
|
|
* @param $sVerb string The verb specifying the representation of the value
|
|
* @param $bLocalize bool Whether or not to localize the value
|
|
*/
|
|
public function GetForTemplate($sVerb, $bLocalize = true)
|
|
{
|
|
$oAttDef = MetaModel::GetAttributeDef(get_class($this->oHostObject), $this->sAttCode);
|
|
$oHandler = $oAttDef->GetHandler($this->GetValues());
|
|
return $oHandler->GetForTemplate($this->aCurrentValues, $sVerb, $bLocalize);
|
|
}
|
|
|
|
/**
|
|
* @param ormCustomFieldsValue $fellow
|
|
* @return bool
|
|
*/
|
|
public function Equals(ormCustomFieldsValue $oReference)
|
|
{
|
|
$oAttDef = MetaModel::GetAttributeDef(get_class($this->oHostObject), $this->sAttCode);
|
|
$oHandler = $oAttDef->GetHandler($this->GetValues());
|
|
return $oHandler->CompareValues($this->aCurrentValues, $oReference->aCurrentValues);
|
|
}
|
|
}
|