mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-25 05:14:12 +01:00
81 lines
3.1 KiB
PHP
81 lines
3.1 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Record the modification of a blob
|
|
*
|
|
* @package iTopORM
|
|
*/
|
|
class CMDBChangeOpSetAttributeBlob extends CMDBChangeOpSetAttribute
|
|
{
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public static function Init()
|
|
{
|
|
$aParams = array
|
|
(
|
|
"category" => "core/cmdb, grant_by_profile",
|
|
"key_type" => "",
|
|
"name_attcode" => "change",
|
|
"state_attcode" => "",
|
|
"reconc_keys" => array(),
|
|
"db_table" => "priv_changeop_setatt_data",
|
|
"db_key_field" => "id",
|
|
"db_finalclass_field" => "",
|
|
);
|
|
MetaModel::Init_Params($aParams);
|
|
MetaModel::Init_InheritAttributes();
|
|
MetaModel::Init_AddAttribute(new AttributeBlob("prevdata", array("depends_on" => array())));
|
|
|
|
// Display lists
|
|
MetaModel::Init_SetZListItems('details', array('date', 'userinfo', 'attcode')); // Attributes to be displayed for the complete details
|
|
MetaModel::Init_SetZListItems('list', array('date', 'userinfo', 'attcode')); // Attributes to be displayed for a list
|
|
}
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function GetDescription()
|
|
{
|
|
// Temporary, until we change the options of GetDescription() -needs a more global revision
|
|
$bIsHtml = true;
|
|
|
|
$sResult = '';
|
|
$oTargetObjectClass = $this->Get('objclass');
|
|
$oTargetObjectKey = $this->Get('objkey');
|
|
$oTargetSearch = new DBObjectSearch($oTargetObjectClass);
|
|
$oTargetSearch->AddCondition('id', $oTargetObjectKey, '=');
|
|
|
|
$oMonoObjectSet = new DBObjectSet($oTargetSearch);
|
|
if (UserRights::IsActionAllowedOnAttribute($this->Get('objclass'), $this->Get('attcode'), UR_ACTION_READ, $oMonoObjectSet) == UR_ALLOWED_YES) {
|
|
if (MetaModel::IsValidAttCode($this->Get('objclass'), $this->Get('attcode'))) {
|
|
$oAttDef = MetaModel::GetAttributeDef($this->Get('objclass'), $this->Get('attcode'));
|
|
$sAttName = $oAttDef->GetLabel();
|
|
} else {
|
|
// The attribute was renamed or removed from the object ?
|
|
$sAttName = $this->Get('attcode');
|
|
}
|
|
/** @var \ormDocument $oPrevDoc */
|
|
$oPrevDoc = $this->Get('prevdata');
|
|
if ($oPrevDoc->IsEmpty()) {
|
|
$sPrevious = '';
|
|
$sResult = Dict::Format('Change:AttName_Changed_PreviousValue_OldValue', $sAttName, $sPrevious);
|
|
} else {
|
|
$sFieldAsHtml = $oPrevDoc->GetAsHTML();
|
|
|
|
$sDisplayLabel = Dict::S('UI:OpenDocumentInNewWindow_');
|
|
$sDisplayUrl = $oPrevDoc->GetDisplayURL(get_class($this), $this->GetKey(), 'prevdata');
|
|
|
|
$sDownloadLabel = Dict::S('UI:DownloadDocument_');
|
|
$sDownloadUrl = $oPrevDoc->GetDownloadURL(get_class($this), $this->GetKey(), 'prevdata');
|
|
|
|
$sDocView = <<<HTML
|
|
{$sFieldAsHtml}
|
|
<a href="{$sDisplayUrl}" target="_blank">{$sDisplayLabel}</a> / <a href="{$sDownloadUrl}">{$sDownloadLabel}</a>
|
|
HTML;
|
|
$sResult = Dict::Format('Change:AttName_Changed_PreviousValue_OldValue', $sAttName, $sDocView);
|
|
}
|
|
}
|
|
return $sResult;
|
|
}
|
|
} |