Etat des checkbox liés à l'édition d'une page et aux modules dans l'édition et l'ajout
This commit is contained in:
parent
cca7530631
commit
48de07f997
@ -13,35 +13,41 @@
|
|||||||
|
|
||||||
|
|
||||||
$(document).ready(function () {
|
$(document).ready(function () {
|
||||||
// Désactive tous les éléments de la classe "filemanager" si le checkbox avec l'id "profilEditFileManager" est décoché au chargement de la page
|
|
||||||
if (!$("#profilAddFileManager").prop("checked")) {
|
|
||||||
$(".filemanager").prop("disabled", true);
|
|
||||||
}
|
|
||||||
|
|
||||||
// À chaque inversion de l'état du checkbox avec l'id "profilEditFileManager", désactive ou active tous les éléments de la classe "filemanager" en fonction de l'état
|
|
||||||
|
// À chaque inversion de l'état du checkbox avec l'id "profilAddFileManager", désactive ou active tous les éléments de la classe "filemanager" en fonction de l'état
|
||||||
$("#profilAddFileManager").change(function () {
|
$("#profilAddFileManager").change(function () {
|
||||||
if (!$(this).prop("checked")) {
|
if (!$(this).is(':checked')) {
|
||||||
$(".filemanager").prop("disabled", true);
|
$(".filemanager").prop("disabled", true);
|
||||||
} else {
|
} else {
|
||||||
$(".filemanager").prop("disabled", false);
|
$(".filemanager").prop("disabled", false);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
// Désactive la gestion des pages pour les membres
|
// Gérer l'évènement affichage des
|
||||||
$('#profilAddGroup').change(function() {;
|
$("#profilAddPageModule").change(function () {
|
||||||
if ($(this).val() === '1') {
|
if (!$(this).is(':checked')) {
|
||||||
$('.containerPage, .containerModule').slideUp();
|
$(".containerModule").slideUp();
|
||||||
|
// Décocher les checkboxes dans la classe .containerModule
|
||||||
|
$('.containerModule input[type="checkbox"]').removeAttr('checked');
|
||||||
} else {
|
} else {
|
||||||
$('.containerPage, .containerModule').slideDown();
|
$(".containerModule").slideDown();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
$("#profilAddPageEdit").change(function () {
|
// Gérer l’évènement de modification de la checkbox #profilAddPageEdit
|
||||||
if (!$(this).prop("checked")) {
|
$('#profilAddPageEdit').change(function () {
|
||||||
$(".containerModule").prop("disabled", true);
|
if ($(this).is(':checked')) {
|
||||||
|
// Activer les autres checkboxes
|
||||||
|
$('#profilAddPageModule, #profilAddPagecssEditor, #profilAddPagejsEditor').prop('disabled', false);
|
||||||
} else {
|
} else {
|
||||||
$(".containerModule").prop("disabled", false);
|
// Désactiver les autres checkboxes
|
||||||
|
$('#profilAddPageModule, #profilAddPagecssEditor, #profilAddPagejsEditor').prop('checked', false).prop('disabled', true);
|
||||||
|
// Désactiver les modules et tout décocher
|
||||||
|
$(".containerModule").slideUp();
|
||||||
|
$('.containerModule input[type="checkbox"]').removeAttr('checked');
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
});
|
});
|
||||||
|
@ -17,21 +17,52 @@ $(document).ready(function () {
|
|||||||
if (!$("#profilEditFileManager").prop("checked")) {
|
if (!$("#profilEditFileManager").prop("checked")) {
|
||||||
$(".filemanager").prop("disabled", true);
|
$(".filemanager").prop("disabled", true);
|
||||||
}
|
}
|
||||||
|
// Vérifier l'état initial de la checkbox #profilEditPageEdit
|
||||||
|
if ($('#profilEditPageEdit').is(':checked')) {
|
||||||
|
// Activer les autres checkboxes
|
||||||
|
$('#profilEditPageModule, #profilEditPagecssEditor, #profilEditPagejsEditor').prop('disabled', false);
|
||||||
|
} else {
|
||||||
|
// Désactiver les autres checkboxes
|
||||||
|
$('#profilEditPageModule, #profilEditPagecssEditor, #profilEditPagejsEditor').prop('checked', false).prop('disabled', true);
|
||||||
|
}
|
||||||
|
if (!$("#profilEditPageModule").is(':checked')) {
|
||||||
|
$(".containerModule").slideUp();
|
||||||
|
} else {
|
||||||
|
$(".containerModule").slideDown();
|
||||||
|
}
|
||||||
|
|
||||||
// À chaque inversion de l'état du checkbox avec l'id "profilEditFileManager", désactive ou active tous les éléments de la classe "filemanager" en fonction de l'état
|
// À chaque inversion de l'état du checkbox avec l'id "profilEditFileManager", désactive ou active tous les éléments de la classe "filemanager" en fonction de l'état
|
||||||
$("#profilEditFileManager").change(function () {
|
$("#profilEditFileManager").change(function () {
|
||||||
if (!$(this).prop("checked")) {
|
if (!$(this).is(':checked')) {
|
||||||
$(".filemanager").prop("disabled", true);
|
$(".filemanager").prop("disabled", true);
|
||||||
} else {
|
} else {
|
||||||
$(".filemanager").prop("disabled", false);
|
$(".filemanager").prop("disabled", false);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
$("#profilEditPageEdit").change(function () {
|
// Gérer l'évènement affichage des
|
||||||
if (!$(this).prop("checked")) {
|
$("#profilEditPageModule").change(function () {
|
||||||
$(".containerModule").prop("disabled", true);
|
if (!$(this).is(':checked')) {
|
||||||
|
$(".containerModule").slideUp();
|
||||||
|
// Décocher les checkboxes dans la classe .containerModule
|
||||||
|
$('.containerModule input[type="checkbox"]').removeAttr('checked');
|
||||||
} else {
|
} else {
|
||||||
$(".containerModule").prop("disabled", false);
|
$(".containerModule").slideDown();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// Gérer l’évènement de modification de la checkbox #profilEditPageEdit
|
||||||
|
$('#profilEditPageEdit').change(function () {
|
||||||
|
if ($(this).is(':checked')) {
|
||||||
|
// Activer les autres checkboxes
|
||||||
|
$('#profilEditPageModule, #profilEditPagecssEditor, #profilEditPagejsEditor').prop('disabled', false);
|
||||||
|
} else {
|
||||||
|
// Désactiver les autres checkboxes
|
||||||
|
$('#profilEditPageModule, #profilEditPagecssEditor, #profilEditPagejsEditor').prop('checked', false).prop('disabled', true);
|
||||||
|
// Désactiver les modules et tout décocher
|
||||||
|
$(".containerModule").slideUp();
|
||||||
|
$('.containerModule input[type="checkbox"]').removeAttr('checked');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
|
@ -100,101 +100,103 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="containerModule">
|
||||||
<div class="col12">
|
<div class="row">
|
||||||
<div class="block">
|
<div class="col12">
|
||||||
<h4>
|
<div class="block">
|
||||||
<?php echo helper::translate('Blog'); ?>
|
<h4>
|
||||||
</h4>
|
<?php echo helper::translate('Blog'); ?>
|
||||||
<div class="row">
|
</h4>
|
||||||
<div class="col3">
|
<div class="row">
|
||||||
<?php echo template::checkbox('profilEditBlogAdd', false, 'Ajouter', [
|
<div class="col3">
|
||||||
'checked' => $this->getData(['profil', $this->getUrl(2), $this->getUrl(3), 'blog', 'add'])
|
<?php echo template::checkbox('profilEditBlogAdd', false, 'Ajouter', [
|
||||||
]); ?>
|
'checked' => $this->getData(['profil', $this->getUrl(2), $this->getUrl(3), 'blog', 'add'])
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
<div class="col3">
|
||||||
|
<?php echo template::checkbox('profilEditBlogEdit', false, 'Edit', [
|
||||||
|
'checked' => $this->getData(['profil', $this->getUrl(2), $this->getUrl(3), 'blog', 'edit'])
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
<div class="col3">
|
||||||
|
<?php echo template::checkbox('profilEditBlogDelete', false, 'Supprimer', [
|
||||||
|
'checked' => $this->getData(['profil', $this->getUrl(2), $this->getUrl(3), 'blog', 'delete'])
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
<div class="col3">
|
||||||
|
<?php echo template::checkbox('profilEditBlogConfig', false, 'Configuration', [
|
||||||
|
'checked' => $this->getData(['profil', $this->getUrl(2), $this->getUrl(3), 'blog', 'config'])
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col3">
|
<div class="row">
|
||||||
<?php echo template::checkbox('profilEditBlogEdit', false, 'Edit', [
|
<div class="col4">
|
||||||
'checked' => $this->getData(['profil', $this->getUrl(2), $this->getUrl(3), 'blog', 'edit'])
|
<?php echo template::checkbox('profilEditBlogOption', false, 'Option', [
|
||||||
]); ?>
|
'checked' => $this->getData(['profil', $this->getUrl(2), $this->getUrl(3), 'blog', 'option'])
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
<div class="col4">
|
||||||
|
<?php echo template::checkbox('profilEditBlogComment', false, 'Commentaire', [
|
||||||
|
'checked' => $this->getData(['profil', $this->getUrl(2), $this->getUrl(3), 'blog', 'comment'])
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
<div class="col4">
|
||||||
|
<?php echo template::checkbox('profilEditBlogCommentApprouve', false, 'Approuver commentaire', [
|
||||||
|
'checked' => $this->getData(['profil', $this->getUrl(2), $this->getUrl(3), 'blog', 'commentApprove'])
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col3">
|
<div class="row">
|
||||||
<?php echo template::checkbox('profilEditBlogDelete', false, 'Supprimer', [
|
<div class="col6">
|
||||||
'checked' => $this->getData(['profil', $this->getUrl(2), $this->getUrl(3), 'blog', 'delete'])
|
<?php echo template::checkbox('profilEditBlogCommentDelete', false, 'Supprimer commentaire', [
|
||||||
]); ?>
|
'checked' => $this->getData(['profil', $this->getUrl(2), $this->getUrl(3), 'blog', 'commentDelete'])
|
||||||
</div>
|
]); ?>
|
||||||
<div class="col3">
|
</div>
|
||||||
<?php echo template::checkbox('profilEditBlogConfig', false, 'Configuration', [
|
<div class="col6">
|
||||||
'checked' => $this->getData(['profil', $this->getUrl(2), $this->getUrl(3), 'blog', 'config'])
|
<?php echo template::checkbox('profilEditBlogCommentDeleteAll', false, 'Nettoyer commentaires', [
|
||||||
]); ?>
|
'checked' => $this->getData(['profil', $this->getUrl(2), $this->getUrl(3), 'blog', 'commentDeleteAll'])
|
||||||
</div>
|
]); ?>
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
|
||||||
<div class="col4">
|
|
||||||
<?php echo template::checkbox('profilEditBlogOption', false, 'Option', [
|
|
||||||
'checked' => $this->getData(['profil', $this->getUrl(2), $this->getUrl(3), 'blog', 'option'])
|
|
||||||
]); ?>
|
|
||||||
</div>
|
|
||||||
<div class="col4">
|
|
||||||
<?php echo template::checkbox('profilEditBlogComment', false, 'Commentaire', [
|
|
||||||
'checked' => $this->getData(['profil', $this->getUrl(2), $this->getUrl(3), 'blog', 'comment'])
|
|
||||||
]); ?>
|
|
||||||
</div>
|
|
||||||
<div class="col4">
|
|
||||||
<?php echo template::checkbox('profilEditBlogCommentApprouve', false, 'Approuver commentaire', [
|
|
||||||
'checked' => $this->getData(['profil', $this->getUrl(2), $this->getUrl(3), 'blog', 'commentApprove'])
|
|
||||||
]); ?>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="row">
|
|
||||||
<div class="col6">
|
|
||||||
<?php echo template::checkbox('profilEditBlogCommentDelete', false, 'Supprimer commentaire', [
|
|
||||||
'checked' => $this->getData(['profil', $this->getUrl(2), $this->getUrl(3), 'blog', 'commentDelete'])
|
|
||||||
]); ?>
|
|
||||||
</div>
|
|
||||||
<div class="col6">
|
|
||||||
<?php echo template::checkbox('profilEditBlogCommentDeleteAll', false, 'Nettoyer commentaires', [
|
|
||||||
'checked' => $this->getData(['profil', $this->getUrl(2), $this->getUrl(3), 'blog', 'commentDeleteAll'])
|
|
||||||
]); ?>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<div class="row">
|
||||||
<div class="row">
|
<div class="col12">
|
||||||
<div class="col12">
|
<div class="block">
|
||||||
<div class="block">
|
<h4>
|
||||||
<h4>
|
<?php echo helper::translate('News'); ?>
|
||||||
<?php echo helper::translate('News'); ?>
|
</h4>
|
||||||
</h4>
|
<div class="row">
|
||||||
<div class="row">
|
<div class="col4">
|
||||||
<div class="col4">
|
<?php echo template::checkbox('profilEditNewsAdd', false, 'Ajouter', [
|
||||||
<?php echo template::checkbox('profilEditNewsAdd', false, 'Ajouter', [
|
'checked' => $this->getData(['profil', $this->getUrl(2), $this->getUrl(3), 'news', 'add'])
|
||||||
'checked' => $this->getData(['profil', $this->getUrl(2), $this->getUrl(3), 'news', 'add'])
|
]); ?>
|
||||||
]); ?>
|
</div>
|
||||||
</div>
|
<div class="col4">
|
||||||
<div class="col4">
|
<?php echo template::checkbox('profilEditNewsEdit', false, 'Edit', [
|
||||||
<?php echo template::checkbox('profilEditNewsEdit', false, 'Edit', [
|
'checked' => $this->getData(['profil', $this->getUrl(2), $this->getUrl(3), 'news', 'edit'])
|
||||||
'checked' => $this->getData(['profil', $this->getUrl(2), $this->getUrl(3), 'news', 'edit'])
|
]); ?>
|
||||||
]); ?>
|
</div>
|
||||||
</div>
|
<div class="col4">
|
||||||
<div class="col4">
|
<?php echo template::checkbox('profilEditNewsDelete', false, 'Supprimer', [
|
||||||
<?php echo template::checkbox('profilEditNewsDelete', false, 'Supprimer', [
|
'checked' => $this->getData(['profil', $this->getUrl(2), $this->getUrl(3), 'news', 'delete'])
|
||||||
'checked' => $this->getData(['profil', $this->getUrl(2), $this->getUrl(3), 'news', 'delete'])
|
]); ?>
|
||||||
]); ?>
|
</div>
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="row">
|
|
||||||
<div class="col6">
|
|
||||||
<?php echo template::checkbox('profilEditNewsConfig', false, 'Configuration', [
|
|
||||||
'checked' => $this->getData(['profil', $this->getUrl(2), $this->getUrl(3), 'news', 'config'])
|
|
||||||
]); ?>
|
|
||||||
</div>
|
|
||||||
<div class="col6">
|
|
||||||
<?php echo template::checkbox('profilEditNewsOption', false, 'Option', [
|
|
||||||
'checked' => $this->getData(['profil', $this->getUrl(2), $this->getUrl(3), 'news', 'option'])
|
|
||||||
]); ?>
|
|
||||||
</div>
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col6">
|
||||||
|
<?php echo template::checkbox('profilEditNewsConfig', false, 'Configuration', [
|
||||||
|
'checked' => $this->getData(['profil', $this->getUrl(2), $this->getUrl(3), 'news', 'config'])
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
<div class="col6">
|
||||||
|
<?php echo template::checkbox('profilEditNewsOption', false, 'Option', [
|
||||||
|
'checked' => $this->getData(['profil', $this->getUrl(2), $this->getUrl(3), 'news', 'option'])
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user