Merge branch 'split-file_cmdbchangeop.class.inc.php_CMDBChangeOpCreate.php' into split-file_cmdbchangeop.class.inc.php

This commit is contained in:
Potherca-Bot
2025-09-02 22:28:24 +00:00
committed by anne-catherine
2 changed files with 37 additions and 1190 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,37 @@
<?php
/**
* Record the creation of an object
*
* @package iTopORM
*/
class CMDBChangeOpCreate extends CMDBChangeOp
{
/**
* @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_create",
"db_key_field" => "id",
"db_finalclass_field" => "",
);
MetaModel::Init_Params($aParams);
MetaModel::Init_InheritAttributes();
}
/**
* @inheritDoc
*/
public function GetDescription()
{
return Dict::S('Change:ObjectCreated');
}
}