# adminify/3.2.1/Libs/adminify-framework/fields/typography/typography.php

Adminify – White Label, Admin Menu Editor, Login Customizer, version 3.2.1. 589 lines.

- Page: https://pluginprobe.com/plugins/adminify/3.2.1/code/Libs/adminify-framework/fields/typography/typography.php
- Raw: https://pluginprobe.com/plugins/adminify/3.2.1/raw/Libs/adminify-framework/fields/typography/typography.php
- Modified: 2023-11-01T08:36:22+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/adminify/3.2.1/code/Libs/adminify-framework/fields/typography/typography.php#L10-L20`.

```php
<?php if ( ! defined( 'ABSPATH' ) ) {
	die; } // Cannot access directly.

use WPAdminify\Inc\Utils;
/**
 *
 * Field: typography
 *
 * @since 1.0.0
 * @version 1.0.0
 */
if ( ! class_exists( 'ADMINIFY_Field_typography' ) ) {
	class ADMINIFY_Field_typography extends ADMINIFY_Fields {

		public $chosen = false;

		public $value = [];

		public function __construct( $field, $value = '', $unique = '', $where = '', $parent = '' ) {
			parent::__construct( $field, $value, $unique, $where, $parent );
		}

		public function render() {
			echo wp_kses_post( $this->field_before() );

			$args = wp_parse_args(
				$this->field,
				[
					'font_family'        => true,
					'font_weight'        => true,
					'font_style'         => true,
					'font_size'          => true,
					'line_height'        => true,
					'letter_spacing'     => true,
					'text_align'         => true,
					'text_transform'     => true,
					'color'              => true,
					'chosen'             => true,
					'preview'            => true,
					'subset'             => true,
					'multi_subset'       => false,
					'extra_styles'       => false,
					'backup_font_family' => false,
					'font_variant'       => false,
					'word_spacing'       => false,
					'text_decoration'    => false,
					'custom_style'       => false,
					'compact'            => false,
					'exclude'            => '',
					'unit'               => 'px',
					'line_height_unit'   => '',
					'preview_text'       => 'The quick brown fox jumps over the lazy dog',
				]
			);

			if ( $args['compact'] ) {
				$args['text_transform'] = false;
				$args['text_align']     = false;
				$args['font_size']      = false;
				$args['line_height']    = false;
				$args['letter_spacing'] = false;
				$args['preview']        = false;
				$args['color']          = false;
			}

			$default_value = [
				'font-family'        => '',
				'font-weight'        => '',
				'font-style'         => '',
				'font-variant'       => '',
				'font-size'          => '',
				'line-height'        => '',
				'letter-spacing'     => '',
				'word-spacing'       => '',
				'text-align'         => '',
				'text-transform'     => '',
				'text-decoration'    => '',
				'backup-font-family' => '',
				'color'              => '',
				'custom-style'       => '',
				'type'               => '',
				'subset'             => '',
				'extra-styles'       => [],
			];

			$default_value    = ( ! empty( $this->field['default'] ) ) ? wp_parse_args( $this->field['default'], $default_value ) : $default_value;
			$this->value      = wp_parse_args( $this->value, $default_value );
			$this->chosen     = $args['chosen'];
			$chosen_class     = ( $this->chosen ) ? ' adminify--chosen' : '';
			$line_height_unit = ( ! empty( $args['line_height_unit'] ) ) ? $args['line_height_unit'] : $args['unit'];

			echo '<div class="adminify--typography' . esc_attr( $chosen_class ) . '" data-depend-id="' . esc_attr( $this->field['id'] ) . '" data-unit="' . esc_attr( $args['unit'] ) . '" data-line-height-unit="' . esc_attr( $line_height_unit ) . '" data-exclude="' . esc_attr( $args['exclude'] ) . '">';

			echo '<div class="adminify--blocks adminify--blocks-selects">';

			//
			// Font Family
			if ( ! empty( $args['font_family'] ) ) {
				echo '<div class="adminify--block">';
				echo '<div class="adminify--title">' . esc_html__( 'Font Family', 'adminify' ) . '</div>';
				echo Utils::wp_kses_custom( $this->create_select( [ $this->value['font-family'] => $this->value['font-family'] ], 'font-family', esc_html__( 'Select a font', 'adminify' ) ) );
				echo '</div>';
			}

			//
			// Backup Font Family
			if ( ! empty( $args['backup_font_family'] ) ) {
				echo '<div class="adminify--block adminify--block-backup-font-family hidden">';
				echo '<div class="adminify--title">' . esc_html__( 'Backup Font Family', 'adminify' ) . '</div>';
				echo wp_kses_post(
					$this->create_select(
						apply_filters(
							'adminify_field_typography_backup_font_family',
							[
								'Arial, Helvetica, sans-serif',
								"'Arial Black', Gadget, sans-serif",
								"'Comic Sans MS', cursive, sans-serif",
								'Impact, Charcoal, sans-serif',
								"'Lucida Sans Unicode', 'Lucida Grande', sans-serif",
								'Tahoma, Geneva, sans-serif',
								"'Trebuchet MS', Helvetica, sans-serif'",
								'Verdana, Geneva, sans-serif',
								"'Courier New', Courier, monospace",
								"'Lucida Console', Monaco, monospace",
								'Georgia, serif',
								'Palatino Linotype',
							]
						),
						'backup-font-family',
						esc_html__( 'Default', 'adminify' )
					)
				);
				echo '</div>';
			}

			//
			// Font Style and Extra Style Select
			if ( ! empty( $args['font_weight'] ) || ! empty( $args['font_style'] ) ) {

				//
				// Font Style Select
				echo '<div class="adminify--block adminify--block-font-style hidden">';
				echo '<div class="adminify--title">' . esc_html__( 'Font Style', 'adminify' ) . '</div>';
				echo '<select class="adminify--font-style-select" data-placeholder="Default">';

				if ( ( ! $this->chosen ) ){
					$typo_options = esc_html__( 'Default', 'adminify' );
				} else {
                    $typo_options = '';
				}
				echo '<option value="">' . esc_html( $typo_options ). '</option>';

				if ( ! empty( $this->value['font-weight'] ) || ! empty( $this->value['font-style'] ) ) {
					echo '<option value="' . esc_attr( strtolower( $this->value['font-weight'] . $this->value['font-style'] ) ) . '" selected></option>';
				}
				echo '</select>';
				echo '<input type="hidden" name="' . esc_attr( $this->field_name( '[font-weight]' ) ) . '" class="adminify--font-weight" value="' . esc_attr( $this->value['font-weight'] ) . '" />';
				echo '<input type="hidden" name="' . esc_attr( $this->field_name( '[font-style]' ) ) . '" class="adminify--font-style" value="' . esc_attr( $this->value['font-style'] ) . '" />';

				//
				// Extra Font Style Select
				if ( ! empty( $args['extra_styles'] ) ) {
					echo '<div class="adminify--block-extra-styles hidden">';
					echo ( ! $this->chosen ) ? '<div class="adminify--title">' . esc_html__( 'Load Extra Styles', 'adminify' ) . '</div>' : '';
					$placeholder = ( $this->chosen ) ? esc_html__( 'Load Extra Styles', 'adminify' ) : esc_html__( 'Default', 'adminify' );
					echo wp_kses_post( $this->create_select( $this->value['extra-styles'], 'extra-styles', $placeholder, true ) );
					echo '</div>';
				}

				echo '</div>';
			}

			//
			// Subset
			if ( ! empty( $args['subset'] ) ) {
				echo '<div class="adminify--block adminify--block-subset hidden">';
				echo '<div class="adminify--title">' . esc_html__( 'Subset', 'adminify' ) . '</div>';
				$subset = ( is_array( $this->value['subset'] ) ) ? $this->value['subset'] : array_filter( (array) $this->value['subset'] );
				echo wp_kses_post( $this->create_select( $subset, 'subset', esc_html__( 'Default', 'adminify' ), $args['multi_subset'] ) );
				echo '</div>';
			}

			//
			// Text Align
			if ( ! empty( $args['text_align'] ) ) {
				echo '<div class="adminify--block">';
				echo '<div class="adminify--title">' . esc_html__( 'Text Align', 'adminify' ) . '</div>';
				echo wp_kses_post(
					$this->create_select(
						[
							'inherit' => esc_html__( 'Inherit', 'adminify' ),
							'left'    => esc_html__( 'Left', 'adminify' ),
							'center'  => esc_html__( 'Center', 'adminify' ),
							'right'   => esc_html__( 'Right', 'adminify' ),
							'justify' => esc_html__( 'Justify', 'adminify' ),
							'initial' => esc_html__( 'Initial', 'adminify' ),
						],
						'text-align',
						esc_html__( 'Default', 'adminify' )
					)
				);
				echo '</div>';
			}

			//
			// Font Variant
			if ( ! empty( $args['font_variant'] ) ) {
				echo '<div class="adminify--block">';
				echo '<div class="adminify--title">' . esc_html__( 'Font Variant', 'adminify' ) . '</div>';
				echo wp_kses_post(
					$this->create_select(
						[
							'normal'         => esc_html__( 'Normal', 'adminify' ),
							'small-caps'     => esc_html__( 'Small Caps', 'adminify' ),
							'all-small-caps' => esc_html__( 'All Small Caps', 'adminify' ),
						],
						'font-variant',
						esc_html__( 'Default', 'adminify' )
					)
				);
				echo '</div>';
			}

			//
			// Text Transform
			if ( ! empty( $args['text_transform'] ) ) {
				echo '<div class="adminify--block">';
				echo '<div class="adminify--title">' . esc_html__( 'Text Transform', 'adminify' ) . '</div>';
				echo wp_kses_post(
					$this->create_select(
						[
							'none'       => esc_html__( 'None', 'adminify' ),
							'capitalize' => esc_html__( 'Capitalize', 'adminify' ),
							'uppercase'  => esc_html__( 'Uppercase', 'adminify' ),
							'lowercase'  => esc_html__( 'Lowercase', 'adminify' ),
						],
						'text-transform',
						esc_html__( 'Default', 'adminify' )
					)
				);
				echo '</div>';
			}

			//
			// Text Decoration
			if ( ! empty( $args['text_decoration'] ) ) {
				echo '<div class="adminify--block">';
				echo '<div class="adminify--title">' . esc_html__( 'Text Decoration', 'adminify' ) . '</div>';
				echo wp_kses_post(
					$this->create_select(
						[
							'none'               => esc_html__( 'None', 'adminify' ),
							'underline'          => esc_html__( 'Solid', 'adminify' ),
							'underline double'   => esc_html__( 'Double', 'adminify' ),
							'underline dotted'   => esc_html__( 'Dotted', 'adminify' ),
							'underline dashed'   => esc_html__( 'Dashed', 'adminify' ),
							'underline wavy'     => esc_html__( 'Wavy', 'adminify' ),
							'underline overline' => esc_html__( 'Overline', 'adminify' ),
							'line-through'       => esc_html__( 'Line-through', 'adminify' ),
						],
						'text-decoration',
						esc_html__( 'Default', 'adminify' )
					)
				);
				echo '</div>';
			}

			echo '</div>';

			echo '<div class="adminify--blocks adminify--blocks-inputs">';

			//
			// Font Size
			if ( ! empty( $args['font_size'] ) ) {
				echo '<div class="adminify--block">';
				echo '<div class="adminify--title">' . esc_html__( 'Font Size', 'adminify' ) . '</div>';
				echo '<div class="adminify--input-wrap">';
				echo '<input type="number" name="' . esc_attr( $this->field_name( '[font-size]' ) ) . '" class="adminify--font-size adminify--input adminify-input-number" value="' . esc_attr( $this->value['font-size'] ) . '" step="any" />';
				echo '<span class="adminify--unit">' . esc_attr( $args['unit'] ) . '</span>';
				echo '</div>';
				echo '</div>';
			}

			//
			// Line Height
			if ( ! empty( $args['line_height'] ) ) {
				echo '<div class="adminify--block">';
				echo '<div class="adminify--title">' . esc_html__( 'Line Height', 'adminify' ) . '</div>';
				echo '<div class="adminify--input-wrap">';
				echo '<input type="number" name="' . esc_attr( $this->field_name( '[line-height]' ) ) . '" class="adminify--line-height adminify--input adminify-input-number" value="' . esc_attr( $this->value['line-height'] ) . '" step="any" />';
				echo '<span class="adminify--unit">' . esc_attr( $line_height_unit ) . '</span>';
				echo '</div>';
				echo '</div>';
			}

			//
			// Letter Spacing
			if ( ! empty( $args['letter_spacing'] ) ) {
				echo '<div class="adminify--block">';
				echo '<div class="adminify--title">' . esc_html__( 'Letter Spacing', 'adminify' ) . '</div>';
				echo '<div class="adminify--input-wrap">';
				echo '<input type="number" name="' . esc_attr( $this->field_name( '[letter-spacing]' ) ) . '" class="adminify--letter-spacing adminify--input adminify-input-number" value="' . esc_attr( $this->value['letter-spacing'] ) . '" step="any" />';
				echo '<span class="adminify--unit">' . esc_attr( $args['unit'] ) . '</span>';
				echo '</div>';
				echo '</div>';
			}

			//
			// Word Spacing
			if ( ! empty( $args['word_spacing'] ) ) {
				echo '<div class="adminify--block">';
				echo '<div class="adminify--title">' . esc_html__( 'Word Spacing', 'adminify' ) . '</div>';
				echo '<div class="adminify--input-wrap">';
				echo '<input type="number" name="' . esc_attr( $this->field_name( '[word-spacing]' ) ) . '" class="adminify--word-spacing adminify--input adminify-input-number" value="' . esc_attr( $this->value['word-spacing'] ) . '" step="any" />';
				echo '<span class="adminify--unit">' . esc_attr( $args['unit'] ) . '</span>';
				echo '</div>';
				echo '</div>';
			}

			echo '</div>';

			//
			// Font Color
			if ( ! empty( $args['color'] ) ) {
				$default_color_attr = ( ! empty( $default_value['color'] ) ) ? ' data-default-color="' . esc_attr( $default_value['color'] ) . '"' : '';
				echo '<div class="adminify--block adminify--block-font-color">';
				echo '<div class="adminify--title">' . esc_html__( 'Font Color', 'adminify' ) . '</div>';
				echo '<div class="adminify-field-color">';
				echo '<input type="text" name="' . esc_attr( $this->field_name( '[color]' ) ) . '" class="adminify-color adminify--color" value="' . esc_attr( $this->value['color'] ) . '"' . esc_attr( $default_color_attr ) . ' />';
				echo '</div>';
				echo '</div>';
			}

			//
			// Custom style
			if ( ! empty( $args['custom_style'] ) ) {
				echo '<div class="adminify--block adminify--block-custom-style">';
				echo '<div class="adminify--title">' . esc_html__( 'Custom Style', 'adminify' ) . '</div>';
				echo '<textarea name="' . esc_attr( $this->field_name( '[custom-style]' ) ) . '" class="adminify--custom-style">' . esc_attr( $this->value['custom-style'] ) . '</textarea>';
				echo '</div>';
			}

			//
			// Preview
			$always_preview = ( $args['preview'] !== 'always' ) ? ' hidden' : '';

			if ( ! empty( $args['preview'] ) ) {
				echo '<div class="adminify--block adminify--block-preview' . esc_attr( $always_preview ) . '">';
				echo '<div class="adminify--toggle fas fa-toggle-off"></div>';
				echo '<div class="adminify--preview">' . esc_attr( $args['preview_text'] ) . '</div>';
				echo '</div>';
			}

			echo '<input type="hidden" name="' . esc_attr( $this->field_name( '[type]' ) ) . '" class="adminify--type" value="' . esc_attr( $this->value['type'] ) . '" />';
			echo '<input type="hidden" name="' . esc_attr( $this->field_name( '[unit]' ) ) . '" class="adminify--unit-save" value="' . esc_attr( $args['unit'] ) . '" />';

			echo '</div>';

			echo wp_kses_post( $this->field_after() );
		}

		public function create_select( $options, $name, $placeholder = '', $is_multiple = false ) {
			$multiple_name = ( $is_multiple ) ? '[]' : '';
			$multiple_attr = ( $is_multiple ) ? ' multiple data-multiple="true"' : '';
			$chosen_rtl    = ( $this->chosen && is_rtl() ) ? ' chosen-rtl' : '';

			$output  = '<select name="' . esc_attr( $this->field_name( '[' . $name . ']' . $multiple_name ) ) . '" class="adminify--' . esc_attr( $name ) . esc_attr( $chosen_rtl ) . '" data-placeholder="' . esc_attr( $placeholder ) . '"' . $multiple_attr . '>';
			$output .= ( ! empty( $placeholder ) ) ? '<option value="">' . esc_attr( ( ! $this->chosen ) ? $placeholder : '' ) . '</option>' : '';

			if ( ! empty( $options ) ) {
				foreach ( $options as $option_key => $option_value ) {
					if ( $is_multiple ) {
						$selected = ( in_array( $option_value, $this->value[ $name ] ) ) ? ' selected' : '';
						$output  .= '<option value="' . esc_attr( $option_value ) . '"' . esc_attr( $selected ) . '>' . esc_attr( $option_value ) . '</option>';
					} else {
						$option_key = ( is_numeric( $option_key ) ) ? $option_value : $option_key;
						$selected   = ( $option_key === $this->value[ $name ] ) ? ' selected' : '';
						$output    .= '<option value="' . esc_attr( $option_key ) . '"' . esc_attr( $selected ) . '>' . esc_attr( $option_value ) . '</option>';
					}
				}
			}

			$output .= '</select>';

			return $output;
		}

		public function enqueue() {
			if ( ! wp_script_is( 'adminify-webfontloader' ) ) {
				ADMINIFY::include_plugin_file( 'fields/typography/google-fonts.php' );

				wp_enqueue_script( 'adminify-webfontloader', 'https://cdn.jsdelivr.net/npm/webfontloader@1.6.28/webfontloader.min.js', [ 'adminify' ], '1.6.28', true );

				$webfonts = [];

				$customwebfonts = apply_filters( 'adminify_field_typography_customwebfonts', [] );

				if ( ! empty( $customwebfonts ) ) {
					$webfonts['custom'] = [
						'label' => esc_html__( 'Custom Web Fonts', 'adminify' ),
						'fonts' => $customwebfonts,
					];
				}

				$webfonts['safe'] = [
					'label' => esc_html__( 'Safe Web Fonts', 'adminify' ),
					'fonts' => apply_filters(
						'adminify_field_typography_safewebfonts',
						[
							'Arial',
							'Arial Black',
							'Helvetica',
							'Times New Roman',
							'Courier New',
							'Tahoma',
							'Verdana',
							'Impact',
							'Trebuchet MS',
							'Comic Sans MS',
							'Lucida Console',
							'Lucida Sans Unicode',
							'Georgia, serif',
							'Palatino Linotype',
						]
					),
				];

				$webfonts['google'] = [
					'label' => esc_html__( 'Google Web Fonts', 'adminify' ),
					'fonts' => apply_filters(
						'adminify_field_typography_googlewebfonts',
						adminify_get_google_fonts()
					),
				];

				$defaultstyles = apply_filters( 'adminify_field_typography_defaultstyles', [ 'normal', 'italic', '700', '700italic' ] );

				$googlestyles = apply_filters(
					'adminify_field_typography_googlestyles',
					[
						'100'       => 'Thin 100',
						'100italic' => 'Thin 100 Italic',
						'200'       => 'Extra-Light 200',
						'200italic' => 'Extra-Light 200 Italic',
						'300'       => 'Light 300',
						'300italic' => 'Light 300 Italic',
						'normal'    => 'Normal 400',
						'italic'    => 'Normal 400 Italic',
						'500'       => 'Medium 500',
						'500italic' => 'Medium 500 Italic',
						'600'       => 'Semi-Bold 600',
						'600italic' => 'Semi-Bold 600 Italic',
						'700'       => 'Bold 700',
						'700italic' => 'Bold 700 Italic',
						'800'       => 'Extra-Bold 800',
						'800italic' => 'Extra-Bold 800 Italic',
						'900'       => 'Black 900',
						'900italic' => 'Black 900 Italic',
					]
				);

				$webfonts = apply_filters( 'adminify_field_typography_webfonts', $webfonts );

				wp_localize_script(
					'adminify',
					'adminify_typography_json',
					[
						'webfonts'      => $webfonts,
						'defaultstyles' => $defaultstyles,
						'googlestyles'  => $googlestyles,
					]
				);
			}
		}

		public function enqueue_google_fonts( $method = 'enqueue' ) {
			$is_google = false;

			if ( ! empty( $this->value['type'] ) ) {
				$is_google = ( $this->value['type'] === 'google' ) ? true : false;
			} else {
				ADMINIFY::include_plugin_file( 'fields/typography/google-fonts.php' );
				$is_google = ( array_key_exists( $this->value['font-family'], adminify_get_google_fonts() ) ) ? true : false;
			}

			if ( $is_google ) {

				// set style
				$font_family = ( ! empty( $this->value['font-family'] ) ) ? $this->value['font-family'] : '';
				$font_weight = ( ! empty( $this->value['font-weight'] ) ) ? $this->value['font-weight'] : '';
				$font_style  = ( ! empty( $this->value['font-style'] ) ) ? $this->value['font-style'] : '';

				if ( $font_weight || $font_style ) {
					$style = $font_weight . $font_style;
					if ( ! empty( $style ) ) {
						$style = ( $style === 'normal' ) ? '400' : $style;
						ADMINIFY::$webfonts[ $method ][ $font_family ][ $style ] = $style;
					}
				} else {
					ADMINIFY::$webfonts[ $method ][ $font_family ] = [];
				}

				// set extra styles
				if ( ! empty( $this->value['extra-styles'] ) ) {
					foreach ( $this->value['extra-styles'] as $extra_style ) {
						if ( ! empty( $extra_style ) ) {
							  $extra_style = ( $extra_style === 'normal' ) ? '400' : $extra_style;
							  ADMINIFY::$webfonts[ $method ][ $font_family ][ $extra_style ] = $extra_style;
						}
					}
				}

				// set subsets
				if ( ! empty( $this->value['subset'] ) ) {
					$this->value['subset'] = ( is_array( $this->value['subset'] ) ) ? $this->value['subset'] : array_filter( (array) $this->value['subset'] );
					foreach ( $this->value['subset'] as $subset ) {
						if ( ! empty( $subset ) ) {
							  ADMINIFY::$subsets[ $subset ] = $subset;
						}
					}
				}

				return true;
			}

			return false;
		}

		public function output() {
			$output    = '';
			$bg_image  = [];
			$important = ( ! empty( $this->field['output_important'] ) ) ? '!important' : '';
			$element   = ( is_array( $this->field['output'] ) ) ? join( ',', $this->field['output'] ) : $this->field['output'];

			$font_family   = ( ! empty( $this->value['font-family'] ) ) ? $this->value['font-family'] : '';
			$backup_family = ( ! empty( $this->value['backup-font-family'] ) ) ? ', ' . $this->value['backup-font-family'] : '';

			if ( $font_family ) {
				$output .= 'font-family:"' . $font_family . '"' . $backup_family . $important . ';';
			}

			// Common font properties
			$properties = [
				'color',
				'font-weight',
				'font-style',
				'font-variant',
				'text-align',
				'text-transform',
				'text-decoration',
			];

			foreach ( $properties as $property ) {
				if ( isset( $this->value[ $property ] ) && $this->value[ $property ] !== '' ) {
					$output .= $property . ':' . $this->value[ $property ] . $important . ';';
				}
			}

			$properties = [
				'font-size',
				'line-height',
				'letter-spacing',
				'word-spacing',
			];

			$unit             = ( ! empty( $this->value['unit'] ) ) ? $this->value['unit'] : 'px';
			$line_height_unit = ( ! empty( $this->value['line_height_unit'] ) ) ? $this->value['line_height_unit'] : $unit;

			foreach ( $properties as $property ) {
				if ( isset( $this->value[ $property ] ) && $this->value[ $property ] !== '' ) {
					$unit    = ( $property === 'line-height' ) ? $line_height_unit : $unit;
					$output .= $property . ':' . $this->value[ $property ] . $unit . $important . ';';
				}
			}

			$custom_style = ( ! empty( $this->value['custom-style'] ) ) ? $this->value['custom-style'] : '';

			if ( $output ) {
				$output = $element . '{' . $output . $custom_style . '}';
			}

			$this->parent->output_css .= $output;

			return $output;
		}

	}
}

```
