Files
Gregor Schulte b303dd00d6 Init Repo
2021-06-17 12:24:22 +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');
?>