HEX
Server: nginx/1.18.0
System: Linux iZj6c1ieg2jrpk1z5tzi19Z 6.3.9-1.el7.elrepo.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jun 21 22:18:40 EDT 2023 x86_64
User: www (1001)
PHP: 8.2.4
Disabled: passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
Upload Files
File: /www/wwwroot/www.cytocare.cn/wp-content/plugins/wp-social/template/admin/style-setting.php
<?php
defined('ABSPATH') || exit;

$styleArr = \WP_Social\App\Login_Settings::get_login_styles();

?>

<div class="wslu-social-login-main-wrapper">
	<?php
	require_once(WSLU_LOGIN_PLUGIN . '/template/admin/tab-menu.php');

	if($message_provider == 'show') { ?>
        <div class="admin-page-framework-admin-notice-animation-container">
            <div id="XS_Social_Login_Settings"
                 class="updated admin-page-framework-settings-notice-message admin-page-framework-settings-notice-container notice is-dismissible"
                 style="margin: 1em 0; visibility: visible; opacity: 1;">
                <p><?php echo esc_html__('Styles data have been updated.', 'wp-social'); ?></p>
                <button type="button" class="notice-dismiss"><span
                            class="screen-reader-text"><?php echo esc_html__('Dismiss this notice.', 'wp-social'); ?></span>
                </button>
            </div>
        </div>
	<?php } ?>

    <form action="<?php echo esc_url(admin_url() . 'admin.php?page=wslu_global_setting&tab=wslu_style_setting'); ?>"
          name="xs_style_submit_form" method="post" id="xs_style_form">
        <div class="xs-social-block-wraper">
            <div class="xs-global-section">

                <div class="wslu-social-style-data">
					<?php

					/*
						------------------------------
						login style card
						------------------------------
					*/
					foreach($styleArr AS $key => $val) :

						$arg = [
							'saved_style' => isset($saved_style['login_button_style']) ? $saved_style['login_button_style'] : '',
							'style'       => $key,
							'key'         => 'social_login_' . $key,
							'image'       => $val['image'],
							'title'       => $val['title'],
							'package'     => ($val['unlocked'] === false) ? 'pro' : '',
							'name'        => 'xs_style[login_button_style]',
						];

						\WP_Social\Helper\View_Helper::get_style_card($arg);

					endforeach;
					// end of login style card
					?>

                </div>

                <div class="wslu-right-content wslu-right-content--share">
                <?php wp_nonce_field( 'style_setting_submit_form_nonce', 'nonce' ); ?>
                    <button type="submit"
                            name="style_setting_submit_form"
                            class="xs-btn btn-special small">
						<?php echo esc_html__('Save Changes', 'wp-social'); ?>
                    </button>
                </div>

            </div>
        </div>
        <div class="xs-backdrop"></div>
    </form>
</div>