Init Repo

This commit is contained in:
Gregor Schulte
2021-06-15 11:08:34 +02:00
parent d0b72a118d
commit b303dd00d6
330 changed files with 93268 additions and 0 deletions

11
resources/content/msg.php Normal file
View File

@@ -0,0 +1,11 @@
<?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');
?>