1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-04 18:29:39 +02:00
Oinktube/plugin/CustomizeUser/View/footer.php
2022-03-17 11:43:59 -03:00

15 lines
No EOL
280 B
PHP

<?php
$notifications = CustomizeUser::getNotifications();
?>
<!-- CustomizeUser Footer -->
<script>
$(document).ready(function () {
<?php
foreach ($notifications as $value) {
if (!empty($value['js'])) {
echo $value['js'];
}
}
?>
});
</script>