15 lines
No EOL
368 B
PHP
15 lines
No EOL
368 B
PHP
<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>
|
|
</body>
|
|
</html>
|