EngineGP/template/acp/js/pages.js
Sergei Solovev b59003e559 Reformat code
This update contains code reformatting to meet PHP standards.
2023-11-12 21:12:42 +03:00

58 lines
1.4 KiB
JavaScript

$('#page').ajaxForm({
dataType: 'json',
success: function (data) {
$.each(data, function (i, val) {
if (i == 'e')
bootbox.dialog('<h3 class="red">Ошибка</h3>' + val,
[{
"label": "Продолжить"
}]
);
if (i == 's')
location.reload();
});
loading(0)
}
});
function page_delete(id) {
bootbox.dialog('<h3 class="green">Внимание</h3> Вы уверены, что хотите удалить страницу?',
[{
"label": "Удалить",
callback: function () {
page_delete_go(id)
}
}, {
"label": "Отмена",
}]
);
return false;
}
function page_delete_go(id) {
loading(1);
$.ajax({
type: 'POST',
url: home + 'pages/section/delete/id/' + id,
dataType: 'json',
success: function (data) {
$.each(data, function (i, val) {
if (i == 'e')
bootbox.dialog('<h3 class="red">Ошибка</h3>' + val,
[{
"label": "Продолжить"
}]
);
if (i == 's')
location.reload()
});
loading(0);
}
});
}