pour prod
This commit is contained in:
36
app/Views/layouts/footer.php
Normal file
36
app/Views/layouts/footer.php
Normal file
@@ -0,0 +1,36 @@
|
||||
<?php
|
||||
/** @var string $csrfToken */
|
||||
/** @var array $motifs */
|
||||
/** @var array $scripts */
|
||||
/** @var array $modules */
|
||||
/** @var array $pageConfig */
|
||||
/** @var array $accessProfile */
|
||||
/** @var array $permissions */
|
||||
?>
|
||||
</main>
|
||||
<script>
|
||||
window.PTA_CONFIG = {
|
||||
csrfToken: <?= json_encode($csrfToken, JSON_THROW_ON_ERROR) ?>,
|
||||
access: <?= json_encode($accessProfile, JSON_THROW_ON_ERROR | JSON_UNESCAPED_UNICODE) ?>,
|
||||
permissions: <?= json_encode($permissions, JSON_THROW_ON_ERROR | JSON_UNESCAPED_UNICODE) ?>,
|
||||
motifs: <?= json_encode(array_map(static function (array $motif): array {
|
||||
return [
|
||||
'id' => (int) $motif['id_motif'],
|
||||
'code' => (string) $motif['code'],
|
||||
'label' => (string) $motif['libelle'],
|
||||
'quota' => (int) $motif['compte_dans_quota'] === 1,
|
||||
];
|
||||
}, $motifs), JSON_THROW_ON_ERROR | JSON_UNESCAPED_UNICODE) ?>
|
||||
};
|
||||
window.PTA_PAGE_CONFIG = <?= json_encode([
|
||||
'modules' => $modules,
|
||||
'params' => $pageConfig,
|
||||
], JSON_THROW_ON_ERROR | JSON_UNESCAPED_UNICODE) ?>;
|
||||
</script>
|
||||
<script src="assets/js/core.js?v=7.7"></script>
|
||||
<?php foreach ($scripts as $script): ?>
|
||||
<script src="assets/js/<?= htmlspecialchars($script) ?>?v=7.7"></script>
|
||||
<?php endforeach; ?>
|
||||
<script src="assets/js/page-bootstrap.js?v=7.7"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user