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