Вход Регистрация
Файл: modules/obmen/inc/file_form.php
Строк: 153
<?php

/* DCMS Special
 * Дата последнего редактирования 11.12.2015
 * Модифицировал densnet
 */

if ((access('obmen_file_delete') || $user['id'] == $file_id['id_user']) && isset($_GET['act']) && $_GET['act'] == 'edit') {
    echo 
'<div class="card">';
    echo 
"<div class = 'card-header'>Параметры <a style = 'float:right;color: grey;' href = '?showinfo'><small>Закрыть</small></a></div>";
    echo 
"<form method = 'post' class = 'card-block' action = '?showinfo&amp;act=edit&amp;ok'>";

    echo 
"<div class='row'>";
    echo 
"<div class='input-field col s12'>";
    echo 
"<input id='name' name='name' type='text' value='$file_id[name]' class='validate'>";
    echo 
"<label for='name'>Название</label>";
    echo 
"</div>";
    echo 
"</div>";

    echo 
"<div class='row'>";
    echo 
"<div class='input-field col s12'>";
    echo 
"<textarea name='opis' id='opis' class='materialize-textarea'>$file_id[opis]</textarea>";
    echo 
"<label for='opis'>Описание</label>";
    echo 
"</div>";
    echo 
"</div>";

    echo 
"Формат: <font color='green'>$file_id[ras]</font><br />";
    echo 
"<button name = 'save' class = 'waves-effect waves-light btn'><i class='material-icons'>save</i> Сохранить</button>";
    echo 
"</form>";
    echo 
"</div>";
}

if ((
access('obmen_file_delete') || $user['id'] == $file_id['id_user']) && isset($_GET['act']) && $_GET['act'] == 'parol') {
    echo 
'<div class="card">';
    echo 
"<div class='card-header'>Пароль<a style='float:right;color: grey;' href='?showinfo'><small>Закрыть</small></a></div>";
    echo 
"<form method='post' class='card-block' action='?showinfo&amp;act=parol&amp;ok'>";

    echo 
"<div class='row'>";
    echo 
"<div class='input-field col s12'>";
    echo 
"<input id='parol' name='parol' type='text' value='$file_id[parol]' class='validate'>";
    echo 
"<label for='parol'>Пароль</label>";
    echo 
"</div>";
    echo 
"</div>";

    echo 
"<button name='save' class='waves-effect waves-light btn'><i class='material-icons'>save</i> Сохранить</button>";
    echo 
"</form>";
    echo 
"</div>";
}


if (
access('obmen_file_delete') && isset($_GET['act']) && $_GET['act'] == 'blokk') {
    echo 
'<div class="card">';
    echo 
"<div class='card-header'>Блокировка<a style='float:right;color: grey;' href = '?showinfo'><small>Закрыть</small></a></div>";
    echo 
"<form method='post' class='card-block' action='?showinfo&amp;act=blok&amp;ok'>n";

    echo 
"<div class='row'>";
    echo 
"<div class='input-field col s12'>";
    echo 
"<input id='blok' name='blok' type='text' value='' class='validate'>";
    echo 
"<label for='blok'>Причина блокировки</label>";
    echo 
"</div>";
    echo 
"</div>";

    echo 
"<button name = 'save' class = 'waves-effect waves-light btn'><i class='material-icons'>save</i> Сохранить</button>";
    echo 
"</form>";
    echo 
"</div>";
}

if (
access('obmen_file_delete') && isset($_GET['act']) && $_GET['act'] == 'delete') {
    echo 
'<div class="card">';
    echo 
"<div class = 'card-header'>Удаление <a style = 'float:right;color: grey;' href = '?showinfo'><small>Закрыть</small></a></div>";
    echo 
"<div class = 'card-block'>";
    echo 
"Удалить файл " toOutput($file_id['name']) . "?<br />";
    echo 
"<a class = 'waves-effect waves-light btn' href = '?showinfo&amp;act=delete&amp;ok' style = 'color:white;'>Да</a> ";
    echo 
"<a class = 'waves-effect waves-light btn btn-secondary' href = '?showinfo'>Нет</a>";
    echo 
"</div>";
    echo 
"</div>";
}

if (
access('obmen_file_delete')) {
    echo 
"<div class='collection'>";
    echo 
"<a href = '?showinfo&amp;act=edit' class = 'collection-item'><i class='material-icons left'>settings</i> Параметры</a>";
    echo 
"<a href = '?showinfo&amp;act=delete' class = 'collection-item'><i class='material-icons left'>delete</i> Удалить</a>";

    if (
$file_id['parol'] != NULL && $file_id['blok'] == NULL) {
        echo 
"<a href = '?showinfo&amp;act=parol' class = 'collection-item'><i class='material-icons left'>phonelink_lock</i> Изменить пароль</a>";
        echo 
"<a href = '?showinfo&amp;act=paroll&amp;ok' class = 'collection-item'><i class='material-icons left'>indeterminate_check_box</i> Удалить пароль</a>";
    } else if (
$file_id['blok'] == NULL) {
        echo 
"<a href = '?showinfo&amp;act=parol' class = 'collection-item'><i class='material-icons left'>lock</i> Поставить пароль</a>";
    }
    if (
$file_id['blok'] != NULL) {
        echo 
"<a href = '?showinfo&amp;act=blokk&amp;ok' class = 'collection-item'><span class='fa fa-ban fa-fw'></span> Разблокировать</a>";
    } else {
        echo 
"<a href = '?showinfo&amp;act=blokk' class = 'collection-item'><i class='material-icons left'>block</i> Заблокировать</a>";
    }
    echo 
"</div>";
} elseif (isset(
$user) && $user['id'] == $file_id['id_user']) {
    echo 
"<div class='collection'>";
    echo 
"<a href = '?showinfo&amp;act=edit' class = 'collection-item'><i class='material-icons left'>settings</i> Параметры</a>";
    echo 
"<a href = '?showinfo&amp;act=delete' class = 'collection-item'><i class='material-icons left'>delete</i> Удалить</a>";

    if (
$file_id['parol'] != NULL && $file_id['blok'] == NULL) {
        echo 
"<a href = '?showinfo&amp;act=parol' class='collection-item'><i class='material-icons left'>phonelink_lock</i> Изменить пароль</a>";
        echo 
"<a href = '?showinfo&amp;act=paroll&amp;ok' class='collection-item'><i class='material-icons left'>indeterminate_check_box</i> Удалить пароль</a>";
    } else if (
$file_id['blok'] == NULL) {
        echo 
"<a href = '?showinfo&amp;act=parol' class='collection-item'><i class='material-icons left'>lock</i> Поставить пароль</a>";
    }
    echo 
"</div>";
}

if (isset(
$user)) {
    if (isset(
$_GET['idd']) && $user['id'] != @$_GET['id']) {
        
$q_user mysql_fetch_array(mysql_query("SELECT * FROM `user` WHERE `id`='" mysql_real_escape_string($_GET['idd']) . "'"));
        echo 
"<form class = 'list-group-item' method="post" name='message' action="?showinfo&amp;mess&amp;uidd=$q_user[id]">n";
    } else {
        echo 
"<form class = 'list-group-item' method="post" name='message' action="?showinfo&amp;mess">n";
    }

    if (isset(
$_GET['idd']) && isset($user) && $user['id'] != @$_GET['id']) {
        
$q_user mysql_fetch_array(mysql_query("SELECT * FROM `user` WHERE `id`='" mysql_real_escape_string($_GET['idd']) . "'"));

        echo 
"<div class='row'>";
        echo 
"<div class='input-field col s12'>";
        echo 
"<textarea name='msg' id='msg' length='10024' class='materialize-textarea'>$q_user[nick], </textarea>";
        echo 
"<label for='msg'>Комментарий</label>";
        echo 
"</div>";
        echo 
"</div>";
    } else {
        echo 
"<div class='row'>";
        echo 
"<div class='input-field col s12'>";
        echo 
"<textarea name='msg' id='msg' length='10024' class='materialize-textarea'></textarea>";
        echo 
"<label for='msg'>Комментарий</label>";
        echo 
"</div>";
        echo 
"</div>";
    }

    echo 
"<button class='waves-effect waves-light btn'>Добавить</button>";
    echo 
"</form>n";
}

$k_post mysql_result(mysql_query("SELECT COUNT(*) FROM `obmennik_komm` WHERE `id_file` = '$file_id[id]'"), 0);
$k_page k_page($k_post5);
$page page($k_page);
$start $page 5;

if (
$k_post == 0) {
    echo 
"<div class='list-group-item' style='margin-top: 5px;margin-bottom: 5px;'>n";
    echo 
"<i class='material-icons'>feedback</i> Нет результатов";
    echo 
"</div>";
}

$q mysql_query("SELECT * FROM `obmennik_komm` WHERE `id_file` = '$file_id[id]' ORDER BY `id` DESC LIMIT $start, 5");
while (
$post mysql_fetch_assoc($q)) {
    
$ank get_user($post['id_user']);

    echo 
"<table class='list-group-item' style='margin-top: 5px;margin-bottom: 5px;'><tr><td class='icon14'>";
    
avatar($ank['id'], '48''border-radius: 2px;');
    echo 
"</td><td class='null'>";
    echo 
"<div style='float:right;' id='hides'>";
    if (
$ank['id'] != $user['id']) {
        echo 
"<a href='?showinfo&amp;mess&amp;page=$page&amp;idd=$post[id_user]' title = 'Ответить'><i class='material-icons'>edit</i></a> ";
    }

    if (
access('obmen_komm_del')) {
        echo 
"<a href='?showinfo&amp;mess&amp;page=$page&amp;del_post=$post[id]' title = 'Удалить'><i class='material-icons'>delete</i></a>";
    }
    echo 
"</div>";
    echo 
user($ank['id']);
    echo 
" <small>" date::times($post['time']) . "</small><br />";

    echo 
toOutput($post['msg']) . "<br />n";

    echo 
"</td></tr></table>";
}

if (
$k_page 1) {
    echo 
"<div class='list-group-item'>";
    
str('?showinfo&amp;'$k_page$page);
    echo 
"</div>";
// Вывод страниц
Онлайн: 1
Реклама