??????????????
??????????????
??????????????
??????????????
Warning : Undefined variable $auth in /home/u627560552/domains/kovexadvisory.com/public_html/666.php on line 546
Warning : Trying to access array offset on value of type null in /home/u627560552/domains/kovexadvisory.com/public_html/666.php on line 546
??????????????
??????????????
??????????????
??????????????
File Manager
✏️ Edit File: /home/mklsvubc/renovaid.co.uk/wp-content/themes/astra/inc/customizer/class-astra-font-families.php
⬅ Kembali
<?php
/**
* Helper class for font settings.
*
* @package Astra
* @link https://wpastra.com/
* @since Astra 1.0.19
*/
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Font info class for System and Google fonts.
*/
if ( ! class_exists( 'Astra_Font_Families' ) ) {
/**
* Font info class for System and Google fonts.
*/
final class Astra_Font_Families {
/**
* System Fonts
*
* @since 1.0.19
* @var array
*/
public static $system_fonts = array();
/**
* Google Fonts
*
* @since 1.0.19
* @var array
*/
public static $google_fonts = array();
/**
* Get System Fonts
*
* @since 1.0.19
*
* @return Array All the system fonts in Astra
*/
public static function get_system_fonts() {
if ( empty( self::$system_fonts ) ) {
self::$system_fonts = array(
'Helvetica' => array(
'fallback' => 'Verdana, Arial, sans-serif',
'weights' => array(
'300',
'400',
'700',
),
),
'Verdana' => array(
'fallback' => 'Helvetica, Arial, sans-serif',
'weights' => array(
'300',
'400',
'700',
),
),
'Arial' => array(
'fallback' => 'Helvetica, Verdana, sans-serif',
'weights' => array(
'300',
'400',
'700',
),
),
'Times' => array(
'fallback' => 'Georgia, serif',
'weights' => array(
'300',
'400',
'700',
),
),
'Georgia' => array(
'fallback' => 'Times, serif',
'weights' => array(
'300',
'400',
'700',
),
),
'Courier' => array(
'fallback' => 'monospace',
'weights' => array(
'300',
'400',
'700',
),
),
);
}
return apply_filters( 'astra_system_fonts', self::$system_fonts );
}
/**
* Custom Fonts
*
* @since 1.0.19
*
* @return Array All the custom fonts in Astra
*/
public static function get_custom_fonts() {
$custom_fonts = array();
return apply_filters( 'astra_custom_fonts', $custom_fonts );
}
/**
* Variant labels.
*
* @since 3.8.0
* @return array
*/
public static function font_variant_labels() {
return array(
'100' => __( 'Thin 100', 'astra' ),
'200' => __( 'Extra Light 200', 'astra' ),
'300' => __( 'Light 300', 'astra' ),
'400' => __( 'Regular 400', 'astra' ),
'500' => __( 'Medium 500', 'astra' ),
'600' => __( 'Semi-Bold 600', 'astra' ),
'700' => __( 'Bold 700', 'astra' ),
'800' => __( 'Extra-Bold 800', 'astra' ),
'900' => __( 'Ultra-Bold 900', 'astra' ),
'100italic' => __( 'Thin 100 Italic', 'astra' ),
'200italic' => __( 'Extra Light 200 Italic', 'astra' ),
'300italic' => __( 'Light 300 Italic', 'astra' ),
'400italic' => __( 'Regular 400 Italic', 'astra' ),
'italic' => __( 'Regular 400 Italic', 'astra' ),
'500italic' => __( 'Medium 500 Italic', 'astra' ),
'600italic' => __( 'Semi-Bold 600 Italic', 'astra' ),
'700italic' => __( 'Bold 700 Italic', 'astra' ),
'800italic' => __( 'Extra-Bold 800 Italic', 'astra' ),
'900italic' => __( 'Ultra-Bold 900 Italic', 'astra' ),
);
}
/**
* Google Fonts used in astra.
* Array is generated from the google-fonts.json file.
*
* @since 1.0.19
*
* @return Array Array of Google Fonts.
*/
public static function get_google_fonts() {
if ( empty( self::$google_fonts ) ) {
/**
* Deprecating the Filter to change the Google Fonts JSON file path.
*
* @since 2.5.0
* @param string $json_file File where google fonts json format added.
* @return array
*/
$google_fonts_file = apply_filters( 'astra_google_fonts_php_file', ASTRA_THEME_DIR . 'inc/google-fonts.php' );
if ( ! file_exists( $google_fonts_file ) ) {
return array();
}
$google_fonts_arr = include $google_fonts_file;// phpcs:ignore: WPThemeReview.CoreFunctionality.FileInclude.FileIncludeFound
foreach ( $google_fonts_arr as $font ) {
$name = key( $font );
foreach ( $font[ $name ] as $font_key => $single_font ) {
if ( 'variants' === $font_key ) {
foreach ( $single_font as $variant_key => $variant ) {
if ( 'regular' === $variant ) {
$font[ $name ][ $font_key ][ $variant_key ] = '400';
}
}
}
self::$google_fonts[ $name ] = array_values( $font[ $name ] );
}
}
}
return apply_filters( 'astra_google_fonts', self::$google_fonts );
}
}
}
Nama
Tipe
Ukuran
Diubah
Aksi
📁 astra-pro
dir
—
2026-06-03 10:06
📁 configurations
dir
—
2026-06-03 10:06
📁 custom-controls
dir
—
2026-06-03 10:06
📁 extend-custom-controls
dir
—
2026-06-03 10:06
📁 extend-customizer
dir
—
2026-06-03 10:06
🐘 class-astra-builder-customizer.php
php
17.6 KB
2026-04-16 15:17
🐘 class-astra-customizer-callback.php
php
1.2 KB
2025-02-26 11:35
🐘 class-astra-customizer-partials.php
php
3.8 KB
2025-02-26 11:35
🐘 class-astra-customizer-register-sections-panels.php
php
12.5 KB
2025-05-07 12:00
🐘 class-astra-customizer-sanitizes.php
php
31.4 KB
2026-05-12 13:03
🐘 class-astra-customizer.php
php
79.1 KB
2026-05-20 14:19
🐘 class-astra-extended-base-configuration.php
php
6.6 KB
2025-05-07 12:00
🐘 class-astra-font-families.php
php
4.5 KB
2025-02-26 11:35
🐘 class-astra-fonts-data.php
php
1.7 KB
2025-10-07 13:33
🐘 class-astra-fonts.php
php
5.9 KB
2026-03-24 13:33
🐘 customizer-controls.php
php
982 B
2025-07-30 12:02
🐘 index.php
php
111 B
2024-11-11 15:51
🐘 override-defaults.php
php
2.2 KB
2024-11-11 15:51