object template.massupdate(object parameters)
Ez a módszer lehetővé teszi a kapcsolódó objektumok egyidejű cseréjét vagy eltávolítását és frissítse a tulajdonságokat több sablonon.
Ez a módszer csak az Admin és a Kiemelt rendszergazda számára érhető el felhasználói típusok. A metódus meghívására vonatkozó engedélyek felhasználói szerepkörben visszavonhatók beállítások. Lásd: User roles további információért.
(object)
Parameters containing the IDs of the templates to update and the objects to replace for the templates.
The method accepts the following parameters.
Parameter | Type | Description |
---|---|---|
templates (required) |
object/array | Templates to be updated. The templates must have the templateid property defined. |
groups | object/array | Host groups to replace the current host groups the templates belong to. The host groups must have the groupid property defined. |
macros | object/array | User macros to replace the current user macros on the given templates. |
templates_clear | object/array | Templates to unlink and clear from the given templates. The templates must have the templateid property defined. |
templates_link | object/array | Templates to replace the currently linked templates. The templates must have the templateid property defined. |
(object)
A frissített sablonok azonosítóit tartalmazó objektumot ad vissza a templateids
tulajdonság alatt.
Unlink and clear template "10091" from the given templates.
{
"jsonrpc": "2.0",
"method": "template.massupdate",
"params": {
"templates": [
{
"templateid": "10085"
},
{
"templateid": "10086"
}
],
"templates_clear": [
{
"templateid": "10091"
}
]
},
"id": 1
}
Response:
Unlink and clear template "10091" from the given templates.
Request:
{
"jsonrpc": "2.0",
"method": "template.massupdate",
"params": {
"templates": [
{
"templateid": "10085"
},
{
"templateid": "10086"
}
],
"templates_clear": [
{
"templateid": "10091"
}
]
},
"auth": "038e1d7b1735c6a5436ee9eae095879e",
"id": 1
}
Response:
CTemplate::massUpdate() in ui/include/classes/api/services/CTemplate.php.