Fork me on GitHub

Rapport de message :*
 

Re: Comment faire pour que le nom du module News dans le navigateur?

Titre du sujet : Re: Comment faire pour que le nom du module News dans le navigateur?
par hamoudi sur 09/01/2006 23:39:11

Le code de article.php est le suivant... Merci d'avance:
include "../../mainfile.php";
include_once 
"class/class.newsstory.php";
include_once 
'class/class.sfiles.php';
foreach (
$_POST as $k => $v) {
    ${
$k} = $v;
}

$storyid = (isset($_GET['storyid'])) ? intval($_GET['storyid']) : 0;
if (empty(
$storyid)) {
    
redirect_header("index.php",2,_NW_NOSTORY);
    exit();
}

$myts =& MyTextSanitizer::getInstance();
// set comment mode if not set

$article = new NewsStory($storyid);
if ( 
$article->published() == || $article->published() > time() ) {
    
redirect_header('index.php'2_NW_NOSTORY);
    exit();
}
$gperm_handler =& xoops_gethandler('groupperm');
if (
is_object($xoopsUser)) {
    
$groups $xoopsUser->getGroups();
} else {
    
$groups XOOPS_GROUP_ANONYMOUS;
}
if (!
$gperm_handler->checkRight("news_view"$article->topicid(), $groups$xoopsModule->getVar('mid'))) {
    
redirect_header('index.php'3_NOPERM);
    exit();
}

$storypage = isset($_GET['page']) ? intval($_GET['page']) : 0;
// update counter only when viewing top page
if (empty($_GET['com_id']) && $storypage == 0) {
    
$article->updateCounter();
}
$xoopsOption['template_main'] = 'news_article.html';
include_once 
XOOPS_ROOT_PATH.'/header.php';
$story['id'] = $storyid;
$story['posttime'] = formatTimestamp($article->published());
$story['title'] = $article->textlink()." : ".$article->title();
$story['text'] = $article->hometext();
$bodytext $article->bodytext();

if ( 
trim($bodytext) != '' ) {
    
$articletext explode("[pagebreak]"$bodytext);
    
$story_pages count($articletext);

    if (
$story_pages 1) {
        include_once 
XOOPS_ROOT_PATH.'/class/pagenav.php';
        
$pagenav = new XoopsPageNav($story_pages1$storypage'page''storyid='.$storyid);
        
$xoopsTpl->assign('pagenav'$pagenav->renderNav());
        
//$xoopsTpl->assign('pagenav', $pagenav->renderImageNav());

        
if ($storypage == 0) {
            
$story['text'] = $story['text'].'<br /><br />'.$articletext[$storypage];
        } else {
            
$story['text'] = $articletext[$storypage];
        }
    } else {
        
$story['text'] = $story['text'].'<br /><br />'.$bodytext;
    }
}

$story['poster'] = $article->uname();
if ( 
$story['poster'] ) {
    
$story['posterid'] = $article->uid();
    
$story['poster'] = '<a href="'.XOOPS_URL.'/userinfo.php?uid='.$story['posterid'].'">'.$story['poster'].'</a>';
} else {
    
$story['poster'] = '';
    
$story['posterid'] = 0;
    
$story['poster'] = $xoopsConfig['anonymous'];
}
$story['morelink'] = '';
$story['adminlink'] = '';
unset(
$isadmin);
if (
is_object($xoopsUser) && $xoopsUser->isAdmin($xoopsModule->getVar('mid')) ) {
    
$isadmin true;
    
$story['adminlink'] = $article->adminlink();
}
$story['topicid'] = $article->topicid();
$story['imglink'] = '';
$story['align'] = '';
if ( 
$article->topicdisplay() ) {
    
$story['imglink'] = $article->imglink();
    
$story['align'] = $article->topicalign();
}
$story['hits'] = $article->counter();
$story['mail_link'] = 'mailto:?subject='.sprintf(_NW_INTARTICLE,$xoopsConfig['sitename']).'&body='.sprintf(_NW_INTARTFOUND$xoopsConfig['sitename']).':  '.XOOPS_URL.'/modules/news/article.php?storyid='.$article->storyid();
$xoopsTpl->assign('story'$story);
$xoopsTpl->assign('lang_printerpage'_NW_PRINTERFRIENDLY);
$xoopsTpl->assign('lang_sendstory'_NW_SENDSTORY);
$xoopsTpl->assign('lang_on'_ON);
$xoopsTpl->assign('lang_postedby'_POSTEDBY);
$xoopsTpl->assign('lang_reads'_READS);
$xoopsTpl->assign('mail_link''mailto:?subject='.sprintf(_NW_INTARTICLE,$xoopsConfig['sitename']).'&body='.sprintf(_NW_INTARTFOUND$xoopsConfig['sitename']).':  '.XOOPS_URL.'/modules/news/article.php?storyid='.$article->storyid());

$xoopsTpl->assign('lang_attached_files',_NW_ATTACHEDFILES);
$sfiles = new sFiles();
$filesarr=Array();
$newsfiles=Array();
$filesarr=$sfiles->getAllbyStory($storyid);
$filescount=count($filesarr);
$xoopsTpl->assign('attached_files_count',$filescount);
if(
$filescount>0) {
    foreach (
$filesarr as $onefile) {
        
$newsfiles[]=Array('file_id'=>$onefile->getFileid(), 'visitlink' => XOOPS_URL.'/modules/news/visit.php?fileid='.$onefile->getFileid(),'file_realname'=>$onefile->getFileRealName(), 'file_attacheddate'=>formatTimestamp($onefile->getDate()), 'file_mimetype'=>$onefile->getMimetype(), 'file_downloadname'=>XOOPS_UPLOAD_URL.'/'.$onefile->getDownloadname());
    }
    
$xoopsTpl->assign('attached_files',$newsfiles);
}
$xoopsTpl->assign('xoops_pagetitle'$myts->makeTboxData4Show($xoopsModule->name()) . ' - ' $myts->makeTboxData4Show($article->topic_title()) . ' - ' $myts->makeTboxData4Show($article->title()));
include 
XOOPS_ROOT_PATH.'/include/comment_view.php';

include 
XOOPS_ROOT_PATH.'/footer.php';
?>

Propulsé avec XOOPS | Graphisme adapté par Tatane, Grosdunord, Montuy337513

38 Personne(s) en ligne (29 Personne(s) connectée(s) sur Forum) | Utilisateur(s): 0 | Invité(s): 38 | Plus ...