Admin
2 months ago
Assets
2 weeks ago
CLI
2 years ago
Cache
2 weeks ago
Pages
10 months ago
PostTypes
2 months ago
Posts
1 year ago
Shortcodes
1 month ago
Taxonomies
1 year ago
Templates
1 year ago
Users
2 months ago
ActionsService.php
3 years ago
CompatibilityService.php
4 months ago
CurrencyService.php
4 months ago
GoogleMapApiService.php
2 months ago
HealthService.php
2 months ago
LineItemStateService.php
2 years ago
PluginActionLinksService.php
1 year ago
PluginService.php
1 year ago
PluginServiceProvider.php
1 year ago
RecaptchaValidationService.php
2 years ago
StateService.php
7 months ago
ThemeService.php
4 months ago
ThemeServiceProvider.php
7 months ago
TranslationsServiceProvider.php
3 months ago
UpgradeNoticeService.php
1 year ago
ThemeService.php
182 lines
| 1 | <?php |
| 2 | |
| 3 | namespace SureCart\WordPress; |
| 4 | |
| 5 | /** |
| 6 | * Handles theme-related functionality. |
| 7 | */ |
| 8 | class ThemeService { |
| 9 | /** |
| 10 | * Bootstrap the service. |
| 11 | * |
| 12 | * @return void |
| 13 | */ |
| 14 | public function bootstrap() { |
| 15 | // add the "Brand" color to the theme's color palette. |
| 16 | add_action( 'after_setup_theme', [ $this, 'addColorToPalette' ], 99999 ); |
| 17 | add_action( 'after_setup_theme', [ $this, 'addAppearanceToolsSupport' ], 99999 ); |
| 18 | // add the theme class to the body tag. |
| 19 | add_filter( 'body_class', [ $this, 'themeBodyClass' ] ); |
| 20 | add_filter( 'admin_body_class', [ $this, 'themeBodyClassAdmin' ] ); |
| 21 | } |
| 22 | |
| 23 | /** |
| 24 | * Get the current theme preference. |
| 25 | * |
| 26 | * Reads from brand.theme (API) as the primary source. |
| 27 | * Falls back to the WP option if the API data is unavailable. |
| 28 | * |
| 29 | * @return string 'light' or 'dark' |
| 30 | */ |
| 31 | public function mode(): string { |
| 32 | $brand = \SureCart::account()->brand; |
| 33 | |
| 34 | if ( ! empty( $brand ) && ! is_wp_error( $brand ) && ! empty( $brand->theme ) ) { |
| 35 | return 'dark' === $brand->theme ? 'dark' : 'light'; |
| 36 | } |
| 37 | |
| 38 | return get_option( 'surecart_theme', 'light' ); |
| 39 | } |
| 40 | |
| 41 | /** |
| 42 | * Get the logo URL based on the current theme. |
| 43 | * |
| 44 | * Returns the dark logo URL when theme is dark and a dark logo exists, |
| 45 | * otherwise returns the standard logo URL. |
| 46 | * |
| 47 | * @return string The logo URL. |
| 48 | */ |
| 49 | public function logoUrl(): string { |
| 50 | $brand = \SureCart::account()->brand; |
| 51 | |
| 52 | if ( empty( $brand ) || is_wp_error( $brand ) ) { |
| 53 | return ''; |
| 54 | } |
| 55 | |
| 56 | if ( 'dark' === ( $brand->theme ?? '' ) && ! empty( $brand->dark_logo->url ) ) { |
| 57 | return $brand->dark_logo->url; |
| 58 | } |
| 59 | |
| 60 | return $brand->logo_url ?? ''; |
| 61 | } |
| 62 | |
| 63 | /** |
| 64 | * Get the brand color based on the current theme. |
| 65 | * |
| 66 | * Returns the dark color when theme is dark and a dark color exists, |
| 67 | * otherwise returns the standard brand color. |
| 68 | * |
| 69 | * @return string The brand color hex value (without #). |
| 70 | */ |
| 71 | public function brandColor(): string { |
| 72 | $brand = \SureCart::account()->brand; |
| 73 | |
| 74 | if ( empty( $brand ) || is_wp_error( $brand ) ) { |
| 75 | return '000000'; |
| 76 | } |
| 77 | |
| 78 | if ( 'dark' === ( $brand->theme ?? '' ) && ! empty( $brand->dark_color ) ) { |
| 79 | return $brand->dark_color; |
| 80 | } |
| 81 | |
| 82 | return $brand->color ?? '000000'; |
| 83 | } |
| 84 | |
| 85 | /** |
| 86 | * Add support for Appearance Tools. |
| 87 | * |
| 88 | * @return void |
| 89 | */ |
| 90 | public function addAppearanceToolsSupport() { |
| 91 | add_theme_support( 'appearance-tools' ); |
| 92 | add_theme_support( 'border' ); |
| 93 | } |
| 94 | |
| 95 | /** |
| 96 | * Add Theme to body class admin. |
| 97 | * |
| 98 | * @param string $classes String of classes. |
| 99 | * |
| 100 | * @return string |
| 101 | */ |
| 102 | public function themeBodyClassAdmin( $classes ) { |
| 103 | global $pagenow; |
| 104 | if ( 'post.php' === $pagenow ) { |
| 105 | $classes .= ' surecart-theme-' . $this->mode(); |
| 106 | } |
| 107 | return $classes; |
| 108 | } |
| 109 | |
| 110 | /** |
| 111 | * Add our theme class to the body tag. |
| 112 | * |
| 113 | * @param array $classes Array of body classes. |
| 114 | * |
| 115 | * @return array |
| 116 | */ |
| 117 | public function themeBodyClass( $classes ) { |
| 118 | $classes[] = 'surecart-theme-' . $this->mode(); |
| 119 | return $classes; |
| 120 | } |
| 121 | |
| 122 | /** |
| 123 | * Add our color to the palette. |
| 124 | * |
| 125 | * @return void |
| 126 | */ |
| 127 | public function addColorToPalette() { |
| 128 | // Try to get the current theme default color palette. |
| 129 | $old_color_palette = current( (array) get_theme_support( 'editor-color-palette' ) ); |
| 130 | |
| 131 | // Get default core color palette from wp-includes/theme.json. |
| 132 | if ( false === $old_color_palette && class_exists( 'WP_Theme_JSON_Resolver' ) ) { |
| 133 | $settings = \WP_Theme_JSON_Resolver::get_core_data()->get_settings(); |
| 134 | // wp 6.0+. |
| 135 | if ( isset( $settings['color']['palette']['default'] ) ) { |
| 136 | $old_color_palette = $settings['color']['palette']['default']; |
| 137 | } |
| 138 | // pre wp 6.0. |
| 139 | if ( isset( $settings['color']['palette']['core'] ) ) { |
| 140 | $old_color_palette = $settings['color']['palette']['default']; |
| 141 | } |
| 142 | } |
| 143 | |
| 144 | // The new colors we are going to add. |
| 145 | $new_color_palette = [ |
| 146 | [ |
| 147 | 'name' => esc_attr__( 'SureCart', 'surecart' ), |
| 148 | 'slug' => 'surecart', |
| 149 | 'color' => 'var(--sc-color-primary-500)', |
| 150 | ], |
| 151 | ]; |
| 152 | |
| 153 | // Merge the old and new color palettes. |
| 154 | if ( ! empty( $old_color_palette ) ) { |
| 155 | $new_color_palette = array_merge( $old_color_palette, $new_color_palette ); |
| 156 | } |
| 157 | |
| 158 | // Apply the color palette containing the original colors and 2 new colors. |
| 159 | add_theme_support( 'editor-color-palette', $new_color_palette ); |
| 160 | } |
| 161 | |
| 162 | /** |
| 163 | * Should load on demand block assets setting & functionality or not? |
| 164 | * |
| 165 | * @return boolean |
| 166 | */ |
| 167 | public function shouldLoadOnDemandBlockAssets() { |
| 168 | $wp_version = wp_get_wp_version(); |
| 169 | $is_block_theme = (bool) wp_is_block_theme(); |
| 170 | |
| 171 | if ( empty( $wp_version ) || $is_block_theme ) { |
| 172 | return false; |
| 173 | } |
| 174 | |
| 175 | if ( version_compare( $wp_version, '6.8', '>' ) ) { |
| 176 | return false; |
| 177 | } |
| 178 | |
| 179 | return true; |
| 180 | } |
| 181 | } |
| 182 |