14 lines
256 B
PHP
14 lines
256 B
PHP
|
<?php
|
||
|
|
||
|
function theme_einsteiniumist_insertion_in_head($flux) {
|
||
|
|
||
|
//print_r($GLOBALS["page"]["texte"])
|
||
|
|
||
|
$flux .= "<script type=\"text/javascript\" src=\"" . find_in_path('js/script_einsteiniumist.js') . "\"></script>
|
||
|
";
|
||
|
return $flux;
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
?>
|