Файл: groups/adm/link.php
Строк: 78
<?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);
?>
<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,
success: function(response){
if(response){
$('.content').html(response);
}
}
});
});
});
</script>
<?
$title = lang('Адрес сообщества','Адреса спільноти');
require_once '../../incfiles/head.php';
if(empty($arr_group['mylink']))$url = lang('адрес.famalyua.com','адреса.famalyua.com');
else $url = '<font size="3" color="red">'.$arr_group['mylink'].'.famalyua.com</font>';
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>';
?>
<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,
success: function(response){
if(response){
$('.content').html(response);
}
}
});
});
});
</script>
<?
require_once '../handler/link.php';
echo '<form id="form" method="post" action="'.URL.'/groups/adm/link.php?id='.$id.'">
<div class="block">
'.$url.'
<input class="input" type="text" name="link" value="'.$arr_group['mylink'].'">
</div>
<div class="block">
<input class="button2" type="submit" value="'.lang('Сохранить','Зберегти').'"/>
</form>
</div></div>';
require_once '../../incfiles/foot.php';
?>