plxPlugins->callHook('AdminCommentNewPrepend')); # Control de l'accès à la page en fonction du profil de l'utilisateur connecté $plxAdmin->checkProfil(PROFIL_ADMIN, PROFIL_MANAGER, PROFIL_MODERATOR); # Interdire de l'accès à la page si les commentaires sont désactivés if(!$plxAdmin->aConf['allow_com']) { header('Location: index.php'); exit; } # validation de l'id de l'article si passé en parametre if(isset($_GET['a']) AND !preg_match('/^_?[0-9]{4}$/',$_GET['a'])) { plxMsg::Error(L_ERR_UNKNOWN_ARTICLE); # Article inexistant header('Location: index.php'); exit; } # On va checker le mode (répondre ou écrire) if(!empty($_GET['c'])) { # Mode "answer" # On check que le commentaire existe et est "online" // if(!$plxAdmin->getCommentaires('/^'.plxUtils::nullbyteRemove($_GET['c']).'.xml$/','')) { # Commentaire inexistant if(!$plxAdmin->getCommentaires('/^'.plxUtils::nullbyteRemove($_GET['c']).'.xml$/','',0,1,'all')) { # On redirige plxMsg::Error(L_ERR_ANSWER_UNKNOWN_COMMENT); header('Location: comments.php'.(!empty($_GET['a'])?'?a='.$_GET['a']:'')); exit; } # Commentaire offline if(preg_match('/^_/',$_GET['c'])) { # On redirige plxMsg::Error(L_ERR_ANSWER_OFFLINE_COMMENT); header('Location: comments.php'.(!empty($_GET['a'])?'?a='.$_GET['a']:'')); exit; } # On va rechercher notre article if(($aFile = $plxAdmin->plxGlob_arts->query('/^'.$plxAdmin->plxRecord_coms->f('article').'.(.+).xml$/','','sort',0,1)) == false) { # Article inexistant plxMsg::Error(L_ERR_COMMENT_UNKNOWN_ARTICLE); header('Location: index.php'); exit; } # Variables de traitement $artId = $plxAdmin->plxRecord_coms->f('article'); if(!empty($_GET['a'])) $get = 'c='.$_GET['c'].'&a='.$_GET['a']; else $get = 'c='.$_GET['c']; $aArt = $plxAdmin->parseArticle(PLX_ROOT.$plxAdmin->aConf['racine_articles'].$aFile['0']); # Variable du formulaire $content = '@'.$plxAdmin->plxRecord_coms->f('author')." :\n"; $article = ''; $article .= plxUtils::strCheck($aArt['title']); $article .= ''; # Ok, on récupère les commentaires de l'article $plxAdmin->getCommentaires('/^'.str_replace('_','',$artId).'.(.*).xml$/','rsort'); } elseif(!empty($_GET['a'])) { # Mode "new" # On check l'article si il existe bien if(($aFile = $plxAdmin->plxGlob_arts->query('/^'.$_GET['a'].'.(.+).xml$/','','sort',0,1)) == false) { plxMsg::Error(L_ERR_COMMENT_UNEXISTENT_ARTICLE); header('Location: index.php'); exit; } # Variables de traitement $artId = $_GET['a']; $get = 'a='.$_GET['a']; $aArt = $plxAdmin->parseArticle(PLX_ROOT.$plxAdmin->aConf['racine_articles'].$aFile['0']); # Variable du formulaire $content = ''; $article = ''; $article .= plxUtils::strCheck($aArt['title']); $article .= ''; # Ok, on récupère les commentaires de l'article $plxAdmin->getCommentaires('/^'.str_replace('_','',$artId).'.(.*).xml$/','rsort'); } else { # Mode inconnu header('Location: .index.php'); exit; } # On a validé le formulaire if(!empty($_POST) AND !empty($_POST['content'])) { # Création du commentaire if(!$plxAdmin->newCommentaire(str_replace('_','',$artId),$_POST['content'])) { # Erreur plxMsg::Error(L_ERR_CREATING_COMMENT); } else { # Ok plxMsg::Info(L_CREATING_COMMENT_SUCCESSFUL); } header('Location: comment_new.php?a='.$artId); exit; } # On inclut le header include(dirname(__FILE__).'/top.php'); ?>
plxRecord_coms->f('author'); ?> @ plxRecord_coms->f('date'), '#day #num_day #month #num_year(4) à #hour:#minute'); ?> - -