mirror of
https://ghproxy.net/https://github.com/AlxMedia/curver.git
synced 2025-08-28 06:37:49 +08:00
45 lines
1.1 KiB
PHP
45 lines
1.1 KiB
PHP
<?php
|
|
/**
|
|
* Handles CSS output for font-family.
|
|
*
|
|
* @package Kirki
|
|
* @subpackage Controls
|
|
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
|
* @license https://opensource.org/licenses/MIT
|
|
* @since 2.2.0
|
|
*/
|
|
|
|
/**
|
|
* Output overrides.
|
|
*/
|
|
class Kirki_Output_Property_Font_Family extends Kirki_Output_Property {
|
|
|
|
/**
|
|
* Modifies the value.
|
|
*
|
|
* @access protected
|
|
*/
|
|
protected function process_value() {
|
|
$google_fonts_array = Kirki_Fonts::get_google_fonts();
|
|
|
|
$family = $this->value;
|
|
if ( is_array( $this->value ) && isset( $this->value[0] ) && isset( $this->value[1] ) ) {
|
|
$family = $this->value[0];
|
|
}
|
|
|
|
// Make sure the value is a string.
|
|
// If not, then early exit.
|
|
if ( ! is_string( $family ) ) {
|
|
return;
|
|
}
|
|
|
|
// Hack for standard fonts.
|
|
$family = str_replace( '"', '"', $family );
|
|
|
|
// Add double quotes if needed.
|
|
if ( false !== strpos( $family, ' ' ) && false === strpos( $family, '"' ) ) {
|
|
$this->value = '"' . $family . '"';
|
|
}
|
|
$this->value = html_entity_decode( $family, ENT_QUOTES );
|
|
}
|
|
}
|