Files
2023-03-28 10:34:44 +02:00

11 lines
242 B
PHP

<?php
if (!defined('PICONTROL')) exit();
$tpl = new PiTpl;
$tpl->assign('type', $data['type']);
$tpl->assign('title', $data['title']);
$tpl->assign('msg', $data['msg']);
$tpl->assign('cancelable', $data['cancelable']);
$tpl->draw('msg');
?>