File size: 5.32Kb
<?php
// mod by Golem http://veplog.ru
require_once"../template/start.php";
require_once"../template/regglobals.php";
require_once"../template/config.php";
require_once"../template/functions.php";
require_once"../template/antidos.php";
require_once"../template/cookies.php";
require_once"../template/gzip.php";
require_once"../template/header.php";
require_once"../template/referer.php";
include_once"../themes/$config_themes/index.php";
include_once"../template/isset.php";
$users=check($users);
$id=(int)$id;
if ($provlog==$_SESSION['log'] && $provpar==md5($_SESSION['par']) && $_SESSION['log']!="" && md5($_SESSION['par'])!="") {
if ($dostup==101 || $dostup==102){
echo '<div class="tp">Управление подписчиками</div>';
//------------------------------- УДАЛЕНИЕ ПОДПИСЧИКА ----------------------------------//
if($action=="delmail") {
if($id!=""){
$file=file("../local/sub.dat");
$fp=fopen("../local/sub.dat","w");
flock ($fp,LOCK_EX);
for ($i=0;$i< sizeof($file);$i++) { if ($i==$id) {unset($file[$i]);} }
fputs($fp, implode("",$file));
flock ($fp,LOCK_UN);
fclose($fp);
//------------------------ Запись в профиль -----------------------------//
if($users!=""){
$ufile = file(BASEDIR."local/profil/$users.prof");
$udata = explode(":||:",$ufile[0]);
$udata[34]="";
$udata[35]="";
for ($u=0; $u<$config_userprofkey; $u++){
$utext.=$udata[$u].':||:';}
if($udata[0]!="" && $udata[1]!="" && $udata[4]!="" && $utext!=""){
$fp=fopen(BASEDIR."local/profil/$users.prof","a+");
flock($fp,LOCK_EX);
ftruncate($fp,0);
fputs($fp,$utext);
fflush($fp);
flock($fp,LOCK_UN);
fclose($fp);
unset($utext);
}}
//-----------------------------------------------------------------------//
header ("Location: subscribe.php?start=$start&isset=mp_delsubmail&".SID);
}else{
header ("Location: subscribe.php?start=$start&isset=mp_nodelsubmail&".SID);
}
}
//---------------------------------------- ПОДТВЕРЖДЕНИЕ ОЧИСТКИ -------------------------------------------//
if ($action=="poddel") {
echo'Вы уверены что хотите удалить всех подписчиков из базы?<br>';
echo'- <a href="subscribe.php?action=alldel&'.SID.'">Да уверен!</a><br>';
echo '<br>- <a href="subscribe.php?'.SID.'">Вернуться</a>';
}
//------------------------------ ОЧИСТКА БАЗЫ ПОДПИСЧИКОВ -------------------------------//
if ($action=="alldel") {
clear_files("../local/sub.dat");
header ("Location: subscribe.php?isset=mp_delsuball&".SID);
}
//------------------------------- ГЛАВНАЯ СТРАНИЦА ----------------------------------//
if(!isset($action)){
$file = file("../local/sub.dat");
$total = count($file);
if (empty($_GET['start'])) $start = 0;
else $start = $_GET['start'];
if ($total < $start + $config_maxpostsub){ $end = $total;}
else {$end = $start + $config_maxpostsub; }
for ($fm = $start; $fm < $end; $fm++){
$num=$total-$fm-1;
$file = file("../local/sub.dat");
$file = array_reverse($file);
$dt = explode("|",$file[$fm]);
echo ''.($fm+1).'. <a href="../pages/anketa.php?uz='.$dt[4].'&'.SID.'">'.$dt[4].' </a>';
echo '<b>(E-mail: '.$dt[0].')</b><br>';
if(ctype_digit($dt[2])){
echo '(Подписан: '.date_fixed($dt[2],'j F Y / H:i').')<br>';
}else{
echo '(Подписан: '.$dt[2].' / '.$dt[3].')<br>';
}
echo '- [<a href="subscribe.php?action=delmail&start='.$start.'&id='.$num.'&users='.$dt[4].'&'.SID.'">Удалить</a>]<hr>';
}
if ($start != 0) {echo '<a href="subscribe.php?start='.($start - $config_maxpostsub).'&'.SID.'"><-Назад </a> ';}else{echo'<-Назад ';}
echo'|';
if ($total > $start + $config_maxpostsub) {echo ' <a href="subscribe.php?start='.($start + $config_maxpostsub).'&'.SID.'">Далее-></a>';}else{echo' Далее->';}
if($total>0){
$ba=ceil($total/$config_maxpostsub);
$ba2=$ba*$config_maxpostsub-$config_maxpostsub;
echo '<br>Стр.:';
$asd=$start-($config_maxpostsub*3);
$asd2=$start+($config_maxpostsub*4);
if($asd<$total && $asd>0){echo ' <a href="subscribe.php?start=0&'.SID.'">1</a> ... ';}
for($i=$asd; $i<$asd2;)
{
if($i<$total && $i>=0){
$ii=floor(1+$i/$config_maxpostsub);
if ($start==$i) {
echo ' <b>('.$ii.')</b>';
}
else {
echo ' <a href="subscribe.php?start='.$i.'&'.SID.'">'.$ii.'</a>';
}}
$i=$i+$config_maxpostsub;}
if($asd2<$total){echo ' ... <a href="subscribe.php?start='.$ba2.'&'.SID.'">'.$ba.'</a>';}
}
echo '<div class="tpanel">Всего подписанных на рассылку: '.(int)$total.'</div>';
if($total>1){
echo '<br>- <a href="subscribe.php?action=poddel&'.SID.'">Удалить всех</a>';}
}
//-------------------------------- КОНЦОВКА ------------------------------------//
echo '<div class="btm">[<a href="index2.php?'.SID.'">В админку</a>]<br>';
echo '[<a href="../index.php?'.SID.'">На главную</a>]</div>';
} else {header ("Location: ../index.php?isset=404&".SID);}
} else {header ("Location: ../index.php?isset=404&".SID);}
include_once"../themes/$config_themes/foot.php";
?>