mirror of
https://github.com/itflow-org/itflow
synced 2026-03-19 04:04:51 +00:00
12 lines
262 B
PHP
12 lines
262 B
PHP
<script>// Initialize Select2 Elements
|
|
$('.select2').select2({
|
|
theme: 'bootstrap4',
|
|
});
|
|
</script>
|
|
|
|
<?php
|
|
$content = ob_get_clean();
|
|
|
|
// Return the title and content as a JSON response
|
|
echo json_encode(['title' => $title, 'content' => $content]);
|
|
?>
|