Files
2024_WEBSITE_fipf/plugins/fipfcard_plugin/php/utils/globals.php
2024-02-12 11:26:44 +01:00

23 lines
479 B
PHP

<?php
/*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
globals variables
const vs define : https://stackoverflow.com/questions/2447791/php-define-vs-const
*/
/* switch console_log
const CONSOLE_OFF = true;
*/
const FIPFCARD_CONSOLE_OFF = false;
/* a variable that will contain the name of the first script enqueued
*/
$fipfcard_first_script = null;
/* path to ajax.js file, from root of js dir
*/
$fipfcard_ajax_file = "utils/ajax.js";
?>