mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 10:02:33 +03:00
10 lines
187 B
PHP
10 lines
187 B
PHP
<?php
|
|
/**
|
|
* @var string $attributes
|
|
* @var array $global_variables
|
|
*/
|
|
?>
|
|
<script <?= $attributes ?>>
|
|
const GlobalVariables = <?= json_encode($global_variables ?? []) ?>
|
|
</script>
|
|
|