__fabrice Posted August 13, 2010 Share Posted August 13, 2010 Hello,Je voulais juste savoir si on peut faire un module qui s'affichera dans une page à part, une page seule. Sans passer par un hook.Par exemple, dans le footer, je veux faire un lien qui va aller vers l'affichage du module " blocklink " (blocklink.tpl en fait)Pour l'instant ce module (blocklink) ne s'affiche que par l'intermédiaire d'un hookHome. On peut faire çà sans ?, mais le module devra rester administrable bien sur.Merci de votre aide.Fabrice Link to comment Share on other sites More sharing options...
iNemo Posted August 17, 2010 Share Posted August 17, 2010 Tu créer la page blocklink.php à la racine et tu colle dedans : <?php include(dirname(__FILE__).'/config/config.inc.php'); if(intval(Configuration::get('PS_REWRITING_SETTINGS')) === 1) $rewrited_url = __PS_BASE_URI__; include(dirname(__FILE__).'/header.php'); $smarty->display(_PS_THEME_DIR_.'blocklink.tpl'); include(dirname(__FILE__).'/footer.php'); ?> ca devrai fonctionner... Link to comment Share on other sites More sharing options...
Apaccy Posted August 18, 2010 Share Posted August 18, 2010 Bonsoir,On peu aussi faire comme ça : <?php require_once(dirname(__FILE__).'/config/config.inc.php'); require_once(dirname(__FILE__).'/init.php'); ?> </html> <body> <?php $moduleInstance = Module::getInstanceByName( 'blockvariouslinks'); echo $moduleInstance->hookFooter( null); ?> <body> </html> Cdlt, Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now