HEX
Server: LiteSpeed
System: Linux vps30244.sdns.vn 3.10.0-1160.21.1.el7.x86_64 #1 SMP Tue Mar 16 18:28:22 UTC 2021 x86_64
User: admin (1001)
PHP: 7.4.30
Disabled: show_source, system, shell_exec, passthru, exec, popen, proc_open
Upload Files
File: /home/hcb48/public_html/wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-code.php
<?php
/**
 * Override field methods
 *
 * @package     Kirki
 * @subpackage  Controls
 * @copyright   Copyright (c) 2017, Aristeides Stathopoulos
 * @license     http://opensource.org/licenses/https://opensource.org/licenses/MIT
 * @since       2.2.7
 */

/**
 * Field overrides.
 */
class Kirki_Field_Code extends Kirki_Field {

	/**
	 * Sets the control type.
	 *
	 * @access protected
	 */
	protected function set_type() {

		$this->type = 'kirki-code';

	}

	/**
	 * Sets the $choices
	 *
	 * @access protected
	 */
	protected function set_choices() {

		// Make sure we have some defaults in case none are defined.
		$defaults = array(
			'language' => 'css',
			'theme'    => 'elegant',
		);
		$this->choices = wp_parse_args( $this->choices, $defaults );

		// Make sure the choices are defined and set as an array.
		if ( ! is_array( $this->choices ) ) {
			$this->choices = array();
		}

		// An array of valid languages.
		$valid_languages = array(
			'coffescript',
			'css',
			'haml',
			'htmlembedded',
			'htmlmixed',
			'javascript',
			'markdown',
			'php',
			'sass',
			'smarty',
			'sql',
			'stylus',
			'textile',
			'twig',
			'xml',
			'yaml',
		);
		// Make sure the defined language exists.
		// If not, fallback to CSS.
		if ( ! in_array( $this->choices['language'], $valid_languages, true ) ) {
			$this->choices['language'] = 'css';
		}
		// Hack for 'html' mode.
		if ( 'html' === $this->choices['language'] ) {
			$this->choices['language'] = 'htmlmixed';
		}

		// Set the theme.
		$valid_themes = array(
			'kirki-light' => 'elegant',
			'light'       => 'elegant',
			'elegant'     => 'elegant',
			'kirki-dark'  => 'monokai',
			'dark'        => 'monokai',
			'monokai'     => 'monokai',
			'material'    => 'material',
		);
		if ( isset( $valid_themes[ $this->choices['theme'] ] ) ) {
			$this->choices['theme'] = $valid_themes[ $this->choices['theme'] ];
		} else {
			$this->choices['theme'] = 'elegant';
		}
	}

	/**
	 * Sets the $sanitize_callback
	 *
	 * @access protected
	 */
	protected function set_sanitize_callback() {

		// If a custom sanitize_callback has been defined,
		// then we don't need to proceed any further.
		if ( ! empty( $this->sanitize_callback ) ) {
			return;
		}
		// Code fields must NOT be filtered. Their values usually contain CSS/JS.
		// It is the responsibility of the theme/plugin that registers this field
		// to properly apply any necessary filtering.
		$this->sanitize_callback = array( 'Kirki_Sanitize_Values', 'unfiltered' );

	}
}