X7ROOT File Manager
Current Path:
/home/notabjze/starbudzca.com/wp-content/themes/astra/inc/customizer
home
/
notabjze
/
starbudzca.com
/
wp-content
/
themes
/
astra
/
inc
/
customizer
/
ðŸ“
..
ðŸ“
astra-pro
📄
class-astra-builder-customizer.php
(17.87 KB)
📄
class-astra-customizer-callback.php
(1.19 KB)
📄
class-astra-customizer-partials.php
(3.88 KB)
📄
class-astra-customizer-register-sections-panels.php
(13.16 KB)
📄
class-astra-customizer-sanitizes.php
(18.6 KB)
📄
class-astra-customizer.php
(58.52 KB)
📄
class-astra-extended-base-configuration.php
(6.53 KB)
📄
class-astra-font-families.php
(4.81 KB)
📄
class-astra-fonts-data.php
(1.01 KB)
📄
class-astra-fonts.php
(5.12 KB)
ðŸ“
configurations
ðŸ“
custom-controls
📄
customizer-controls.php
(878 B)
ðŸ“
extend-custom-controls
ðŸ“
extend-customizer
📄
index.php
(111 B)
📄
override-defaults.php
(2.36 KB)
Editing: class-astra-fonts-data.php
<?php /** * Helper class for font settings. * * @package Astra * @author Astra * @copyright Copyright (c) 2020, Astra * @link https://wpastra.com/ * @since Astra 1.0.0 */ // Exit if accessed directly. if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Font info class for System and Google fonts. */ if ( ! class_exists( 'Astra_Fonts_Data' ) ) : /** * Fonts Data */ final class Astra_Fonts_Data { /** * Localize Fonts */ public static function js() { $system = wp_json_encode( Astra_Font_Families::get_system_fonts() ); $google = wp_json_encode( Astra_Font_Families::get_google_fonts() ); $custom = wp_json_encode( Astra_Font_Families::get_custom_fonts() ); if ( ! empty( $custom ) ) { return 'var AstFontFamilies = { system: ' . $system . ', custom: ' . $custom . ', google: ' . $google . ' };'; } else { return 'var AstFontFamilies = { system: ' . $system . ', google: ' . $google . ' };'; } } } endif;
Upload File
Create Folder