golden hour
/home/godaofbq/dev.hyperredbed.com/wp-content/plugins/wp-social-pro/template/admin
⬆️ Go Up
Upload
File/Folder
Size
Actions
content-users-list.php
10.13 KB
Del
OK
modules.php
2.48 KB
Del
OK
Edit: modules.php
<?php defined('ABSPATH') || exit; ?> <div class="wslu-social-login-main-wrapper"> <!-- Page Header start --> <div class="wslu-main-header"> <h1> <span class="wslu-icon met-social met-social-cog-icon"></span> <?php echo esc_html__('WP Social Modules', 'wp-social-pro'); ?> </h1> <br> </div> <!-- page header end --> <?php if($message_global == '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__('Social modules data have been updated.', 'wp-social-pro'); ?></p> <button type="button" class="notice-dismiss"><span class="screen-reader-text"><?php echo esc_html__('Dismiss this notice.', 'wp-social-pro'); ?></span> </button> </div> </div> <?php } ?> <form action="<?php echo esc_url(admin_url() . 'admin.php?page=wslu_global_setting-modules'); ?>" method="POST"> <?php $enable_data = get_option(\WP_Social_Pro\Modules\Manifesto::OPTION_KEY_ACTIVE_MODULE_CONF, []); foreach($modules as $key => $module): ?> <div class="wslu-single-item"> <div class="wslu-left-label"> <label class="wslu-sec-title" for=""><?php echo $module['title'] ?></label> </div> <div class="wslu-right-content"> <input type="checkbox" id="<?php echo $key ?>" class="social_switch_button" name="module_list[<?php echo $key ?>]" value="yes" <?php echo \WP_Social_Pro\Modules\Manifesto::is_module_enable($key, $enable_data, $module['default_active'])? 'checked' : '' ?> > <label for="<?php echo $key ?>" class="social_switch_button_label"></label> </div> </div> <?php endforeach; ?> <br><br> <button type="submit" class="xs-btn btn-special small" name="modules" value="modules"> <?php echo esc_html__('Save Changes', 'wp-social-pro') ?> </button> </form> </div>
Save