__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
namespace Elementor\Modules\AtomicWidgets\Styles;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
const FONTS_KEY_PREFIX = 'elementor_atomic_styles_fonts-';
class Style_Fonts {
private string $style_key;
public function __construct( string $style_key ) {
$this->style_key = $style_key;
}
public static function make( string $style_key ) {
return new static( $style_key );
}
public function add( string $font ) {
$style_fonts = $this->get_fonts();
if ( ! in_array( $font, $style_fonts, true ) ) {
$style_fonts[] = $font;
$this->update_fonts( $style_fonts );
}
}
public function get(): array {
return $this->get_fonts();
}
public function clear() {
$this->update_fonts( [] );
}
private function get_fonts(): array {
$style_fonts_key = $this->get_key();
return get_option( $style_fonts_key, [] );
}
private function update_fonts( array $fonts ) {
$style_fonts_key = $this->get_key();
if ( empty( $fonts ) ) {
delete_option( $style_fonts_key );
return;
}
update_option( $style_fonts_key, $fonts, false );
}
private function get_key(): string {
return FONTS_KEY_PREFIX . $this->style_key;
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| atomic-styles-manager.php | File | 7.26 KB | 0664 |
|
| atomic-widget-base-styles.php | File | 1.21 KB | 0664 |
|
| atomic-widget-styles.php | File | 2.66 KB | 0664 |
|
| css-files-manager.php | File | 2.41 KB | 0664 |
|
| size-constants.php | File | 2.72 KB | 0664 |
|
| style-definition.php | File | 759 B | 0664 |
|
| style-file.php | File | 946 B | 0664 |
|
| style-fonts.php | File | 1.16 KB | 0664 |
|
| style-schema.php | File | 14.04 KB | 0664 |
|
| style-states.php | File | 1.13 KB | 0664 |
|
| style-variant.php | File | 898 B | 0664 |
|
| styles-renderer.php | File | 5.26 KB | 0664 |
|