- start a basic plugin that can send code to front

- for the moment it send js scripts, css, and variables
This commit is contained in:
asus
2024-02-07 18:46:28 +01:00
parent e3ae101fdd
commit b943682047
7 changed files with 98 additions and 3 deletions

View File

@@ -0,0 +1,11 @@
<?php
// https://stackify.com/how-to-log-to-console-in-php/
function console_log($output) {
$js_code = 'console.log(' . json_encode($output, JSON_HEX_TAG) . ');';
$js_code = '<script>' . $js_code . '</script>';
echo $js_code;
}
?>