135 lines
4.1 KiB
PHP
135 lines
4.1 KiB
PHP
<?php defined('BLUDIT') or die('Bludit CMS.'); ?>
|
|
|
|
<script>
|
|
// ============================================================================
|
|
// Variables for the view
|
|
// ============================================================================
|
|
|
|
// ============================================================================
|
|
// Functions for the view
|
|
// ============================================================================
|
|
|
|
// ============================================================================
|
|
// Events for the view
|
|
// ============================================================================
|
|
$(document).ready(function() {
|
|
|
|
$('#btnSave').on('click', function() {
|
|
var name = $('#name').val();
|
|
var friendlyURL = $('#friendlyURL').val();
|
|
|
|
if ((name.length < 1) || (friendlyURL.length < 1)) {
|
|
showAlertError("<?php $L->p('Complete all fields') ?>");
|
|
return false;
|
|
}
|
|
|
|
var args = {
|
|
key: $('#key').val(),
|
|
name: name,
|
|
description: $('#description').val(),
|
|
friendlyURL: $('#friendlyURL').val(),
|
|
template: $('#template').val()
|
|
};
|
|
api.editCategory(args).then(function(response) {
|
|
if (response.status == 0) {
|
|
logs('Category edited. Key: ' + response.data.key);
|
|
showAlertInfo("<?php $L->p('The changes have been saved') ?>");
|
|
$('#key').val(response.data.key);
|
|
} else {
|
|
logs('An error occurred while trying to edit the category.');
|
|
showAlertError(response.message);
|
|
}
|
|
});
|
|
return true;
|
|
});
|
|
|
|
$('#btnDelete').on('click', function() {
|
|
var key = $('#key').val();
|
|
logs('Deleting category. Key: ' + key);
|
|
bootbox.confirm({
|
|
message: '<?php $L->p('Are you sure you want to delete this category') ?>',
|
|
buttons: {
|
|
cancel: {
|
|
label: '<i class="fa fa-times"></i><?php $L->p('Cancel') ?>',
|
|
className: 'btn-sm btn-secondary'
|
|
},
|
|
confirm: {
|
|
label: '<i class="fa fa-check"></i><?php $L->p('Confirm') ?>',
|
|
className: 'btn-sm btn-primary'
|
|
}
|
|
},
|
|
closeButton: false,
|
|
callback: function(result) {
|
|
if (result) {
|
|
var args = {
|
|
key: key
|
|
};
|
|
api.deleteCategory(args).then(function(response) {
|
|
if (response.status == 0) {
|
|
logs('Category deleted. Key: ' + response.data.key);
|
|
window.location.replace(HTML_PATH_ADMIN_ROOT + 'categories');
|
|
} else {
|
|
logs('An error occurred while trying to delete the category.');
|
|
showAlertError(response.message);
|
|
}
|
|
});
|
|
return true;
|
|
}
|
|
}
|
|
});
|
|
});
|
|
|
|
});
|
|
|
|
// ============================================================================
|
|
// Initialization for the view
|
|
// ============================================================================
|
|
$(document).ready(function() {
|
|
// No initialization for the view yet
|
|
});
|
|
</script>
|
|
|
|
|
|
<div class="d-flex align-items-center mb-4">
|
|
<h2 class="m-0"><i class="bi bi-bookmark"></i><?php $L->p('Edit category') ?></h2>
|
|
<div class="ms-auto">
|
|
<button id="btnSave" type="button" class="btn btn-primary btn-sm"><?php $L->p('Save') ?></button>
|
|
<button id="btnDelete" type="button" class="btn btn-danger btn-sm"><?php $L->p('Delete') ?></button>
|
|
<a id="btnCancel" class="btn btn-secondary btn-sm" href="<?php echo HTML_PATH_ADMIN_ROOT . 'categories' ?>" role="button"><?php $L->p('Cancel') ?></a>
|
|
</div>
|
|
</div>
|
|
|
|
<?php
|
|
echo Bootstrap::formInputHidden(array(
|
|
'id' => 'key',
|
|
'name' => 'key',
|
|
'value' => $categoryMap['key']
|
|
));
|
|
|
|
echo Bootstrap::formInputText(array(
|
|
'id' => 'name',
|
|
'name' => 'name',
|
|
'label' => $L->g('Name'),
|
|
'value' => $categoryMap['name']
|
|
));
|
|
|
|
echo Bootstrap::formTextarea(array(
|
|
'name' => 'description',
|
|
'label' => $L->g('Description'),
|
|
'value' => isset($categoryMap['description']) ? $categoryMap['description'] : '',
|
|
'rows' => 3
|
|
));
|
|
|
|
echo Bootstrap::formInputText(array(
|
|
'name' => 'template',
|
|
'label' => $L->g('Template'),
|
|
'value' => isset($categoryMap['template']) ? $categoryMap['template'] : ''
|
|
));
|
|
|
|
echo Bootstrap::formInputText(array(
|
|
'name' => 'friendlyURL',
|
|
'label' => $L->g('Friendly URL'),
|
|
'value' => $categoryMap['key'],
|
|
'tip' => DOMAIN_CATEGORIES . $categoryMap['key']
|
|
));
|
|
?>
|