HEX
Server: LiteSpeed
System: Linux premium283.web-hosting.com 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP Wed Mar 26 12:08:09 UTC 2025 x86_64
User: citaqlmd (746)
PHP: 8.1.33
Disabled: NONE
Upload Files
File: /home/citaqlmd/nt.lmskreators.com/wp-content/plugins/mycred/includes/mycred-uninstall.php
<?php
if ( !class_exists( 'myCred_Uninstall_Settings' ) ):
    class myCred_Uninstall_Settings
    {
        private static $_instance;

        /**
         * myCred_Uninstall_Settings constructor.
         * @since 2.1.1
         * @version 1.0
         */
        public function __construct() {

            add_action( 'mycred_after_core_prefs', array( $this, 'uninstall_settings' ), 9 );
            add_filter( 'mycred_save_core_prefs',  array( $this, 'sanitize_extra_settings' ), 10, 3 );
        
        }

        /**
         * @return mixed
         * @since 2.1.1
         * @version 1.0
         */
        public static function get_instance() {

            if ( self::$_instance == null )
                self::$_instance = new self();

            return self::$_instance;
        
        }

        /**
         * Generates Uninstall Menu In myCred Settings
         * @since 2.1.1
         * @version 1.0
         */
        public function uninstall_settings()
        {
            ?>
            <div class="mycred-ui-accordion">
                <div class="mycred-ui-accordion-header">
                    <h4 class="mycred-ui-accordion-header-title">
                        <span class="dashicons dashicons-trash static mycred-ui-accordion-header-icon"></span>
                        <label><?php esc_html_e( 'Uninstall', 'mycred' ); ?></label>
                    </h4>
                    <div class="mycred-ui-accordion-header-actions hide-if-no-js">
                        <button type="button" aria-expanded="true">
                            <span class="mycred-ui-toggle-indicator" aria-hidden="true"></span>
                        </button>
                    </div>
                </div>
                <div class="body mycred-ui-accordion-body" style="display:none;">
                    <div class="row">
                        <div class="col-lg-4 col-md-4 col-sm-12 col-xs-12">
                            <div class="form-group">
                                <label>Remove</label>
                                <div class="radio" style="margin: 10px 0;">
                                    <label for="mycred-uninstall-types">
                                        <input type="checkbox" name="mycred_pref_core[uninstall][types]" <?php echo $this->checked( 'types' ) ? 'checked' : ''; ?> id="mycred-uninstall-types" value="1">
                                        All Point Types
                                    </label>
                                </div>
                                <div class="radio" style="margin: 10px 0;">
                                    <label for="mycred-uninstall-logs">
                                        <input type="checkbox" name="mycred_pref_core[uninstall][logs]" <?php echo $this->checked( 'logs' ) ? 'checked' : ''; ?> id="mycred-uninstall-logs" value="1">
                                        All Logs
                                    </label>
                                </div>
                                <div class="radio" style="margin: 10px 0;">
                                    <label for="mycred-uninstall-users-data">
                                        <input type="checkbox" name="mycred_pref_core[uninstall][users]" <?php echo $this->checked( 'users' ) ? 'checked' : ''; ?> id="mycred-uninstall-users-data" value="1">
                                    All Users' Data
                                </label>
                                </div>
                                <div class="radio" style="margin: 10px 0;">
                                    <label for="mycred-uninstall-addon-settings">
                                        <input type="checkbox" name="mycred_pref_core[uninstall][addon]" <?php echo $this->checked( 'addon' ) ? 'checked' : ''; ?> id="mycred-uninstall-addon-settings" value="1">
                                        All Addon's Settings
                                    </label>
                                </div>
                                <div class="radio" style="margin: 10px 0;">
                                    <label for="mycred-uninstall-hooks">
                                        <input type="checkbox" name="mycred_pref_core[uninstall][hooks]" <?php echo $this->checked( 'hooks' ) ? 'checked' : ''; ?> id="mycred-uninstall-hooks" value="1">
                                        All Hook's Settings
                                    </label>
                                </div>
                                <div class="radio" style="margin: 10px 0;">
                                    <label for="mycred-uninstall-badges">
                                        <input type="checkbox" name="mycred_pref_core[uninstall][badges]" <?php echo $this->checked( 'badges' ) ? 'checked' : ''; ?> id="mycred-uninstall-badges" value="1">
                                        All Badges
                                    </label>
                                </div>
                                <div class="radio" style="margin: 10px 0;">
                                    <label for="mycred-uninstall-ranks">
                                        <input type="checkbox" name="mycred_pref_core[uninstall][ranks]" <?php echo $this->checked( 'ranks' ) ? 'checked' : ''; ?> id="mycred-uninstall-ranks" value="1">
                                        All Ranks
                                    </label>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
            <?php
        }


        /**
         * Checks the checkbox if already checked
         * @param $key
         * @return bool
         * @since 2.1.1
         * @version 1.0
         */
        public function checked( $key )
        {
            $hooks = mycred_get_option( 'mycred_pref_core', false );

            if ( is_array( $hooks ) )
                if ( array_key_exists( 'uninstall', $hooks ) && array_key_exists( $key, $hooks['uninstall'] ) && $hooks['uninstall'][$key] == 1 )
                    return true;

            return false;
        }

        /**
         * Sanitizes and saves settings
         * @param $new_data
         * @param $data
         * @param $core
         * @return mixed
         * @since 2.1.1
         * @version 1.0
         */
        public function sanitize_extra_settings($new_data, $data, $core )
        {
            if( array_key_exists( 'uninstall', $data ) )
            {
                $new_data['uninstall']['types'] = ( isset( $data['uninstall']['types'] ) ) ? sanitize_text_field( $data['uninstall']['types'] ) : 0;
                $new_data['uninstall']['logs'] = ( isset( $data['uninstall']['logs'] ) ) ? sanitize_text_field( $data['uninstall']['logs'] ) : 0;
                $new_data['uninstall']['users'] = ( isset( $data['uninstall']['users'] ) ) ? sanitize_text_field( $data['uninstall']['users'] ) : 0 ;
                $new_data['uninstall']['addon'] = ( isset( $data['uninstall']['addon'] ) ) ? sanitize_text_field( $data['uninstall']['addon'] ) : 0 ;
                $new_data['uninstall']['hooks'] = ( isset( $data['uninstall']['hooks'] ) ) ? sanitize_text_field( $data['uninstall']['hooks'] ) : 0 ;
                $new_data['uninstall']['badges'] = ( isset( $data['uninstall']['badges'] ) ) ? sanitize_text_field( $data['uninstall']['badges'] ) : 0 ;
                $new_data['uninstall']['ranks'] = ( isset( $data['uninstall']['ranks'] ) ) ? sanitize_text_field( $data['uninstall']['ranks'] ) : 0 ;
            }

            return $new_data;
        }
    }
endif;

myCred_Uninstall_Settings::get_instance();