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

require_once '../../incfiles/core.php';
require_once 
'../../incfiles/func.php';
require_once 
'../../incfiles/auth.php';
require_once 
'../../incfiles/user.php';

if (empty(
$user_id)) go(URL);

if (!empty(
$_GET['id']) && is_numeric($_GET['id']))
{
    
$id abs(intval($_GET['id']));
    
$result mysql_query("SELECT * FROM `groups` WHERE `id` = '".$id."' LIMIT 1");
    if (
mysql_num_rows($result) == true$arr_group mysql_fetch_array($result);
    else 
go(URL);
    
    if (!
in_array($user_idexplode("||"substr($arr_group['admins'], 1, -1)))) go(URL);
    
}
else 
go(URL);

$title lang('Предложенные новости','Запропоновані новини');
require_once 
'../../incfiles/head.php';

echo 
'<div class="title">
    <a href="'
.URL.'/groups/?id='.$id.'" onclick="Page.Go(this.href); return false">'.lang('Сообщество','Спільнота').'</a>
    <a href="'
.URL.'/groups/adm/?id='.$id.'" onclick="Page.Go(this.href); return false">'.lang('Управление сообществом','Керування спільнотою').'</a>
    </div><div class="title">'
.$title.'</div>';

require_once 
'../handler/moder_wall.php';

    if (
$arr_group['count_moder_wall'] > 0)
    {    
        
$cp ceil($arr_group['count_moder_wall']/10);
        
$p = (isset($_GET['p']) and is_numeric($_GET['p']) and $_GET['p']>and $_GET['p']<=$cp) ? $_GET['p'] : 1;
        
$start $p*10-10;
        
$res mysql_query("SELECT * FROM `groups_wall_moder` WHERE `group_id` = '".$id."' ORDER by `time` DESC LIMIT $start, 10");
        while (
$arr mysql_fetch_array($res))
        {
            echo 
'<div class="block">';
            echo 
user_name($arr['user_id']).'<br/>'.vtime($arr['time']).'<div class="clear"></div>';
            if (!empty(
$arr['text'])) echo '<p>'.links(smiles($arr['text'])).'</p>';
    
            if (!empty(
$arr['photos']))
            {
                
$q explode("||"substr($arr['photos'], 1, -1));
                
$count count($q);
                echo 
'<p><center>';
                for (
$i 0$i $count$i++)
                {
                    if (
file_exists(HOME .'/files/wall/'.$arr['user_id'].'/photos/'.$q[$i])) echo '<a href="'.URL.'/files/wall/'.$arr['user_id'].'/photos/'.$q[$i].'"><img class="preview_mini" src="'.URL.'/files/wall/'.$arr['user_id'].'/photos/mini/'.$q[$i].'"/></a>'; else echo '<img class="preview_mini" src="'.URL.'/design/img/image_not_found.png"/>';
                }
                echo 
'</center></p>';
            }
                    if (!empty(
$arr['video']))
        {
            echo 
'<p>';
            
$q explode("||"substr($arr['video'], 1, -1));
            
$count count($q);
            for (
$i 0$i $count$i++)
            {
                
$arr_video mysql_fetch_array(mysql_query("SELECT * FROM `video` WHERE `id` = '".($q[$i])."' LIMIT 1"));
                    if(
$arr_video['type']==|| $arr_video['type']==2)
                    {
                           if(
is_file(HOME .''.$arr_video['img'].''))$img =''.URL.''.$arr_video['img'].''
                               else
                                   
$img =''.URL.'/design/img/video404.jpg';
                    }
                    elseif(
$arr_video['type']==1)
                    {
                           
$img ='https://i.ytimg.com/vi/'.$arr_video['file'].'/mqdefault.jpg';
                    }
                    
$url ''.URL.'/video/'.$arr_video['id'].'';
                    
//echo '<a href="'.URL.'/video/'.$arr['id'].'" onclick="Page.Go(this.href); return false;"><img class="preview_mini" src="'.$img.'"></a>';
                    
if($count==1){
                        if (empty(
$_COOKIE['site_version']) || $_COOKIE['site_version'] == 'default')echo '<div class="video_one"><a href="'.$url.'" onclick="Page.Go(this.href); return false;"><div class="video_block_one"><img src="'.$img.'"/><div class="video_title_one">'.$arr_video['name'].'</div></div></a></div>';
                    else
                    echo 
'<a href="'.$url.'" onclick="Page.Go(this.href); return false;"><img class="preview_mini" src="'.$img.'"></a>';
                    }else{
                    if (empty(
$_COOKIE['site_version']) || $_COOKIE['site_version'] == 'default')echo '<div class="video"><a href="'.$url.'" onclick="Page.Go(this.href); return false;"><div class="video_block"><img src="'.$img.'"/><div class="video_title">'.$arr_video['name'].'</div></div></a></div>';
                    else
                    echo 
'<a href="'.$url.'" onclick="Page.Go(this.href); return false;"><img class="preview_mini" src="'.$img.'"></a>';    
                        }
            
            }
            echo 
'</p><div class ="clear"></div>';
        }
            if (!empty(
$arr['audio']))
            {
                echo 
'<p>';
                
$q explode("||"substr($arr['audio'], 1, -1));
                
$count count($q);
                for (
$i 0$i $count$i++)
                {
                    echo 
'<p>'.track($q[$i]).'</p>';
                }
                echo 
'</p>';
            }
        echo 
'</div><div class="block3">
        <a class="title_a_hover" href="'
.URL.'/groups/adm/moder_wall.php?id='.$id.'&add='.$arr['id'].'" onclick="Page.Go(this.href); return false">'.lang('Опубликовать','Опублікувати').'</a>
        <a class="title_a_hover" id="bg_black" href="'
.URL.'/groups/adm/moder_wall.php?id='.$id.'&add='.$arr['id'].'&anonim=yes" onclick="Page.Go(this.href); return false">'.lang('Опубликовать анонимно','Опублікувати анонімно').'</a>
        <a class="title_a_hover" id="bg_orange" href="'
.URL.'/groups/adm/moder_wall.php?id='.$id.'&del_post='.$arr['id'].'" onclick="Page.Go(this.href); return false">'.lang('Удалить','Видалити').'</a>
        </div>'
;
        }
        
navi($p,$cp,'/groups/adm/moder_wall.php?id='.$id.'&');
    }


require_once 
'../../incfiles/foot.php';

?>
Онлайн: 0
Реклама