mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-04 18:29:39 +02:00
15 lines
No EOL
280 B
PHP
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>
|