/home/vianto5/heredit.mx/wp-content/plugins/elementor/modules/atomic-widgets/styles
NameSizeModeActions
cache-validity/-0755rm
atomic-styles-manager.php73500644editdlrm
atomic-widget-base-styles.php12400644editdlrm
atomic-widget-styles.php38580644editdlrm
css-files-manager.php24630644editdlrm
grid-track-renderer.php5480644editdlrm
size-constants.php63120644editdlrm
style-definition.php7590644editdlrm
style-file.php9460644editdlrm
style-fonts.php11910644editdlrm
style-schema.php179700644editdlrm
style-states.php25880644editdlrm
style-variant.php8980644editdlrm
styles-renderer.php61680644editdlrm
Edit: /home/vianto5/heredit.mx/wp-content/plugins/elementor/modules/atomic-widgets/styles/style-fonts.php (1191B)
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; } }