X7ROOT File Manager
Current Path:
/home/notabjze/usahomesolar.org/wp-content/plugins/custom-css-js/includes
home
/
notabjze
/
usahomesolar.org
/
wp-content
/
plugins
/
custom-css-js
/
includes
/
ðŸ“
..
📄
admin-addons.php
(6.86 KB)
📄
admin-config.php
(9.83 KB)
📄
admin-install.php
(5.09 KB)
📄
admin-notices.php
(7.14 KB)
📄
admin-screens.php
(56.56 KB)
📄
admin-warnings.php
(1.52 KB)
Editing: admin-warnings.php
<?php /** * Custom CSS and JS * */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } /** * CustomCSSandJS_Warnings */ class CustomCSSandJS_Warnings { private $allowed_actions = array( ); /** * Constructor */ public function __construct() { if ( ! function_exists( 'is_plugin_active' ) ) { require_once( ABSPATH . 'wp-admin/includes/plugin.php' ); } add_action( 'wp_ajax_ccj_dismiss', array( $this, 'notice_dismiss' ) ); } /** * Allow the dismiss button to remove the notice */ function dismiss_js( $slug ) { ?> <script type='text/javascript'> jQuery(function($){ $(document).on( 'click', '#<?php echo $slug; ?> .notice-dismiss', function() { var data = { action: 'ccj_dismiss', option: '<?php echo $slug; ?>', nonce: $(this).parent().data('nonce'), }; $.post(ajaxurl, data, function(response ) { $('#<?php echo $slug; ?>').fadeOut('slow'); }); }); }); </script> <?php } /** * Ajax response for `notice_dismiss` action */ function notice_dismiss() { $option = $_POST['option']; if ( ! in_array($option, $this->allowed_actions ) ) { return; } check_ajax_referer( $option, 'nonce' ); update_option( $option, 1 ); wp_die(); } } return new CustomCSSandJS_Warnings();
Upload File
Create Folder