Re: News 1.66 - Afficher Pub SI theme = XXX | Titre du sujet : Re: News 1.66 - Afficher Pub SI theme = XXX par caradoc sur 07/12/2010 10:44:47
dans article.php, regardes du côté de ces lignes :
if ($story_pages > 1) {
include_once XOOPS_ROOT_PATH.'/modules/news/include/pagenav.php';
$pagenav = new XoopsPageNav($story_pages, 1, $storypage, 'page', 'storyid='.$storyid);
if(news_isbot()) { // A bot is reading the articles, we are going to show him all the links to the pages
$xoopsTpl->assign('pagenav', $pagenav->renderNav($story_pages));
} else {
if(news_getmoduleoption('enhanced_pagenav')) {
$xoopsTpl->assign('pagenav', $pagenav->renderEnhancedSelect(true, $arr_titles));
} else {
$xoopsTpl->assign('pagenav', $pagenav->renderNav());
}
}
if ($storypage == 0) {
$story['text'] = $story['text'].'<br />'.news_getmoduleoption('advertisement').'<br />'.$articletext[$storypage];
} else {
$story['text'] = $articletext[$storypage];
}
} else {
$story['text'] = $story['text'].'<br />'.news_getmoduleoption('advertisement').'<br />'.$bodytext;
}
}
// Publicité
$xoopsTpl->assign('advertisement', news_getmoduleoption('advertisement'));
|
|