1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271
|
<?php
/**
* Listing des articles
*
* @package PLX
* @author Stephane F et Florent MONTHEL
**/
include(dirname(__FILE__).'/prepend.php');
# Control du token du formulaire
plxToken::validateFormToken($_POST);
# Hook Plugins
eval($plxAdmin->plxPlugins->callHook('AdminIndexPrepend'));
# Suppression des articles selectionnes
if(isset($_POST['selection']) AND !empty($_POST['sel']) AND ($_POST['selection']=='delete') AND isset($_POST['idArt'])) {
foreach ($_POST['idArt'] as $k => $v) $plxAdmin->delArticle($v);
header('Location: index.php');
exit;
}
# Récuperation de l'id de l'utilisateur
$userId = ($_SESSION['profil'] < PROFIL_WRITER ? '[0-9]{3}' : $_SESSION['user']);
# Récuperation des paramètres
if(!empty($_GET['sel']) AND in_array($_GET['sel'], array('all','published', 'draft','mod'))) {
$_SESSION['sel_get']=plxUtils::nullbyteRemove($_GET['sel']);
$_SESSION['sel_cat']='';
}
else
$_SESSION['sel_get']=(isset($_SESSION['sel_get']) AND !empty($_SESSION['sel_get']))?$_SESSION['sel_get']:'all';
if(!empty($_POST['sel_cat']))
if(isset($_SESSION['sel_cat']) AND $_SESSION['sel_cat']==$_POST['sel_cat']) # annulation du filtre
$_SESSION['sel_cat']='all';
else # prise en compte du filtre
$_SESSION['sel_cat']=$_POST['sel_cat'];
else
$_SESSION['sel_cat']=(isset($_SESSION['sel_cat']) AND !empty($_SESSION['sel_cat']))?$_SESSION['sel_cat']:'all';
# Recherche du motif de sélection des articles en fonction des paramètres
$catIdSel = '';
$mod='';
switch ($_SESSION['sel_get']) {
case 'published':
$catIdSel = '[home|0-9,]*FILTER[home|0-9,]*';
$mod='';
break;
case 'draft':
$catIdSel = '[home|0-9,]*draft,FILTER[home|0-9,]*';
$mod='_?';
break;
case 'all':
$catIdSel = '[home|draft|0-9,]*FILTER[draft|home|0-9,]*';
$mod='_?';
break;
case 'mod':
$catIdSel = '[home|draft|0-9,]*FILTER[draft|home|0-9,]*';
$mod='_';
break;
}
switch ($_SESSION['sel_cat']) {
case 'all' :
$catIdSel = str_replace('FILTER', '', $catIdSel); break;
case '000' :
$catIdSel = str_replace('FILTER', '000', $catIdSel); break;
case 'home':
$catIdSel = str_replace('FILTER', 'home', $catIdSel); break;
case preg_match('/^[0-9]{3}$/', $_SESSION['sel_cat'])==1:
$catIdSel = str_replace('FILTER', $_SESSION['sel_cat'], $catIdSel);
}
# Nombre d'article sélectionnés
$nbArtPagination = $plxAdmin->nbArticles($catIdSel, $userId);
# Récupération du texte à rechercher
$artTitle = (!empty($_GET['artTitle']))?plxUtils::unSlash(trim(urldecode($_GET['artTitle']))):'';
if(empty($artTitle)) {
$artTitle = (!empty($_POST['artTitle']))?plxUtils::unSlash(trim(urldecode($_POST['artTitle']))):'';
}
$_GET['artTitle'] = $artTitle;
# On génère notre motif de recherche
$motif = '/^'.$mod.'[0-9]{4}.'.$catIdSel.'.'.$userId.'.[0-9]{12}.(.*)'.plxUtils::title2filename($_GET['artTitle']).'(.*).xml$/';
# Calcul du nombre de page si on fait une recherche
if($_GET['artTitle']!='') {
if($arts = $plxAdmin->plxGlob_arts->query($motif))
$nbArtPagination = sizeof($arts);
}
# Traitement
$plxAdmin->prechauffage($motif);
$plxAdmin->getPage();
$arts = $plxAdmin->getArticles('all'); # Recuperation des articles
# Génération de notre tableau des catégories
$aFilterCat['all'] = L_ARTICLES_ALL_CATEGORIES;
$aFilterCat['home'] = L_CATEGORY_HOME;
$aFilterCat['000'] = L_UNCLASSIFIED;
if($plxAdmin->aCats) {
foreach($plxAdmin->aCats as $k=>$v) {
$aCat[$k] = plxUtils::strCheck($v['name']);
$aFilterCat[$k] = plxUtils::strCheck($v['name']);
}
$aAllCat[L_CATEGORIES_TABLE] = $aCat;
}
$aAllCat[L_SPECIFIC_CATEGORIES_TABLE]['home'] = L_CATEGORY_HOME_PAGE;
$aAllCat[L_SPECIFIC_CATEGORIES_TABLE]['draft'] = L_DRAFT;
$aAllCat[L_SPECIFIC_CATEGORIES_TABLE][''] = L_ALL_ARTICLES_CATEGORIES_TABLE;
# On inclut le header
include(dirname(__FILE__).'/top.php');
?>
<?php eval($plxAdmin->plxPlugins->callHook('AdminIndexTop')) # Hook Plugins ?>
<form action="index.php" method="post" id="form_articles">
<div class="inline-form action-bar">
<h2><?php echo L_ARTICLES_LIST ?></h2>
<ul class="menu">
<li><a <?php echo ($_SESSION['sel_get']=='all')?'class="selected" ':'' ?>href="index.php?sel=all&page=1"><?php echo L_ALL ?></a><?php echo ' ('.$plxAdmin->nbArticles('all', $userId).')' ?></li>
<li><a <?php echo ($_SESSION['sel_get']=='published')?'class="selected" ':'' ?>href="index.php?sel=published&page=1"><?php echo L_ALL_PUBLISHED ?></a><?php echo ' ('.$plxAdmin->nbArticles('published', $userId, '').')' ?></li>
<li><a <?php echo ($_SESSION['sel_get']=='draft')?'class="selected" ':'' ?>href="index.php?sel=draft&page=1"><?php echo L_ALL_DRAFTS ?></a><?php echo ' ('.$plxAdmin->nbArticles('draft', $userId).')' ?></li>
<li><a <?php echo ($_SESSION['sel_get']=='mod')?'class="selected" ':'' ?>href="index.php?sel=mod&page=1"><?php echo L_ALL_AWAITING_MODERATION ?></a><?php echo ' ('.$plxAdmin->nbArticles('all', $userId, '_').')' ?></li>
</ul>
<?php
echo plxToken::getTokenPostMethod();
if($_SESSION['profil']<=PROFIL_MODERATOR) {
plxUtils::printSelect('selection', array( '' => L_FOR_SELECTION, 'delete' => L_DELETE), '', false, false, 'id_selection');
echo '<input name="sel" type="submit" value="'.L_OK.'" onclick="return confirmAction(this.form, \'id_selection\', \'delete\', \'idArt[]\', \''.L_CONFIRM_DELETE.'\')" /> ';
}
?>
<?php plxUtils::printInput('page',1,'hidden'); ?>
</div>
<div class="grid">
<div class="col sml-6">
<?php plxUtils::printSelect('sel_cat', $aFilterCat, $_SESSION['sel_cat']) ?>
<input class="<?php echo $_SESSION['sel_cat']!='all'?' select':'' ?>" type="submit" name="submit" value="<?php echo L_ARTICLES_FILTER_BUTTON ?>" />
</div>
<div class="col sml-6 text-right">
<input type="text" name="artTitle" value="<?php echo plxUtils::strCheck($_GET['artTitle']) ?>" />
<input class="<?php echo (!empty($_GET['artTitle'])?' select':'') ?>" type="submit" value="<?php echo L_ARTICLES_SEARCH_BUTTON ?>" />
</div>
</div>
<div class="scrollable-table">
<table id="articles-table" class="full-width">
<thead>
<tr>
<th class="checkbox"><input type="checkbox" onclick="checkAll(this.form, 'idArt[]')" /></th>
<th><?php echo L_ARTICLE_ID.' '.L_ARTICLE ?></th>
<th><?php echo L_ARTICLE_LIST_DATE ?></th>
<th><?php echo L_ARTICLE_LIST_TITLE ?></th>
<th><?php echo L_ARTICLE_LIST_CATEGORIES ?></th>
<th><?php echo L_ARTICLE_LIST_NBCOMS ?></th>
<th><?php echo L_ARTICLE_LIST_AUTHOR ?></th>
<th class="action"><?php echo L_ARTICLE_LIST_ACTION ?></th>
</tr>
</thead>
<tbody>
<?php
# On va lister les articles
if($arts) { # On a des articles
# Initialisation de l'ordre
$num=0;
$datetime = date('YmdHi');
while($plxAdmin->plxRecord_arts->loop()) { # Pour chaque article
$author = plxUtils::getValue($plxAdmin->aUsers[$plxAdmin->plxRecord_arts->f('author')]['name']);
$publi = (boolean)!($plxAdmin->plxRecord_arts->f('date') > $datetime);
# Catégories : liste des libellés de toutes les categories
$draft='';
$libCats='';
$catIds = explode(',', $plxAdmin->plxRecord_arts->f('categorie'));
if(sizeof($catIds)>0) {
$catsName = array();
foreach($catIds as $catId) {
if($catId=='home') $catsName[] = L_CATEGORY_HOME;
elseif($catId=='draft') $draft= ' - <strong>'.L_CATEGORY_DRAFT.'</strong>';
elseif(!isset($plxAdmin->aCats[$catId])) $catsName[] = L_UNCLASSIFIED;
else $catsName[] = plxUtils::strCheck($plxAdmin->aCats[$catId]['name']);
}
if(sizeof($catsName)>0) {
$libCats = $catsName[0];
unset($catsName[0]);
if(sizeof($catsName)>0) $libCats .= ' <a class="folder"><span>'.implode(', ', $catsName).'</span></a>';
}
else $libCats = L_UNCLASSIFIED;
}
# en attente de validation ?
$idArt = $plxAdmin->plxRecord_arts->f('numero');
$awaiting = $idArt[0]=='_' ? ' - <strong>'.L_AWAITING.'</strong>' : '';
# Commentaires
$nbComsToValidate = $plxAdmin->getNbCommentaires('/^_'.$idArt.'.(.*).xml$/','all');
$nbComsValidated = $plxAdmin->getNbCommentaires('/^'.$idArt.'.(.*).xml$/','all');
# On affiche la ligne
echo '<tr>';
echo '<td><input type="checkbox" name="idArt[]" value="'.$idArt.'" /></td>';
echo '<td>'.$idArt.'</td>';
echo '<td>'.plxDate::formatDate($plxAdmin->plxRecord_arts->f('date')).' </td>';
echo '<td class="wrap"><a href="article.php?a='.$idArt.'" title="'.L_ARTICLE_EDIT_TITLE.'">'.plxUtils::strCheck($plxAdmin->plxRecord_arts->f('title')).'</a>'.$draft.$awaiting.' </td>';
echo '<td>'.$libCats.' </td>';
echo '<td><a title="'.L_NEW_COMMENTS_TITLE.'" href="comments.php?sel=offline&a='.$plxAdmin->plxRecord_arts->f('numero').'&page=1">'.$nbComsToValidate.'</a> / <a title="'.L_VALIDATED_COMMENTS_TITLE.'" href="comments.php?sel=online&a='.$plxAdmin->plxRecord_arts->f('numero').'&page=1">'.$nbComsValidated.'</a> </td>';
echo '<td>'.plxUtils::strCheck($author).' </td>';
echo '<td>';
echo '<a href="article.php?a='.$idArt.'" title="'.L_ARTICLE_EDIT_TITLE.'">'.L_ARTICLE_EDIT.'</a>';
if($publi AND $draft=='') # Si l'article est publié
echo ' | <a href="'.PLX_ROOT.'?article'.intval($idArt).'/'.$plxAdmin->plxRecord_arts->f('url').'" title="'.L_ARTICLE_VIEW_TITLE.'">'.L_ARTICLE_VIEW.'</a>';
echo " </td>";
echo "</tr>";
}
} else { # Pas d'article
echo '<tr><td colspan="8" class="center">'.L_NO_ARTICLE.'</td></tr>';
}
?>
</tbody>
</table>
</div>
</form>
<p id="pagination">
<?php
# Hook Plugins
eval($plxAdmin->plxPlugins->callHook('AdminIndexPagination'));
# Affichage de la pagination
if($arts) { # Si on a des articles (hors page)
# Calcul des pages
$last_page = ceil($nbArtPagination/$plxAdmin->bypage);
$stop = $plxAdmin->page + 2;
if($stop<5) $stop=5;
if($stop>$last_page) $stop=$last_page;
$start = $stop - 4;
if($start<1) $start=1;
# Génération des URLs
$artTitle = (!empty($_GET['artTitle'])?'&artTitle='.urlencode($_GET['artTitle']):'');
$p_url = 'index.php?page='.($plxAdmin->page-1).$artTitle;
$n_url = 'index.php?page='.($plxAdmin->page+1).$artTitle;
$l_url = 'index.php?page='.$last_page.$artTitle;
$f_url = 'index.php?page=1'.$artTitle;
# Affichage des liens de pagination
printf('<span class="p_page">'.L_PAGINATION.'</span>', '<input style="text-align:right;width:35px" onchange="window.location.href=\'index.php?page=\'+this.value+\''.$artTitle.'\'" value="'.$plxAdmin->page.'" />', $last_page);
$s = $plxAdmin->page>2 ? '<a href="'.$f_url.'" title="'.L_PAGINATION_FIRST_TITLE.'">«</a>' : '«';
echo '<span class="p_first">'.$s.'</span>';
$s = $plxAdmin->page>1 ? '<a href="'.$p_url.'" title="'.L_PAGINATION_PREVIOUS_TITLE.'">‹</a>' : '‹';
echo '<span class="p_prev">'.$s.'</span>';
for($i=$start;$i<=$stop;$i++) {
$s = $i==$plxAdmin->page ? $i : '<a href="'.('index.php?page='.$i.$artTitle).'" title="'.$i.'">'.$i.'</a>';
echo '<span class="p_current">'.$s.'</span>';
}
$s = $plxAdmin->page<$last_page ? '<a href="'.$n_url.'" title="'.L_PAGINATION_NEXT_TITLE.'">›</a>' : '›';
echo '<span class="p_next">'.$s.'</span>';
$s = $plxAdmin->page<($last_page-1) ? '<a href="'.$l_url.'" title="'.L_PAGINATION_LAST_TITLE.'">»</a>' : '»';
echo '<span class="p_last">'.$s.'</span>';
}
?>
</p>
<?php
# Hook Plugins
eval($plxAdmin->plxPlugins->callHook('AdminIndexFoot'));
# On inclut le footer
include(dirname(__FILE__).'/foot.php');
?>
|