16 lines
281 B
PHP
16 lines
281 B
PHP
<?php
|
|
|
|
function fipfcard_plugin_content() {
|
|
global $fipfcard_first_script;
|
|
error_log("in menu : first_script:");
|
|
error_log($fipfcard_first_script);
|
|
|
|
fipfcard_add_files_to_front( array(
|
|
"menu/example_menu.js",
|
|
));
|
|
|
|
echo fipfcard_create_html("menu/example_menu.html");
|
|
}
|
|
|
|
?>
|