314 lines
13 KiB
PHP
314 lines
13 KiB
PHP
<?php
|
|
/**
|
|
* WP ALLSTARS Admin Manager
|
|
*
|
|
* @package WP_ALLSTARS
|
|
* @since 0.2.0
|
|
*/
|
|
|
|
if (!defined('ABSPATH')) {
|
|
exit;
|
|
}
|
|
|
|
class WP_Allstars_Admin_Manager {
|
|
|
|
/**
|
|
* Initialize the class and register hooks
|
|
*/
|
|
public static function init() {
|
|
add_action('admin_menu', array(__CLASS__, 'register_admin_menu'));
|
|
add_action('wp_ajax_wp_allstars_update_option', array(__CLASS__, 'update_option'));
|
|
add_action('admin_init', array(__CLASS__, 'register_settings'));
|
|
add_action('admin_enqueue_scripts', array(__CLASS__, 'enqueue_admin_scripts'));
|
|
|
|
// Initialize all manager classes
|
|
WP_Allstars_Settings_Manager::init();
|
|
WP_Allstars_Theme_Manager::init();
|
|
WP_Allstars_Workflow_Manager::init();
|
|
WP_Allstars_Pro_Plugins_Manager::init();
|
|
WP_Allstars_Tools_Manager::init();
|
|
WP_Allstars_Hosting_Manager::init();
|
|
WP_Allstars_Free_Plugins_Manager::init();
|
|
}
|
|
|
|
/**
|
|
* Enqueue admin scripts and styles
|
|
*
|
|
* @param string $hook The current admin page hook
|
|
*/
|
|
public static function enqueue_admin_scripts($hook) {
|
|
if ('settings_page_wp-allstars' !== $hook) {
|
|
return;
|
|
}
|
|
|
|
// Enqueue admin stylesheet
|
|
wp_enqueue_style(
|
|
'wp-allstars-admin',
|
|
plugins_url('css/wp-allstars-admin.css', dirname(__FILE__)),
|
|
array(),
|
|
WP_ALLSTARS_VERSION
|
|
);
|
|
|
|
// Enqueue admin JavaScript
|
|
wp_enqueue_script(
|
|
'wp-allstars-admin',
|
|
plugins_url('js/wp-allstars-admin.js', dirname(__FILE__)),
|
|
array('jquery'),
|
|
WP_ALLSTARS_VERSION,
|
|
true
|
|
);
|
|
|
|
// Localize the script with necessary data for AJAX
|
|
wp_localize_script('wp-allstars-admin', 'wpAllstars', array(
|
|
'nonce' => wp_create_nonce('wp-allstars-nonce'),
|
|
'ajaxurl' => admin_url('admin-ajax.php')
|
|
));
|
|
}
|
|
|
|
/**
|
|
* Register core plugin settings
|
|
*/
|
|
public static function register_settings() {
|
|
// Core settings groups - tab-specific settings are registered in their respective manager classes
|
|
register_setting('wp_allstars_general', 'wp_allstars_general_settings');
|
|
register_setting('wp_allstars_advanced', 'wp_allstars_advanced_settings');
|
|
}
|
|
|
|
/**
|
|
* AJAX handler for updating options
|
|
*/
|
|
public static function update_option() {
|
|
// Verify nonce for security
|
|
check_ajax_referer('wp-allstars-nonce', 'nonce');
|
|
|
|
// Check if user has proper permissions
|
|
if (!current_user_can('manage_options')) {
|
|
wp_send_json_error('Insufficient permissions');
|
|
return;
|
|
}
|
|
|
|
// Validate and sanitize input
|
|
if (!isset($_POST['option']) || !isset($_POST['value'])) {
|
|
wp_send_json_error('Missing required parameters');
|
|
return;
|
|
}
|
|
|
|
$option = sanitize_text_field($_POST['option']);
|
|
|
|
// Different sanitization based on expected value type
|
|
$value = $_POST['value'];
|
|
if (is_numeric($value)) {
|
|
$value = intval($value);
|
|
} elseif (is_string($value)) {
|
|
$value = sanitize_text_field($value);
|
|
} elseif (is_array($value)) {
|
|
$value = array_map('sanitize_text_field', $value);
|
|
}
|
|
|
|
// Whitelist of allowed options to update for security
|
|
$allowed_options = array(
|
|
'wp_allstars_simple_setting',
|
|
'wp_allstars_auto_upload_images',
|
|
'wp_allstars_max_width',
|
|
'wp_allstars_max_height',
|
|
'wp_allstars_exclude_urls',
|
|
'wp_allstars_image_name_pattern',
|
|
'wp_allstars_image_alt_pattern'
|
|
);
|
|
|
|
if (!in_array($option, $allowed_options)) {
|
|
wp_send_json_error('Invalid option');
|
|
return;
|
|
}
|
|
|
|
// Update the option
|
|
$result = update_option($option, $value);
|
|
|
|
if ($result) {
|
|
wp_send_json_success(array(
|
|
'message' => 'Option updated successfully',
|
|
'option' => $option,
|
|
'value' => $value
|
|
));
|
|
} else {
|
|
wp_send_json_success(array(
|
|
'message' => 'No changes made to option',
|
|
'option' => $option
|
|
));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Register the admin menu item
|
|
*/
|
|
public static function register_admin_menu() {
|
|
add_options_page(
|
|
'WP ALLSTARS Settings',
|
|
'WP ALLSTARS',
|
|
'manage_options',
|
|
'wp-allstars',
|
|
array(__CLASS__, 'render_settings_page')
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Render the settings page
|
|
*/
|
|
public static function render_settings_page() {
|
|
global $tabs;
|
|
|
|
$active_tab = isset($_GET['tab']) ? $_GET['tab'] : 'general';
|
|
$active_category = isset($_GET['category']) ? $_GET['category'] : 'minimal';
|
|
|
|
// Tab-specific resources
|
|
if ($active_tab === 'recommended') {
|
|
WP_Allstars_Plugin_Manager::clear_plugin_cache();
|
|
wp_enqueue_script('plugin-install');
|
|
wp_enqueue_script('updates');
|
|
add_thickbox();
|
|
wp_enqueue_style('wp-allstars-plugins', plugins_url('css/wp-allstars-plugins.css', dirname(__FILE__)));
|
|
|
|
// Add inline script to load plugins on page load
|
|
wp_add_inline_script('wp-allstars-admin', '
|
|
jQuery(document).ready(function($) {
|
|
if ($("#wpa-plugin-list").length && $("#wpa-plugin-list").is(":empty")) {
|
|
var category = "' . esc_js($active_category) . '";
|
|
var $container = $("#wpa-plugin-list");
|
|
var $loadingOverlay = $("<div class=\"wp-allstars-loading-overlay\"><span class=\"spinner is-active\"></span></div>");
|
|
|
|
// Show loading overlay
|
|
$container.css("position", "relative").append($loadingOverlay);
|
|
|
|
// AJAX request to get plugins
|
|
$.ajax({
|
|
url: ajaxurl,
|
|
type: "POST",
|
|
data: {
|
|
action: "wp_allstars_get_plugins",
|
|
category: category,
|
|
_wpnonce: wpAllstars.nonce
|
|
},
|
|
success: function(response) {
|
|
$loadingOverlay.remove();
|
|
if (response.success) {
|
|
$container.html(response.data);
|
|
// Initialize plugin action buttons
|
|
if (typeof initPluginActions === "function") {
|
|
initPluginActions();
|
|
}
|
|
|
|
// Spinners have been removed from individual cards
|
|
} else {
|
|
$container.html("<div class=\"notice notice-error\"><p>" + response.data + "</p></div>");
|
|
}
|
|
},
|
|
error: function(xhr, status, error) {
|
|
$loadingOverlay.remove();
|
|
$container.html("<div class=\"notice notice-error\"><p>Failed to load plugins. Please try again. Error: " + error + "</p></div>");
|
|
console.error("AJAX Error:", xhr.responseText);
|
|
}
|
|
});
|
|
}
|
|
});
|
|
');
|
|
}
|
|
?>
|
|
<div class="wrap wp-allstars-wrap">
|
|
<div class="wp-allstars-header">
|
|
<h1><?php echo esc_html(get_admin_page_title()); ?></h1>
|
|
<div class="wp-allstars-header-actions">
|
|
<span class="wp-allstars-version"><?php echo esc_html(WP_ALLSTARS_VERSION); ?></span>
|
|
<a href="https://www.wpallstars.com/" target="_blank" class="button button-secondary">
|
|
<?php esc_html_e('Visit Website', 'wp-allstars'); ?>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="wp-allstars-tabs-wrapper">
|
|
<h2 class="nav-tab-wrapper">
|
|
<a href="?page=wp-allstars&tab=general" class="nav-tab <?php echo $active_tab === 'general' ? 'nav-tab-active' : ''; ?>">
|
|
<?php esc_html_e('General', 'wp-allstars'); ?>
|
|
</a>
|
|
<a href="?page=wp-allstars&tab=advanced" class="nav-tab <?php echo $active_tab === 'advanced' ? 'nav-tab-active' : ''; ?>">
|
|
<?php esc_html_e('Advanced', 'wp-allstars'); ?>
|
|
</a>
|
|
<a href="?page=wp-allstars&tab=workflow" class="nav-tab <?php echo $active_tab === 'workflow' ? 'nav-tab-active' : ''; ?>">
|
|
<?php esc_html_e('Workflow', 'wp-allstars'); ?>
|
|
</a>
|
|
<a href="?page=wp-allstars&tab=theme" class="nav-tab <?php echo $active_tab === 'theme' ? 'nav-tab-active' : ''; ?>">
|
|
<?php esc_html_e('Theme', 'wp-allstars'); ?>
|
|
</a>
|
|
<a href="?page=wp-allstars&tab=recommended" class="nav-tab <?php echo $active_tab === 'recommended' ? 'nav-tab-active' : ''; ?>">
|
|
<?php esc_html_e('Free Plugins', 'wp-allstars'); ?>
|
|
</a>
|
|
<a href="?page=wp-allstars&tab=pro" class="nav-tab <?php echo $active_tab === 'pro' ? 'nav-tab-active' : ''; ?>">
|
|
<?php esc_html_e('Pro Plugins', 'wp-allstars'); ?>
|
|
</a>
|
|
<a href="?page=wp-allstars&tab=hosting" class="nav-tab <?php echo $active_tab === 'hosting' ? 'nav-tab-active' : ''; ?>">
|
|
<?php esc_html_e('Hosting', 'wp-allstars'); ?>
|
|
</a>
|
|
<a href="?page=wp-allstars&tab=tools" class="nav-tab <?php echo $active_tab === 'tools' ? 'nav-tab-active' : ''; ?>">
|
|
<?php esc_html_e('Tools', 'wp-allstars'); ?>
|
|
</a>
|
|
<a href="?page=wp-allstars&tab=readme" class="nav-tab <?php echo $active_tab === 'readme' ? 'nav-tab-active' : ''; ?>">
|
|
<?php esc_html_e('Read Me', 'wp-allstars'); ?>
|
|
</a>
|
|
</h2>
|
|
|
|
<div class="wp-allstars-tab-content">
|
|
<?php
|
|
// Each tab's content is handled by its respective manager class
|
|
switch ($active_tab) {
|
|
case 'general':
|
|
WP_Allstars_Settings_Manager::display_general_tab();
|
|
break;
|
|
|
|
case 'advanced':
|
|
WP_Allstars_Settings_Manager::display_advanced_tab();
|
|
break;
|
|
|
|
case 'workflow':
|
|
WP_Allstars_Workflow_Manager::display_tab_content();
|
|
break;
|
|
|
|
case 'theme':
|
|
WP_Allstars_Theme_Manager::display_tab_content();
|
|
break;
|
|
|
|
case 'recommended':
|
|
WP_Allstars_Free_Plugins_Manager::display_tab_content();
|
|
break;
|
|
|
|
case 'pro':
|
|
WP_Allstars_Pro_Plugins_Manager::display_tab_content();
|
|
break;
|
|
|
|
case 'hosting':
|
|
WP_Allstars_Hosting_Manager::display_tab_content();
|
|
break;
|
|
|
|
case 'tools':
|
|
WP_Allstars_Tools_Manager::display_tab_content();
|
|
break;
|
|
|
|
case 'readme':
|
|
WP_Allstars_Readme_Manager::display_tab_content();
|
|
break;
|
|
}
|
|
?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php
|
|
}
|
|
|
|
/**
|
|
* Alias for enqueue_admin_scripts to maintain compatibility with settings.php
|
|
*
|
|
* @param string $hook The current admin page hook
|
|
*/
|
|
public static function enqueue_scripts($hook) {
|
|
self::enqueue_admin_scripts($hook);
|
|
}
|
|
}
|