Вход Регистрация
Файл: moduls/groups/topics.php
Строк: 369
<?php

/**
* @package     Prime Social
* @link        http://primesocial.ru
* @copyright   Copyright (C) 2016 Prime Social
* @author      BoB | http://primesocial.ru/about
*/


require_once('../../core/start.php');
require_once(
'func.php');
check_auth();

$id abs(num($_GET['id']));
$group DB::$dbs->queryFetch("SELECT * FROM ".GROUPS." WHERE `id` = ? ",array($id));

if (empty(
$group)) {
    
head('Guruh topilmadi');
            
    echo 
DIV_ERROR 'Xatolik!' CLOSE_DIV
            
    echo 
DIV_GO '<a href="'.HOME.'/">Bosh sahifa</a> / <a href="'.HOME.'/groups/">Guruh</a> / <b>Guruh topilmadi</b>' CLOSE_DIV;  
    require_once(
'../../core/stop.php');
    exit(); 


if (
$group['private_forum'] == TRUE && check_private($group['id']) == FALSE && privilegy('group') == FALSE && privilegy('group_moder') == FALSE) {
    
head('Kirishda xatolik');
            
    echo 
DIV_ERROR 'Xatolik!' CLOSE_DIV
            
    echo 
DIV_GO '<a href="'.HOME.'/">Bosh sahifa</a> / <a href="'.HOME.'/groups/">Guruh</a> / <b>Kirishda xatolik</b>' CLOSE_DIV;  
    require_once(
'../../core/stop.php');
    exit(); 

    
switch (
$select) {
    
    default:
    
head('Muhokamalar: ' $group['name']);
        
     
    
$all DB::$dbs->querySingle("SELECT COUNT(`id`) FROM ".GROUPS_TOPIC." WHERE `group_id` = ? ", array($group['id']));
        
    if (
$all == 0) {
        echo 
DIV_AUT 'Mavzular ochilmagan' CLOSE_DIV;
    } else {
        
$n = new Navigator($all,$config['write']['groups_topic'],'id='.$group['id']);
$sql DB::$dbs->query("SELECT * FROM ".GROUPS_TOPIC." WHERE `group_id` = ? ORDER BY `id` DESC LIMIT {$n->start()}, ".$config['write']['groups_topic']."", array($group['id']));
while(
$topic $sql -> fetch()) {
$posts DB::$dbs->querySingle("SELECT COUNT(`id`) FROM ".GROUPS_POST." WHERE `topic_id` = ? ", array($topic['id']));
            echo 
DIV_BLOCK;
            echo 
''.icon('pages.png').' <a href="'.HOME.'/groups/topics/'.$group['id'].'/'.$topic['id'].'/">'.$topic['topic'].'</a> ['.$posts.']';
            echo 
CLOSE_DIV;
        }
        echo 
$n->navi();
    }
    echo 
DIV_AUT '<form action="'.HOME.'/groups/topics/'.$group['id'].'/new_theme/" method="POST"><input type="submit" name="new_theme" value="Yangi mavzu" /></form>' CLOSE_DIV;
    echo 
DIV_GO '<a href="'.HOME.'/">Bosh sahifa</a> / <a href="'.HOME.'/groups/">Guruh</a> / <a href="'.HOME.'/groups/'.$group['id'].'/">'.$group['name'].'</a> /  <b>Muhokamalar</b>' CLOSE_DIV;
    break;
    
    case 
'new_theme':

    
head('Yangi mavzu ochish: ' $group['name']);
             
    
    if (
$_POST['add']) {
        
        
$name2 html($_POST['name']);
        
$msg html($_POST['msg']);
        
$uvedom abs(num($_POST['uvedom']));
        
$vote html($_POST['vote']);
        
$vote_1 html($_POST['vote_1']);
        
$vote_2 html($_POST['vote_2']);
        
$vote_3 html($_POST['vote_3']);
        
$vote_4 html($_POST['vote_4']);
        
$vote_5 html($_POST['vote_5']);
        
$vote_6 html($_POST['vote_6']);
        
$vote_7 html($_POST['vote_7']);
        
$vote_8 html($_POST['vote_8']);
        
$vote_9 html($_POST['vote_9']);
        
$vote_10 html($_POST['vote_10']);
        
        if (empty(
$name2)) {
            
$err 'Mavzu nomini kiriting.<br />';
        }
        
        if (
strlen($name2) < 8) {
            
$err .= 'Mavzu nomi qisqa. [min. 8 belgi]<br />';
        }
        
        if (empty(
$msg)) {
            
$err .= 'Habar yozing.<br />';
        }
        
        if (
strlen($msg) < 20) {
            
$err .= 'Juda qisqa habar. [min. 20 belgi]<br />';
        }
        
        if (!empty(
$vote) && strlen($vote) < 20) {
            
$err .= 'So`rovnoma nomida belgilar soni juda qisqa. [min. 10 belgi]<br />';
        }
        
        if (!empty(
$vote) && (empty($vote_1) || empty($vote_2))) {
            
$err .= 'So`rovnomani asosiy variantlarini to`ldiring';
        }
        
        if (!empty(
$_FILES['file'])) {
            
$name $_FILES['file']['name']; # Fayl nomi
            
$ext strtolower(strrchr($name'.')); # Fayl shakli
            
$size $_FILES['file']['size']; # Fayl hajmi
            
$time time();
            
$file $time.$ext;
    
            if (
$size > (1048576 $config['max_upload_groupа_file'])) {
                
$err .= 'Fayl hajmi belgilangan miqdordan ortmoqda. [Max. '.$config['max_upload_groupа_file'].'Mb.]<br />';
            }
                
            if (
preg_match('/.phtml/i'$name) || preg_match('/.php/i'$name) || preg_match('/.pl/i'$name) || $name == '.htaccess') {
                
$err .= 'Fayl formati to`g`ri kelmaydi.<br />';
            }
        }
                
        if (empty(
$err)) {
            if (!empty(
$ext)) {
                
copy($_FILES['file']['tmp_name'], '../../files/groups/forum/'.$time.$ext);
            }
            
            
$file = (empty($ext) ? $file);
            
            
DB::$dbs->query("INSERT INTO ".GROUPS_TOPIC." (`group_id`, `topic`, `user_id`, `uvedom`, `time`, `vote`, `vote_1`, `vote_2`, `vote_3`, `vote_4`, `vote_5`, `vote_6`, `vote_7`, `vote_8`, `vote_9`, `vote_10`) VALUES 
            (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)"
, array($group['id'], $name2$user['user_id'], $uvedomtime(), $vote$vote_1$vote_2$vote_3$vote_4$vote_5$vote_6$vote_7$vote_8$vote_9$vote_10));
                    
            
$lastid DB::$dbs->lastInsertId();
            
            
DB::$dbs->query("INSERT INTO ".GROUPS_POST." (`group_id`, `topic_id`, `post`, `user_id`, `time`, `file`) VALUES 
            (?,?,?,?,?,?)"
, array($group['id'], $lastid$msg$user['user_id'], time(),$file));
            
            
header("Location: ".HOME."/groups/topics/".$group['id']."/".$lastid."/");
        
        } else {
            echo 
DIV_ERROR $err CLOSE_DIV;
        }            
    }
    echo 
'<div class="white">';
    echo 
'<form action="#" enctype="multipart/form-data" method="POST">';
    echo 
'<b>Mavzu nomi:</b> [min. 8]<br /><input type="text" name="name" /><br /><br />';
    echo 
'<b>Habar:</b> [min. 20]<br /><textarea name="msg"></textarea><br />';
    
    echo 
'<b>Fayl biriktirish:</b> [max. '.$config['max_upload_groupа_file'].'mb.]<br /><input type="file" name="file"/><br /><br />';
    echo 
'Qoldirilgan habarlar haqida habardor qilish: <input type="checkbox" name="uvedom" value="1" />';
    
    echo 
'</div><div class="white"><b style="color:#0566A3;">+ So`rovnoma yaratish</b></div>'
    
    echo 
'<div class="white">';
    echo 
'<b>Nomi:</b> [min. 10]<br /><input type="text" name="vote" /><br />';
    echo 
'<b>Variantlar:</b> [Min. 2 shart]<br />';
    echo 
'<b>1.</b><input type="text" name="vote_1" /><br />';
    echo 
'<b>2.</b><input type="text" name="vote_2" /><br />';
    echo 
'<b>3.</b><input type="text" name="vote_3" /><br />';
    echo 
'<b>4.</b><input type="text" name="vote_4" /><br />';
    echo 
'<b>5.</b><input type="text" name="vote_5" /><br />';
    echo 
'<b>6.</b><input type="text" name="vote_6" /><br />';
    echo 
'<b>7.</b><input type="text" name="vote_7" /><br />';
    echo 
'<b>8.</b><input type="text" name="vote_8" /><br />';
    echo 
'<b>9.</b><input type="text" name="vote_9" /><br />';
    echo 
'<b>10.</b><input type="text" name="vote_10" /><br /><br />';
    
    echo 
'<input type="submit" name="add" value="Mavzu ochish" /><br />';
    echo 
'</form>';
    echo 
CLOSE_DIV;
    echo 
DIV_GO '<a href="'.HOME.'/">Bosh sahifa</a> / <a href="'.HOME.'/groups/">Guruh</a> / <a href="'.HOME.'/groups/'.$group['id'].'/">'.$group['name'].'</a> / <a href="'.HOME.'/groups/topics/'.$group['id'].'/">Guruh muhokamalari</a> / <b>Yangi mavzu</b>' CLOSE_DIV;
    break;
    
    case 
'topic':
    
$topic DB::$dbs->queryFetch("SELECT * FROM ".GROUPS_TOPIC." WHERE `id` = ? ", array(abs(num($_GET['topic']))));
    

    if (empty(
$topic)) {
        
head('Mavzu topilmadi');
        
        echo 
DIV_ERROR 'Xatolik!' CLOSE_DIV
        
        echo 
DIV_GO '<a href="'.HOME.'/">Bosh sahifa</a> / <a href="'.HOME.'/groups/">Guruh</a> / <a href="'.HOME.'/groups/'.$group['id'].'/">'.$group['name'].'</a> / <a href="'.HOME.'/groups/topics/'.$group['id'].'/">Guruh muhokamalari</a> /<b>Mavzu topilmadi</b>' CLOSE_DIV;  
        require_once(
'../../core/stop.php');
        exit(); 
              
    }
    
    
DB::$dbs->query("DELETE FROM ".GROUPS_NEW_POST." WHERE `theme_id` = ? && `user_id` = ? ", array($topic['id'], $user['user_id']));
    
    if (
$topic['status'] == 1) {
        
head('Mavzu muhokama qilish uchun yopilgan!'); 
    } else {
        
head('Mavzu'); 
    }
    
    if (isset(
$_GET['del']) && privilegy('group_moder')) {
         if (!isset(
$_GET['go'])) {
            echo 
DIV_LI '<b>O`chirishni tastiqlang:</b> <a href="?del&go">[O`chirish]</a> <a href="'.HOME.'/groups/topics/'.$group['id'].'/'.$topic['id'].'/">[Yo`q]</a>' CLOSE_DIV;
        } else {
            
$sql DB::$dbs->query("SELECT * FROM ".GROUPS_POST." WHERE `topic_id` = ? ", array($topic['id']));
            while(
$post $sql -> fetch()) {
                
unlink('../../files/groups/forum/'.$post['file']);
            }
            
DB::$dbs->query("DELETE FROM ".GROUPS_POST." WHERE `topic_id` = ? ", array($topic['id']));
            
DB::$dbs->query("DELETE FROM ".GROUPS_TOPIC." WHERE `id` = ? ", array($topic['id']));
            
header("Location: ".HOME."/groups/topics/".$group['id']."/"); 
        }          
    }
       
    echo 
'<div class="white"><b>' $topic['topic'] . '</b> ' . ($topic['status'] == '| <b>Mavzu yopilgan!</b>' NULL) . '</div>';
    
    if (!empty(
$topic['vote'])) {
        echo 
'<br /><b>' $topic['vote'] . '</b><br />';
        
        if (
DB::$dbs->querySingle("SELECT COUNT(`id`) FROM ".GROUPS_VOTE." WHERE `theme_id` = ? && `user_id` = ? ", array($topic['id'], $user['user_id'])) == FALSE && $topic['status'] == 0) {
            echo 
'<form action="'.HOME.'/groups/topics/'.$group['id'].'/'.$topic['id'].'/vote/" method="POST"><select name="variant">';
            for (
$i 1$i <= 10; ++$i) {
                echo (!empty(
$topic['vote_'.$i]) ? '<option value="'.$i.'"">'.$topic['vote_'.$i].'</option>' NULL);
            }
            echo 
'</select><input type="submit" name="myvote" value="Ovoz berish" /></form>';
        } else {
            for (
$i 1$i <= 10; ++$i) {
                
$votes DB::$dbs->querySingle("SELECT COUNT(`id`) FROM ".GROUPS_VOTE." WHERE `theme_id` = ? && `variant` = ? ", array($topic['id'], $i));
                echo (!empty(
$topic['vote_'.$i]) ? '<b>' $i '.</b> ' $topic['vote_'.$i].' ['.$votes.' kishi.]<br />' NULL);
            }            
        }
    }
    
    
$all DB::$dbs->querySingle("SELECT COUNT(`id`) FROM ".GROUPS_POST." WHERE `topic_id` = ?", array($topic['id']));
    
    if (empty(
$all)) {
        echo 
DIV_BLOCK 'Habarlar yo`q' CLOSE_DIV;
    } else {
        
$n = new Navigator($all,$config['write']['groups_topic_msg'],'select=topic&topic='.$topic['id'].'&id='.$group['id']);
        
$sql DB::$dbs->query("SELECT * FROM ".GROUPS_POST." WHERE `topic_id` = ? LIMIT {$n->start()}, ".$config['write']['groups_topic_msg']."", array($topic['id']));
        while(
$post $sql -> fetch()) {
            echo 
DIV_BLOCK;
            echo 
'<b>' userLink($post['user_id']) . '</b> <span style="float:right;font-size:11px;color:#638093;">' vrem($post['time']) . '</span></br>';
            echo 
text($post['post']);
            echo 
'</br><span style="float:right;">' . ($user['user_id'] != $post['user_id'] && $topic['status'] == '<a href="'.HOME.'/groups/topics/'.$group['id'].'/'.$topic['id'].'/new_post/?post='.$post['id'].'">'.icon('ballons.png').'</a> &#160;&#160; 
            <a href="'
.HOME.'/groups/topics/'.$group['id'].'/'.$topic['id'].'/new_post/?ctpost='.$post['id'].'">'.icon('oko.png').'</a> &#160;&#160; 
            ' 
NULL) . ( (privilegy('group_moder') || $post['user_id'] == $user['user_id']) && $topic['status'] == '<a href="'.HOME.'/groups/topics/'.$group['id'].'/'.$topic['id'].'/delete/'.$post['id'].'/">'.icon('minus2.png').'</a> &#160;&#160; 
            <a href="'
.HOME.'/groups/topics/'.$group['id'].'/'.$topic['id'].'/edit/'.$post['id'].'/">'.icon('pen2.png').'</a> &#160;&#160; ' NULL) . '</span><br />';
            
            if (!empty(
$post['ct'])) {
                
$ct DB::$dbs->queryFetch("SELECT `post` FROM ".GROUPS_POST." WHERE `id` = ? ", array($post['ct']));
                echo 
DIV_CT '<small><b>Sitata:</b></small><br />' text($ct['post']) . CLOSE_DIV
            }
            
            
            if (!empty(
$post['file'])) {
                
                
$path '../../files/groups/forum/'.$post['file'];
                
                
$size get_size(filesize($path));
                
$path_info pathinfo($path);
    
                echo 
'<br /><br />Fayl biriktirilgan: <a href="'.HOME.'/files/groups/forum/'.$post['file'].'"><b>[Yuklash]</b></a> ['.$path_info['extension'].'] ['.$size.']<br />'
            }
            
            echo 
CLOSE_DIV;
       
        }
        echo 
$n->navi();        
    }
    
    if (
$topic['status'] == 0) {
        echo 
DIV_AUT '<form action="'.HOME.'/groups/topics/'.$group['id'].'/'.$topic['id'].'/new_post/" method="POST"><input type="submit" name="new_post" value="Mavzuga javob berish" /></form>' CLOSE_DIV;
    }
    
    if (
$topic['user_id'] == $user['user_id']) {    
        echo 
DIV_BLOCK;
        echo 
'<a href="'.HOME.'/groups/topics/'.$group['id'].'/'.$topic['id'].'/closed_run/"><b>'.($topic['status'] == 'Yopish' 'Ochish').'</b></a> / ';
        
        if (
$topic['status'] == 0) {
            echo 
'<a href="'.HOME.'/groups/topics/'.$group['id'].'/'.$topic['id'].'/edit/">Tahrirlash</a> / ';
            if (
privilegy('group_moder')) echo '<a href="?del">O`chirish</a> / ';
        }
        echo 
CLOSE_DIV;  
    } elseif (
privilegy('group_moder')) {    
        echo 
DIV_BLOCK;
        echo 
'<a href="'.HOME.'/groups/topics/'.$group['id'].'/'.$topic['id'].'/closed_run/"><b>'.($topic['status'] == 'Yopish' 'Ochish').'</b></a> / ';
        if (
$theme['status'] == 0) {
            echo 
'<a href="'.HOME.'/groups/topics/'.$group['id'].'/'.$topic['id'].'/edit/">Tahrirlash</a> / ';
            echo 
'<a href="?del">O`chirish</a> / ';
        }
        echo 
CLOSE_DIV;  
    }
    
    echo 
DIV_GO '<a href="'.HOME.'/">Bosh sahifa</a> / <a href="'.HOME.'/groups/">Guruh</a> / <a href="'.HOME.'/groups/'.$group['id'].'/">'.$group['name'].'</a> / <a href="'.HOME.'/groups/topics/'.$group['id'].'/">Guruh muhokamalari</a>' CLOSE_DIV;        
    break;
    
    case 
'vote':
    
$variant abs(num($_POST['variant']));
    
$topic DB::$dbs->queryFetch("SELECT * FROM ".GROUPS_TOPIC." WHERE `id` = ? ", array(abs(num($_GET['topic']))));
    if (empty(
$topic)) {
        
head('Mavzu topilmadi');
            
        echo 
DIV_ERROR 'Xatolik!' CLOSE_DIV
            
        echo 
DIV_GO '<a href="'.HOME.'/">Bosh sahifa</a> / <a href="'.HOME.'/groups/">Guruh</a> / <a href="'.HOME.'/groups/'.$group['id'].'/">'.$group['name'].'</a> / <a href="'.HOME.'/groups/topics/'.$group['id'].'/">Guruh muhokamalari</a> /<b>Mavzu topilmadi</b>' CLOSE_DIV;  
        require_once(
'../../core/stop.php');
        exit(); 
    }
    
    if (
$topic['status'] == 1) {
        
head('Mavzu yopilgan');
            
        echo 
DIV_ERROR 'Xatolik!' CLOSE_DIV
            
        echo 
DIV_GO '<a href="'.HOME.'/">Bosh sahifa</a> / <a href="'.HOME.'/groups/">Guruh</a> / <a href="'.HOME.'/groups/'.$group['id'].'/">'.$group['name'].'</a> / <a href="'.HOME.'/groups/topics/'.$group['id'].'/">Guruh muhokamalari</a> /<b>Mavzu yopilgan</b>' CLOSE_DIV;  
        require_once(
'../../core/stop.php');
        exit(); 
    }
    
    if (empty(
$topic['vote'])) {
        
head('Mavzuda so`rovnoma yaratilmagan');
             
        echo 
DIV_ERROR 'Xatolik!' CLOSE_DIV
            
        echo 
DIV_GO '<a href="'.HOME.'/">Bosh sahifa</a> / <a href="'.HOME.'/groups/">Guruh</a> / <a href="'.HOME.'/groups/'.$group['id'].'/">'.$group['name'].'</a> / <a href="'.HOME.'/groups/topics/'.$group['id'].'/">Guruh muhokamalari</a> /<b>Mavzuda so`rovnoma yaratilmagan</b>' CLOSE_DIV;  
        require_once(
'../../core/stop.php');
        exit(); 
    }
    
    if (empty(
$topic['vote_'.$variant]) || $variant 10) {
        
head('Mavjud bo`lmagan variant');
            
        echo 
DIV_ERROR 'Xatolik!' CLOSE_DIV
            
        echo 
DIV_GO '<a href="'.HOME.'/">Bosh sahifa</a> / <a href="'.HOME.'/groups/">Guruh</a> / <a href="'.HOME.'/groups/'.$group['id'].'/">'.$group['name'].'</a> / <a href="'.HOME.'/groups/topics/'.$group['id'].'/">Guruh muhokamalari</a> /<b>Mavjud bo`lmagan variant</b>' CLOSE_DIV;  
        require_once(
'../../core/stop.php');
        exit(); 
    }
    
    if (
DB::$dbs->querySingle("SELECT COUNT(`id`) FROM ".GROUPS_VOTE." WHERE `theme_id` = ? && `user_id` = ? ", array($topic['id'], $user['user_id'])) == TRUE) {
        
head('Siz ovoz bergansiz');
            
        echo 
DIV_ERROR 'Xatolik!' CLOSE_DIV
            
        echo 
DIV_GO '<a href="'.HOME.'/">Bosh sahifa</a> / <a href="'.HOME.'/groups/">Guruh</a> / <a href="'.HOME.'/groups/'.$group['id'].'/">'.$group['name'].'</a> / <a href="'.HOME.'/groups/topics/'.$group['id'].'/">Guruh muhokamalari</a> /<b>Siz ovoz bergansiz</b>' CLOSE_DIV;  
        require_once(
'../../core/stop.php');
        exit();    
    }
    
    
DB::$dbs->query("INSERT INTO ".GROUPS_VOTE." (`theme_id`, `user_id`, `variant`) VALUES (?,?,?)", array($topic['id'], $user['user_id'], $variant));
    
header("Location: ".HOME."/groups/topics/".$group['id']."/".$topic['id']."/");
    break;
    
    case 
'closed_run':
    
$topic DB::$dbs->queryFetch("SELECT * FROM ".GROUPS_TOPIC." WHERE `id` = ? ", array(abs(num($_GET['topic']))));
    if (empty(
$topic)) {
        
head('Mavzu topilmadi');
            
        echo 
DIV_ERROR 'Xatolik!' CLOSE_DIV
            
        echo 
DIV_GO '<a href="'.HOME.'/">Bosh sahifa</a> / <a href="'.HOME.'/groups/">Guruh</a> / <a href="'.HOME.'/groups/'.$group['id'].'/">'.$group['name'].'</a> / <a href="'.HOME.'/groups/topics/'.$group['id'].'/">Guruh muhokamalari</a> /<b>Mavzu topilmadi</b>' CLOSE_DIV;  
        require_once(
'../../core/stop.php');
        exit(); 
    }
    
    if (
$topic['user_id'] != $user['id'] && privilegy('group_moder') == FALSE) {
        
head('Kirishda xatolik');
            
        echo 
DIV_ERROR 'Xatolik!' CLOSE_DIV
            
        echo 
DIV_GO '<a href="'.HOME.'/">Bosh sahifa</a> / <a href="'.HOME.'/groups/">Guruh</a> / <a href="'.HOME.'/groups/'.$group['id'].'/">'.$group['name'].'</a> / <a href="'.HOME.'/groups/topics/'.$group['id'].'/">Guruh muhokamalari</a> /<b>Kirishda xatolik</b>' CLOSE_DIV;  
        require_once(
'../../core/stop.php');
        exit();     
    }
    
    
$status = ($topic['status'] == 0);
    
DB::$dbs->query("UPDATE ".GROUPS_TOPIC." SET `status` = ? WHERE `id` = ? ", array($status$topic['id']));
    
header("Location: ".HOME."/groups/topics/".$group['id']."/".$topic['id']."/");    
    break;
    
    case 
'edit_theme':
    
$topic DB::$dbs->queryFetch("SELECT * FROM ".GROUPS_TOPIC." WHERE `id` = ? ", array(abs(num($_GET['topic']))));
    if (empty(
$topic)) {
        
head('Mavzu topilmadi');
             
        echo 
DIV_ERROR 'Xatolik!' CLOSE_DIV
            
        echo 
DIV_GO '<a href="'.HOME.'/">Bosh sahifa</a> / <a href="'.HOME.'/groups/">Guruh</a> / <a href="'.HOME.'/groups/'.$group['id'].'/">'.$group['name'].'</a> / <a href="'.HOME.'/groups/topics/'.$group['id'].'/">Guruh muhokamalari</a> /<b>Mavzu topilmadi</b>' CLOSE_DIV;  
        require_once(
'../../core/stop.php');
        exit(); 
    }
    
    if (
$topic['status'] == 1) {
        
head('Mavzu yopilgan');
            
        echo 
DIV_ERROR 'Xatolik!' CLOSE_DIV
            
        echo 
DIV_GO '<a href="'.HOME.'/">Bosh sahifa</a> / <a href="'.HOME.'/groups/">Guruh</a> / <a href="'.HOME.'/groups/'.$group['id'].'/">'.$group['name'].'</a> / <a href="'.HOME.'/groups/topics/'.$group['id'].'/">Guruh muhokamalari</a> /<b>Mavzu yopilgan</b>' CLOSE_DIV;  
        require_once(
'../../core/stop.php');
        exit(); 
    }
    
    
head('Mavzuni tahrirlash: ' $topic['topic']);
             
    
    if (
$_POST['edit']) {
        
        
$name html($_POST['name']);
        
$uvedom abs(num($_POST['uvedom']));
        
$vote html($_POST['vote']);
        
$vote_1 html($_POST['vote_1']);
        
$vote_2 html($_POST['vote_2']);
        
$vote_3 html($_POST['vote_3']);
        
$vote_4 html($_POST['vote_4']);
        
$vote_5 html($_POST['vote_5']);
        
$vote_6 html($_POST['vote_6']);
        
$vote_7 html($_POST['vote_7']);
        
$vote_8 html($_POST['vote_8']);
        
$vote_9 html($_POST['vote_9']);
        
$vote_10 html($_POST['vote_10']);
        
        if (empty(
$name)) {
            
$err 'Mavzu nomini kiriting.<br />';
        }
        
        if (
strlen($name) < 8) {
            
$err .= 'Mavzu nomi juda qisqa. [min. 8 belgi]<br />';
        }
    
        if (!empty(
$vote) && strlen($vote) < 20) {
            
$err .= 'So`rovnoma nomi juda qisqa. [min. 10 belgi]<br />';
        }
        
        if (!empty(
$vote) && (empty($vote_1) || empty($vote_2))) {
            
$err .= 'So`rovnomaning asosiy variantlarini to`ldiring';
        }
    
        if (empty(
$err)) {
    
            
DB::$dbs->query("UPDATE ".GROUPS_TOPIC." SET `topic` = ?, `uvedom` = ?, `vote` = ?, `vote_1` = ?, `vote_2` = ?, `vote_3` = ?, `vote_4` = ?, `vote_5` = ?, `vote_6` = ?, `vote_7` = ?, `vote_8` = ?, `vote_9` = ?, `vote_10` = ? WHERE `id` = ? "
            array(
$name$uvedom$vote$vote_1$vote_2$vote_3$vote_4$vote_5$vote_6$vote_7$vote_8$vote_9$vote_10$topic['id']));
    
            
header("Location: ".HOME."/groups/topics/".$group['id']."/".$topic['id']."/");
        
        } else {
            echo 
DIV_ERROR $err CLOSE_DIV;
        }            
    }
    echo 
'<div class="white">';
    echo 
'<form action="#" enctype="multipart/form-data" method="POST">';
    echo 
'<b>Mavzu nomi:</b> [min. 8]<br /><input type="text" name="name" value="'.$topic['topic'].'" /><br /><br />';
    
    echo 
'Qoldirilgan sharhlar haqida habardor qilish: <input type="checkbox" name="uvedom" value="1" '.($topic['uvedom'] ? 'checked' NULL).' />';
    
    echo 
'</div><div class="white"><b style="color:#0566A3;">+ So`rovnoma yaratish</b></div>'
    echo 
'<div class="white">';
    echo 
'<b>Nomi:</b> [min. 10]<br /><input type="text" name="vote" value="'.$topic['vote'].'"/><br />';
    echo 
'<b>Varianlar:</b> [Min. 2 shart]<br />';
    echo 
'<b>1.</b><input type="text" name="vote_1" value="'.$topic['vote_1'].'" /><br />';
    echo 
'<b>2.</b><input type="text" name="vote_2" value="'.$topic['vote_2'].'" /><br />';
    echo 
'<b>3.</b><input type="text" name="vote_3" value="'.$topic['vote_3'].'" /><br />';
    echo 
'<b>4.</b><input type="text" name="vote_4" value="'.$topic['vote_4'].'" /><br />';
    echo 
'<b>5.</b><input type="text" name="vote_5" value="'.$topic['vote_5'].'" /><br />';
    echo 
'<b>6.</b><input type="text" name="vote_6" value="'.$topic['vote_6'].'" /><br />';
    echo 
'<b>7.</b><input type="text" name="vote_7" value="'.$topic['vote_7'].'" /><br />';
    echo 
'<b>8.</b><input type="text" name="vote_8" value="'.$topic['vote_8'].'" /><br />';
    echo 
'<b>9.</b><input type="text" name="vote_9" value="'.$topic['vote_9'].'" /><br />';
    echo 
'<b>10.</b><input type="text" name="vote_10" value="'.$topic['vote_10'].'" /><br /><br />';
    
    echo 
'<input type="submit" name="edit" value="O`zgartirish" /><br />';
    echo 
'</form>';
    echo 
CLOSE_DIV;
    
    
$forum DB::$dbs->queryFetch("SELECT * FROM ".FORUMS." WHERE `id` = ? ", array($theme['forum_id']));
    
$forumc DB::$dbs->queryFetch("SELECT * FROM ".FORUMS_CAT." WHERE `id` = ? ", array($theme['forumc_id']));
    
    echo 
DIV_GO '<a href="'.HOME.'/">Bosh sahifa</a> / <a href="'.HOME.'/groups/">Guruh</a> / <a href="'.HOME.'/groups/'.$group['id'].'/">'.$group['name'].'</a> / <a href="'.HOME.'/groups/topics/'.$group['id'].'/">Guruh muhokamalari</a> / <a href="'.HOME.'/groups/topics/'.$group['id'].'/'.$topic['id'].'/">'.$topic['topic'].'</a> / <b>Mavzuni tahrirlash</b>' CLOSE_DIV;  
    break;
    
    case 
'edit_post':
    
$post DB::$dbs->queryFetch("SELECT * FROM ".GROUPS_POST." WHERE `id` = ? ", array(abs(num($_GET['post']))));
    
$topic DB::$dbs->queryFetch("SELECT * FROM ".GROUPS_TOPIC." WHERE `id` = ? ", array($post['topic_id']));
    if (empty(
$topic)) {
        
head('Mavzu topilmadi');
            
        echo 
DIV_ERROR 'Xatolik!' CLOSE_DIV
            
        echo 
DIV_GO '<a href="'.HOME.'/">Bosh sahifa</a> / <a href="'.HOME.'/groups/">Guruh</a> / <a href="'.HOME.'/groups/'.$group['id'].'/">'.$group['name'].'</a> / <a href="'.HOME.'/groups/topics/'.$group['id'].'/">Guruh muhokamalari</a> /<b>Mavzu topilmadi</b>' CLOSE_DIV;  
        require_once(
'../../core/stop.php');
        exit(); 
    }
    
    if (empty(
$post)) {
        
head('Sharh topilmadi');
            
        echo 
DIV_ERROR 'Xatolik!' CLOSE_DIV
            
        echo 
DIV_GO '<a href="'.HOME.'/">Bosh sahifa</a> / <a href="'.HOME.'/groups/">Guruh</a> / <a href="'.HOME.'/groups/'.$group['id'].'/">'.$group['name'].'</a> / <a href="'.HOME.'/groups/topics/'.$group['id'].'/">Guruh muhokamalari</a> /<a href="'.HOME.'/groups/topics/'.$group['id'].'/'.$topic['id'].'/">'.$topic['topic'].'</a> / <b>Sharh topilmadi</b>' CLOSE_DIV;   
        require_once(
'../../core/stop.php');
        exit(); 
    }
    
    if (
$post['user_id'] != $user['id'] && privilegy('group_moder') == FALSE) {
        
head('Kirishda xatolik');
            
        echo 
DIV_ERROR 'Xatolik!' CLOSE_DIV
            
        echo 
DIV_GO '<a href="'.HOME.'/">Bosh sahifa</a> / <a href="'.HOME.'/groups/">Guruh</a> / <a href="'.HOME.'/groups/'.$group['id'].'/">'.$group['name'].'</a> / <a href="'.HOME.'/groups/topics/'.$group['id'].'/">Guruh muhokamalari</a> /<a href="'.HOME.'/groups/topics/'.$group['id'].'/'.$topic['id'].'/">'.$topic['topic'].'</a> / <b>Kirishda xatolik</b>' CLOSE_DIV;   
        require_once(
'../../core/stop.php');
        exit(); 
    }
    
    if (
$topic['status'] == 1) {
        
head('Mavzu yopilgan');
            
        echo 
DIV_ERROR 'Xatolik!' CLOSE_DIV
            
        echo 
DIV_GO '<a href="'.HOME.'/">Bosh sahifa</a> / <a href="'.HOME.'/groups/">Guruh</a> / <a href="'.HOME.'/groups/'.$group['id'].'/">'.$group['name'].'</a> / <a href="'.HOME.'/groups/topics/'.$group['id'].'/">Guruh muhokamalari</a> /<a href="'.HOME.'/groups/topics/'.$group['id'].'/'.$topic['id'].'/">'.$topic['topic'].'</a> / <b>Mavzu yopilgan</b>' CLOSE_DIV;   
        require_once(
'../../core/stop.php');
        exit(); 
    }
    
    
head('Sharhni tahrirlash');
    
    if (
$_POST['edit']) {
        
$msg html($_POST['msg']);
        
        if (empty(
$msg)) {
            
DIV_ERROR 'Habar kiriting' CLOSE_DIV;
        } else {
            
DB::$dbs->query("UPDATE ".GROUPS_POST." SET `post` = ? WHERE `id` = ? ", array($msg$post['id']));
            
header("Location: ".HOME."/groups/topics/".$group['id']."/".$topic['id']."/");  
        }
    }
    
    echo 
DIV_BLOCK;
    echo 
'<form action="#" method="POST">';
    echo 
'<b>Habar:</b> [min. 20]<br /><textarea name="msg">'.$post['post'].'</textarea><br />';
    echo 
'<input type="submit" name="edit" value="O`zgaritish" /><br />';
    echo 
'</form>';
    echo 
CLOSE_DIV;
    
    
$forum DB::$dbs->queryFetch("SELECT * FROM ".FORUMS." WHERE `id` = ? ", array($post['forum_id']));
    
$forumc DB::$dbs->queryFetch("SELECT * FROM ".FORUMS_CAT." WHERE `id` = ? ", array($post['forumc_id']));
    
$theme DB::$dbs->queryFetch("SELECT * FROM ".FORUMS_THEME." WHERE `id` = ? ", array($post['theme_id']));
    
    echo 
DIV_GO '<a href="'.HOME.'/">Bosh sahifa</a> / <a href="'.HOME.'/groups/">Guruh</a> / <a href="'.HOME.'/groups/'.$group['id'].'/">'.$group['name'].'</a> / <a href="'.HOME.'/groups/topics/'.$group['id'].'/">Guruh muhokamalari</a> /<a href="'.HOME.'/groups/topics/'.$group['id'].'/'.$topic['id'].'/">'.$topic['topic'].'</a> / <b>Sharhni tahrirlash</b>' CLOSE_DIV;   
    break;
    
    case 
'del_post':
    
$post DB::$dbs->queryFetch("SELECT * FROM ".GROUPS_POST." WHERE `id` = ? ", array(abs(num($_GET['post']))));
    
$topic DB::$dbs->queryFetch("SELECT * FROM ".GROUPS_TOPIC." WHERE `id` = ? ", array($post['topic_id']));
    if (empty(
$topic)) {
        
head('Mavzu topilmadi');
            
        echo 
DIV_ERROR 'Xatolik!' CLOSE_DIV
            
        echo 
DIV_GO '<a href="'.HOME.'/">Bosh sahifa</a> / <a href="'.HOME.'/groups/">Guruh</a> / <a href="'.HOME.'/groups/'.$group['id'].'/">'.$group['name'].'</a> / <a href="'.HOME.'/groups/topics/'.$group['id'].'/">Guruh muhokamalari</a> /<b>Mavzu topilmadi</b>' CLOSE_DIV;  
        require_once(
'../../core/stop.php');
        exit(); 
    }
    
    if (empty(
$post)) {
        
head('Sharh topilmadi');
            
        echo 
DIV_ERROR 'Xatolik!' CLOSE_DIV
            
        echo 
DIV_GO '<a href="'.HOME.'/">Bosh sahifa</a> / <a href="'.HOME.'/groups/">Guruh</a> / <a href="'.HOME.'/groups/'.$group['id'].'/">'.$group['name'].'</a> / <a href="'.HOME.'/groups/topics/'.$group['id'].'/">Guruh muhokamalari</a> /<a href="'.HOME.'/groups/topics/'.$group['id'].'/'.$topic['id'].'/">'.$topic['topic'].'</a> / <b>Sharh topilmadi</b>' CLOSE_DIV;   
        require_once(
'../../core/stop.php');
        exit(); 
    }
    
    if (
$post['user_id'] != $user['id'] && privilegy('group_moder') == FALSE) {
        
head('Kirishda xatolik');
            
        echo 
DIV_ERROR 'Xatolik!' CLOSE_DIV
            
        echo 
DIV_GO '<a href="'.HOME.'/">Bosh sahifa</a> / <a href="'.HOME.'/groups/">Guruh</a> / <a href="'.HOME.'/groups/'.$group['id'].'/">'.$group['name'].'</a> / <a href="'.HOME.'/groups/topics/'.$group['id'].'/">Guruh muhokamalari</a> /<a href="'.HOME.'/groups/topics/'.$group['id'].'/'.$topic['id'].'/">'.$topic['topic'].'</a> / <b>Kirishda xatolik</b>' CLOSE_DIV;   
        require_once(
'../../core/stop.php');
        exit(); 
    }
    
    if (
$topic['status'] == 1) {
        
head('Mavzu yopilgan');
            
        echo 
DIV_ERROR 'Xatolik!' CLOSE_DIV
            
        echo 
DIV_GO '<a href="'.HOME.'/">Bosh sahifa</a> / <a href="'.HOME.'/groups/">Guruh</a> / <a href="'.HOME.'/groups/'.$group['id'].'/">'.$group['name'].'</a> / <a href="'.HOME.'/groups/topics/'.$group['id'].'/">Guruh muhokamalari</a> /<a href="'.HOME.'/groups/topics/'.$group['id'].'/'.$topic['id'].'/">'.$topic['topic'].'</a> / <b>Mavzu yopilgan</b>' CLOSE_DIV;   
        require_once(
'../../core/stop.php');
        exit(); 
    }
    
    if (!empty(
$post['file'])) {
        
unlink('../../files/groups/forum/'.$post['file']);
    }
    
DB::$dbs->query("DELETE FROM ".GROUPS_POST." WHERE `id` = ? ", array($post['id']));
    
header("Location: ".HOME."/groups/topics/".$group['id']."/".$topic['id']."/");    
    break;
    
    case 
'new_post':
    
$id abs(num($_GET['topic']));
    
$topic DB::$dbs->queryFetch("SELECT * FROM ".GROUPS_TOPIC." WHERE `id` = ? ", array($id));
    if (empty(
$topic)) {
        
head('Mavzu topilmadi');
            
        echo 
DIV_ERROR 'Xatolik!' CLOSE_DIV
            
        echo 
DIV_GO '<a href="'.HOME.'/">Bosh sahifa</a> / <a href="'.HOME.'/groups/">Guruh</a> / <a href="'.HOME.'/groups/'.$group['id'].'/">'.$group['name'].'</a> / <a href="'.HOME.'/groups/topics/'.$group['id'].'/">Guruh muhokamalari</a> /<b>Mavzu topilmadi</b>' CLOSE_DIV;  
        require_once(
'../../core/stop.php');
        exit(); 
    }

    if (
$topic['status'] == 1) {
        
head('Mavzu yopilgan');
            
        echo 
DIV_ERROR 'Xatolik!' CLOSE_DIV
            
        echo 
DIV_GO '<a href="'.HOME.'/">Bosh sahifa</a> / <a href="'.HOME.'/groups/">Guruh</a> / <a href="'.HOME.'/groups/'.$group['id'].'/">'.$group['name'].'</a> / <a href="'.HOME.'/groups/topics/'.$group['id'].'/">Guruh muhokamalari</a> / <a href="'.HOME.'/groups/topics/'.$group['id'].'/'.$topic['id'].'/">'.$topic['topic'].'</a> / <b>Mavzu yopilgan</b>' CLOSE_DIV;   
        require_once(
'../../core/stop.php');
        exit(); 
    }
        
    
head('Javob berish: ' $topic['topic']);
            
          

    
    if (!empty(
$_GET['post'])) {
        
$post DB::$dbs->queryFetch("SELECT * FROM ".GROUPS_POST." WHERE `id` = ? ", array(abs(num($_GET['post']))));
        
        if (
$post) {
            echo 
DIV_BLOCK;
            echo 
'<b>Sharhga javob berish:</b><br />';
            echo 
'<b>' userLink($post['user_id']) . '</b> [' vrem($post['time']) . ']<br />';
            echo 
SubstrMaus(text($post['post']), 100);
            echo 
CLOSE_DIV;
        }
    }
    
    if (!empty(
$_GET['ctpost'])) {
        
$post2 DB::$dbs->queryFetch("SELECT * FROM ".GROUPS_POST." WHERE `id` = ? ", array(abs(num($_GET['ctpost']))));
        
        if (
$post2) {
            echo 
DIV_BLOCK;
            echo 
'<b>Sharhga sitata keltirish:</b><br />';
            echo 
'<b>' userLink($post2['user_id']) . '</b> [' vrem($post2['time']) . ']<br />';
            echo 
SubstrMaus(text($post2['post']), 100);
            echo 
CLOSE_DIV;
        }
    }
    
    if (
$_POST['add']) {
    
        
$msg html($_POST['msg']);
        
        if (empty(
$msg)) {
            
$err .= 'Habar kiriting.<br />';
        }
    
        if (!empty(
$_FILES['file'])) {
            
$name $_FILES['file']['name']; # Fayl nomi
            
$ext strtolower(strrchr($name'.')); # Fayl shakli
            
$size $_FILES['file']['size']; # Fayl hajmi
            
$time time();
            
$file $time.$ext;
    
            if (
$size > (1048576 $config['max_upload_groupа_file'])) {
                
$err .= 'Fayl hajmi belgilangan miqdordan ortmoqda. [Max. '.$config['max_upload_groupа_file'].'Mb.]<br />';
            }
                
            if (
preg_match('/.phtml/i'$name) || preg_match('/.php/i'$name) || preg_match('/.pl/i'$name) || $name == '.htaccess') {
                
$err .= 'Fayl shakli xato.<br />';
            }
        }
                
        if (empty(
$err)) {
            if (!empty(
$ext)) {
                
copy($_FILES['file']['tmp_name'], '../../files/groups/forum/'.$time.$ext);
            }
            
            
$file = (empty($ext) ? $file);
            
            if (!empty(
$post)) {
                
$ank DB::$dbs->queryFetch("SELECT `nick` FROM ".USERS." WHERE `user_id` = ?",array($post['user_id']));
                
$msg '[b]' $ank['nick'] . '[/b], ' $msg;
            }
            
            if (!empty(
$post2)) {
                
$ct $post2['id'];
            } else {
                
$ct '0';
            }
            
            
new_posts($topic['id']);
            
            
DB::$dbs->query("INSERT INTO ".GROUPS_POST." (`group_id`, `topic_id`, `post`, `user_id`, `time`, `file`, `ct`) VALUES 
            (?,?,?,?,?,?,?)"
, array($group['id'], $topic['id'], $msg$user['user_id'], time(), $file$ct));
            
            
header("Location: ".HOME."/groups/topics/".$group['id']."/".$topic['id']."/");
        
        } else {
            echo 
DIV_ERROR $err CLOSE_DIV;
        }            
    }
    
    echo 
DIV_BLOCK;
    echo 
'<form action="#" enctype="multipart/form-data" method="POST">';
    echo 
'<b>Habar:</b> [min. 20]<br /><textarea name="msg"></textarea><br />';
    echo 
'<b>Fayl biriktirish:</b> [max. '.$config['max_upload_groupа_file'].'mb.]<br /><input type="file" name="file"/><br /><br />';
    echo 
'<input type="submit" name="add" value="Javob berish" /><br />';
    echo 
'</form>';
    echo 
CLOSE_DIV;
    
    echo 
DIV_GO '<a href="'.HOME.'/">Bosh sahifa</a> / <a href="'.HOME.'/groups/">Guruh</a> / <a href="'.HOME.'/groups/'.$group['id'].'/">'.$group['name'].'</a> / <a href="'.HOME.'/groups/topics/'.$group['id'].'/">Guruh muhokamalari</a> / <a href="'.HOME.'/groups/topics/'.$group['id'].'/'.$topic['id'].'/">'.$topic['topic'].'</a> / <b>Yangi sharh</b>' CLOSE_DIV;   
    break;
}


require_once(
'../../core/stop.php');
?>
Онлайн: 0
Реклама