Файл: groups/adm/shop.upload_photo.php
Строк: 103
<?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_id, explode("||", substr($arr_group['admins'], 1, -1)))) go(URL);
}
else go(URL);
if (!empty($_GET['gid']) && is_numeric($_GET['gid']))
{
$gid = abs(intval($_GET['gid']));
$g_info = DB::$dbs->queryFetch("SELECT * FROM groups_shop_goods WHERE `id` = ?",array($gid));
if (empty($g_info)) 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>
<a href="'.URL.'/groups/adm/shop.upload_photo.php?id='.$id.'&gid='.$gid.'" onclick="Page.Go(this.href); return false">'.lang('Загрузить фото','Загрузити фото').'</a>
</div>';
if ($site_version == 'default')
{
?>
<script type="text/javascript">
$(function(){
$('#form').on('submit', function(e){
e.preventDefault();
var $that = $(this),
formData = new FormData($that.get(0));
$.ajax({
url: $that.attr('action'),
type: $that.attr('method'),
contentType: false,
processData: false,
data: formData,
dataType: 'json',
xhr: function(){
var xhr = $.ajaxSettings.xhr(); // получаем объект XMLHttpRequest
xhr.upload.addEventListener('progress', function(evt){ // добавляем обработчик события progress (onprogress)
$('#notifications').html('<?echo '<p>'.lang('Загрузка...','Завантаження...').'</p>';?><progress id="progressbar" value="0" max="100"></progress>').show();
var progressBar = $('#progressbar');
if(evt.lengthComputable) { // если известно количество байт
// высчитываем процент загруженного
var percentComplete = Math.ceil(evt.loaded / evt.total * 100);
// устанавливаем значение в атрибут value тега <progress>
// и это же значение альтернативным текстом для браузеров, не поддерживающих <progress>
progressBar.val(percentComplete).text(percentComplete + '%');
if(percentComplete == 100)
{
$('#notifications').hide();
Page.Go($that.attr('action'));
}
}
}, false);
return xhr;
},
success: function(json){
if(json){
$that.after(json);
}
}
});
});
});
</script>
<?
}
require_once '../handler/shop.upload.php';
echo '
<div class="title">'.lang('Загрузить','Завантажити').' фото</div>
<div class="block">
<div class="for_pc">
<form id="form" action="'.URL.'/groups/adm/shop.upload_photo.php?id='.$id.'&gid='.$gid.'" method="post" enctype="multipart/form-data">
<input class="input2" name="file1" type="file"><br/>
<input class="input2" name="file2" type="file"><br/>
<input class="input2" name="file3" type="file"><br/>
<input class="button2" type="submit" name="upl" value="'.lang('Загрузить','Завантажити').'">
</form>
</div><div class="for_mobile">
<form id="form" action="'.URL.'/groups/adm/shop.upload_photo.php?id='.$id.'&gid='.$gid.'" method="post" enctype="multipart/form-data">
<input class="input2" name="file1" type="file"><br/>
<input class="input2" name="file2" type="file"><br/>
<input class="input2" name="file3" type="file"><br/>
<input class="button2" type="submit" name="upl" value="'.lang('Загрузить','Завантажити').'">
</form>
</div>
</div>';
require_once '../../incfiles/foot.php';
?>