designtopack/public/site/snippets/footer.php

15 lines
368 B
PHP
Raw Normal View History

2024-09-10 12:09:53 +02:00
<script>
const kirbyData = {
user: {
role: '<?= $kirby->user()->role() ?>',
<?php if ($kirby->user()->role() == 'client'): ?>
client: {
name: '<?= $kirby->user()->client()->toPage()->title() ?>',
uuid: '<?= $kirby->user()->client()->toPage()->uuid() ?>',
}
<?php endif ?>
}
}
</script>
2024-07-11 12:42:29 +02:00
</body>
2024-07-10 18:43:46 +02:00
</html>