Размер файла: 883B
<?php
require_once($_SERVER['DOCUMENT_ROOT'].'/system/App.php');
if(isset($_POST))
{
if(empty($me))
{
$json = ['error' => 1, 'comment' => 'У вас нет прав для просмотра данной страницы'];
}
else if(empty($me['avatar']) || $me['avatar'] == '/design/img/avatar.jpg')
{
$json = ['error' => 1, 'comment' => 'Аватар ещё не был загружен'];
}
else
{
$bool = Base::update('user', $me['id'], [
'avatar' => '',
]);
if(@unlink('../uploads/avatar/'.basename($me['avatar'])) && $bool == true)
{
$json = array('success' => '1', 'comment' => 'Аватар удалён');
}
else
{
$json = array('error' => '1', 'comment' => 'Ошибка удаления');
}
}
}
else
{
$json = ['error' => 1, 'comment' => 'Пустое значение'];
}
echo json_encode($json, JSON_UNESCAPED_UNICODE);
?>