Файловый менеджер - Редактировать - /home/onlin326/cristianalberio.org/wp-content/plugins/boldgrid-backup/admin/js/boldgrid-backup-admin-settings-autoupdate.js
Назад
/** * Auto update settings * * @summary JavaScript for the auto update settings. */ /* global ajaxurl,jQuery */ var BOLDGRID = BOLDGRID || {}; BOLDGRID.SETTINGS = BOLDGRID.SETTINGS || {}; ( function( $ ) { var self; BOLDGRID.SETTINGS.AutoUpdate = { /** * Constructor. * * @since 1.7.0 */ init: function() { $( self._onLoad ); }, /** * On DOM load. * * @since 1.7.0 */ _onLoad: function() { var $bgBox = $( '.bg-box' ); // Initialize jquery-toggles. $bgBox.find( '.toggle' ).toggles( { text: { on: '', off: '' }, height: 15, width: 40 } ); self._setMasterToggles(); $bgBox.find( '.toggle-group' ).on( 'click swipe contextmenu', self._toggleGroup ); $bgBox .find( '.toggle' ) .not( '.toggle-group' ) .on( 'click swipe contextmenu', self._setMasterToggles ); $bgBox .find( '.table-help td p' ) .attr( 'style', 'height: 0em; opacity: 0%; position: relative; z-index:-1' ); $bgBox .find( '.div-table-body .dashicons-editor-help, .help-icon' ) .on( 'click', self._toggleHelp ); $bgBox.find( '.help-icon' ).css( 'cursor', 'pointer' ); $bgBox.find( '.bglib-collapsible-control' ).on( 'click', function() { var target = $( this ).attr( 'data-target' ); $( target ).animate( { height: 'toggle', opacity: 'toggle' }, 'slow' ); $( this ).toggleClass( 'bglib-collapsible-open' ); } ); if ( true === $( '#timely-updates-disabled' ).prop( 'checked' ) ) { $( '#timely-updates-days' ).prop( 'disabled', true ); $( '#timely-updates-days-hidden' ).prop( 'disabled', false ); } $( 'input[name="auto_update[timely-updates-enabled]"]' ).change( function() { if ( true === $( '#timely-updates-disabled' ).prop( 'checked' ) ) { $( '#timely-updates-days' ).prop( 'disabled', true ); $( '#timely-updates-days-hidden' ).prop( 'disabled', false ); } else { $( '#timely-updates-days' ).prop( 'disabled', false ); $( '#timely-updates-days-hidden' ).prop( 'disabled', true ); } } ); }, /** * Set inputs for toggles. * * @since 1.7.0 */ _setInputs: function() { var $bgBox = $( '.bg-box' ), $wpcoreToggles = $bgBox.find( '.wpcore-toggle' ), $pluginToggles = $bgBox.find( '.plugin-toggle' ), $themeToggles = $bgBox.find( '.theme-toggle' ), $pluginsDefault = $bgBox.find( '#toggle-default-plugins' ), $themesDefault = $bgBox.find( '#toggle-default-themes' ), $timelyUpdatesEnabled = $bgBox.find( '#timely-updates-enabled' ), $timelyUpdatesDisabled = $bgBox.find( '#timely-updates-disabled' ), $timelyUpdatesDays = $bgBox.find( '#timely-updates-days' ); // If the updates section is not in use, then just return. if ( ! $pluginsDefault.data( 'toggles' ) ) { return; } $wpcoreToggles.each( function() { var $this = $( this ); var $thisInput = $this .next( 'input' ) .attr( 'name', 'auto_update[wpcore][' + $this.data( 'wpcore' ) + ']' ) .val( $this.data( 'toggles' ).active ? 1 : 0 ); } ); $pluginToggles.each( function() { var $this = $( this ); var $thisInput = $this .next( 'input' ) .attr( 'name', 'auto_update[plugins][' + $this.data( 'plugin' ) + ']' ) .val( $this.data( 'toggles' ).active ? 1 : 0 ); } ); $themeToggles.each( function() { var $this = $( this ); var $thisInput = $this .next( 'input' ) .attr( 'name', 'auto_update[themes][' + $this.data( 'stylesheet' ) + ']' ) .val( $this.data( 'toggles' ).active ? 1 : 0 ); } ); $pluginsDefault.next( 'input' ).val( $pluginsDefault.data( 'toggles' ).active ? 1 : 0 ); $themesDefault.next( 'input' ).val( $themesDefault.data( 'toggles' ).active ? 1 : 0 ); }, /** * Set master toggles. * * @since 1.7.0 */ _setMasterToggles: function() { var $masters = $( '.bg-box' ).find( '.toggle-group' ); $masters.each( function() { var $master = $( this ), state = true; $master .closest( '.div-table-body' ) .find( '.toggle' ) .not( '.toggle-group,#toggle-default-plugins,#toggle-default-themes' ) .each( function() { if ( ! state || ! $( this ).data( 'toggles' ).active ) { state = false; } } ); $master.toggles( state ); } ); self._setInputs(); }, /** * Toggle an entire group on/off. * * @since 1.7.0 */ _toggleGroup: function() { var $this = $( this ), $toggles = $this .parent() .parent() .parent() .find( '.toggle' ) .not( '#toggle-default-plugins,#toggle-default-themes' ); $toggles.toggles( $this.data( 'toggles' ).active ); self._setInputs(); }, /** * Replace the notice with a clone when removed by dismissal. * * @since 1.7.0 */ _replaceNotice: function( $notice ) { var $noticeClone = $notice.clone(), $noticeNext = $notice.next(); $notice.one( 'click.wp-dismiss-notice', '.notice-dismiss', function() { $noticeNext.before( $noticeClone ); $notice = $noticeClone; $notice.hide(); } ); }, /** * Handle form submission. * * @since 1.7.0 */ _toggleHelp: function( e ) { var id = $( this ).attr( 'data-id' ), target = $( '.table-help[data-id="' + id + '"]' ); e.preventDefault(); if ( id === undefined ) { return false; } $( target ).toggleClass( 'show-help hide-help' ); $( '.table-help.show-help[data-id="' + id + '"] td p' ).animate( { height: '3em', opacity: '100%', 'z-index': 0 }, 400 ); $( '.table-help.hide-help[data-id="' + id + '"] td p' ).animate( { height: '0em', opacity: '0%', 'z-index': -1 }, 400 ); return false; } }; // eslint-disable-next-line vars-on-top var self = BOLDGRID.SETTINGS.AutoUpdate; BOLDGRID.SETTINGS.AutoUpdate.init(); } )( jQuery );
| ver. 1.4 |
Github
|
.
| PHP 8.1.32 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка