23 lines
479 B
PHP
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";
|
|
|
|
?>
|