Sindbad~EG File Manager
jQuery(function ($) {
var $cbProfile = $('input[name=blogposts_profile_enable]'),
$cbTwoColumn = $('input[name=blogposts_profile_two_column_enable]'),
$cbFeaturedImage = $('input[name=blogposts_profile_featured_image_enable]'),
$cbAuthorbox = $('input[name=blogposts_authorbox_enable]'),
$cbActivity = $('input[name=blogposts_activity_enable]'),
$cbComment = $('input[name=blogposts_comments_enable]');
// Handle enable profile checkbox.
$cbProfile.on('click', function () {
var $field = $(this).closest('.form-group'),
$fields = $field.nextAll('.form-group'),
$siblingBoxes = $field.closest('.postbox').siblings('.postbox');
// Also add the `.clearfix` element next to the field.
$fields = $fields.map(function () {
var $field = $(this);
return [this, $(this).next('.clearfix').get(0)];
});
if (this.checked) {
$fields.show();
$siblingBoxes.show();
$cbTwoColumn.triggerHandler('click');
$cbFeaturedImage.triggerHandler('click');
$cbAuthorbox.triggerHandler('click');
} else {
$fields.hide();
$siblingBoxes.hide();
}
});
// Handle enable two column layout checkbox.
$cbTwoColumn.on('click', function () {
// Get all subsequent rows until the next "header" row.
var $fields = $(this).closest('.form-group').nextUntil('.form-group[id$="_header"]');
if (this.checked) {
$fields.show();
} else {
$fields.hide();
}
});
// Handle enable two column layout.
$cbFeaturedImage.on('click', function () {
// Get all subsequent rows until the next "header" row.
var $fields = $(this).closest('.form-group').nextUntil('.form-group[id$="_header"]');
if (this.checked) {
$fields.show();
} else {
$fields.hide();
}
});
// Handle enable authorbox checkbox.
$cbAuthorbox.on('click', function () {
var $fields = $('input[name=blogposts_authorbox_author_name_pre_text]').closest(
'.form-group'
);
// Also add the `.clearfix` element next to the field.
$fields = $fields.add($fields.next('.clearfix'));
if (this.checked) {
$fields.show();
} else {
$fields.hide();
}
});
// Handle enable activity checkbox.
$cbActivity.on('click', function () {
var $field = $(this).closest('.form-group'),
$fields = $field.nextAll('.form-group');
// Also add the `.clearfix` element next to the field.
$fields = $fields.map(function () {
var $field = $(this);
return [this, $(this).next('.clearfix').get(0)];
});
if (this.checked) {
$fields.show();
$cbComment.triggerHandler('click');
} else {
$fields.hide();
}
});
// Handle enable comment checkbox.
$cbComment.on('click', function () {
var $field = $(this).closest('.form-group'),
$fields = $field.nextAll('.form-group');
// Also add the `.clearfix` element next to the field.
$fields = $fields.map(function () {
var $field = $(this);
return [this, $(this).next('.clearfix').get(0)];
});
if (this.checked) {
$fields.show();
} else {
$fields.hide();
}
});
// Set initial visibility.
$cbProfile.triggerHandler('click');
$cbActivity.triggerHandler('click');
});
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists