14 lines
226 B
PHP
14 lines
226 B
PHP
<?php
|
|
|
|
function fipfcard_plugin_content() {
|
|
$fipfcard_tools = new PLGNTOOLS();
|
|
|
|
$fipfcard_tools->add_files_to_front( array(
|
|
"menu/example_menu.js",
|
|
));
|
|
|
|
echo $fipfcard_tools->create_html("menu/example_menu.html");
|
|
}
|
|
|
|
?>
|