Source
235
235
return null;
236
236
}
237
237
238
238
while (array_key_exists($parent_templates['links'][$httptestid]['httptestid'], $parent_templates['links'])) {
239
239
$httptestid = $parent_templates['links'][$httptestid]['httptestid'];
240
240
}
241
241
242
242
$template = $parent_templates['templates'][$parent_templates['links'][$httptestid]['hostid']];
243
243
244
244
if ($provide_links && $template['permission'] == PERM_READ_WRITE) {
245
-
$name = (new CLink(CHtml::encode($template['name']),
245
+
$name = (new CLink($template['name'],
246
246
(new CUrl('httpconf.php'))
247
247
->setArgument('filter_set', '1')
248
248
->setArgument('filter_hostids', [$template['hostid']])
249
249
->setArgument('context', 'template')
250
250
))->addClass(ZBX_STYLE_LINK_ALT);
251
251
}
252
252
else {
253
-
$name = new CSpan(CHtml::encode($template['name']));
253
+
$name = new CSpan($template['name']);
254
254
}
255
255
256
256
return [$name->addClass(ZBX_STYLE_GREY), NAME_DELIMITER];
257
257
}
258
258
259
259
/**
260
260
* Returns a list of web scenario templates.
261
261
*
262
262
* @param string $httptestid
263
263
* @param array $parent_templates The list of the templates, prepared by getHttpTestParentTemplates() function.
265
265
*
266
266
* @return array
267
267
*/
268
268
function makeHttpTestTemplatesHtml($httptestid, array $parent_templates, bool $provide_links) {
269
269
$list = [];
270
270
271
271
while (array_key_exists($httptestid, $parent_templates['links'])) {
272
272
$template = $parent_templates['templates'][$parent_templates['links'][$httptestid]['hostid']];
273
273
274
274
if ($provide_links && $template['permission'] == PERM_READ_WRITE) {
275
-
$name = new CLink(CHtml::encode($template['name']),
275
+
$name = new CLink($template['name'],
276
276
(new CUrl('httpconf.php'))
277
277
->setArgument('form', 'update')
278
278
->setArgument('hostid', $template['hostid'])
279
279
->setArgument('httptestid', $parent_templates['links'][$httptestid]['httptestid'])
280
280
->setArgument('context', 'template')
281
281
);
282
282
}
283
283
else {
284
-
$name = (new CSpan(CHtml::encode($template['name'])))->addClass(ZBX_STYLE_GREY);
284
+
$name = (new CSpan($template['name']))->addClass(ZBX_STYLE_GREY);
285
285
}
286
286
287
287
array_unshift($list, $name, [NBSP(), RARR(), NBSP()]);
288
288
289
289
$httptestid = $parent_templates['links'][$httptestid]['httptestid'];
290
290
}
291
291
292
292
if ($list) {
293
293
array_pop($list);
294
294
}