Bonjour,
Je souhaite insérer du code source dans le fichier index.php de mon template. En gros cela donnerais ça :
J'ai un script à insérer avant la balise head, du code dans la balise body et du code juste avant la fin de balise </body>. Mon problème est que dans le fichier index.php du template il n'y a que du code php. Comment svp réaliser cette tâche.
Ci-dessous le code source de l'index.php du template :
Je souhaite insérer du code source dans le fichier index.php de mon template. En gros cela donnerais ça :
<html>
<head>
<title>Document sans titre</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</script language='javascript' type='text/javascript' src='fbparam.js' </script>
</script language='javascript' type='text/javascript' src='fblib.js'</script>
</head>
<body onLoad='start();'>
<script LANGUAGE='javascript' type='text/javascript' src='fbfulltrack.js'></script>
</body>
</body>
</html>
<head>
<title>Document sans titre</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</script language='javascript' type='text/javascript' src='fbparam.js' </script>
</script language='javascript' type='text/javascript' src='fblib.js'</script>
</head>
<body onLoad='start();'>
<script LANGUAGE='javascript' type='text/javascript' src='fbfulltrack.js'></script>
</body>
</body>
</html>
Ci-dessous le code source de l'index.php du template :
<?php
/*
* ------------------------------------------------------------------------
* JA KranosTemplate J17
* ------------------------------------------------------------------------
* Copyright (C) 2004-2011 J.O.O.M Solutions Co., Ltd. All Rights Reserved.
* @license - Copyrighted Commercial Software
* Author: J.O.O.M Solutions Co., Ltd
* Websites: http://www.joomlart.com - http://www.joomlancers.com
* This file may not be redistributed in whole or significant part.
* ------------------------------------------------------------------------
*/
if (class_exists('T3Template')) {
$tmpl = T3Template::getInstance();
$tmpl->setTemplate($this);
$tmpl->render();
return;
} else {
//Need to install or enable JAT3 Plugin
echo JText::_('MISSING_JAT3_FRAMEWORK_PLUGIN');
}
/*
* ------------------------------------------------------------------------
* JA KranosTemplate J17
* ------------------------------------------------------------------------
* Copyright (C) 2004-2011 J.O.O.M Solutions Co., Ltd. All Rights Reserved.
* @license - Copyrighted Commercial Software
* Author: J.O.O.M Solutions Co., Ltd
* Websites: http://www.joomlart.com - http://www.joomlancers.com
* This file may not be redistributed in whole or significant part.
* ------------------------------------------------------------------------
*/
if (class_exists('T3Template')) {
$tmpl = T3Template::getInstance();
$tmpl->setTemplate($this);
$tmpl->render();
return;
} else {
//Need to install or enable JAT3 Plugin
echo JText::_('MISSING_JAT3_FRAMEWORK_PLUGIN');
}
Commentaire