File manager - Edit - /home/theblueo/questionnaire/wp-content/themes/astra/inc/customizer/custom-controls/class-astra-customizer-control-base.php
Back
<?php /** * Astra Theme Customizer Configuration Base. * * @package Astra * @author Astra * @copyright Copyright (c) 2020, Astra * @link https://wpastra.com/ * @since Astra 1.4.3 */ // No direct access, please. if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Base Class for Registering Customizer Controls. * * @since 1.4.3 */ if ( ! class_exists( 'Astra_Customizer_Control_Base' ) ) { /** * Customizer Sanitizes Initial setup */ class Astra_Customizer_Control_Base { /** * Registered Controls. * * @since 1.4.3 * @var Array */ private static $controls; /** * Constructor */ public function __construct() { add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ) ); } /** * Enqueue Admin Scripts * * @since 1.4.3 */ public function enqueue_scripts() { $dir_name = ( SCRIPT_DEBUG ) ? 'unminified' : 'minified'; $file_prefix = ( SCRIPT_DEBUG ) ? '' : '.min'; $file_rtl = ( is_rtl() ) ? '-rtl' : ''; $css_uri = ASTRA_THEME_URI . 'inc/customizer/custom-controls/assets/css/' . $dir_name . '/'; $js_uri = ASTRA_THEME_URI . 'inc/customizer/custom-controls/assets/js/' . $dir_name . '/'; wp_enqueue_style( 'custom-control-style' . $file_rtl, $css_uri . 'custom-controls' . $file_prefix . $file_rtl . '.css', null, ASTRA_THEME_VERSION ); wp_enqueue_script( 'custom-control-script', $js_uri . 'custom-controls' . $file_prefix . '.js', array( 'jquery', 'customize-base', 'astra-color-alpha', 'jquery-ui-tabs', 'jquery-ui-sortable' ), ASTRA_THEME_VERSION, true ); wp_localize_script( 'custom-control-script', 'astraCustomizerControlBackground', array( 'placeholder' => __( 'No file selected', 'astra' ), 'lessSettings' => __( 'Less Settings', 'astra' ), 'moreSettings' => __( 'More Settings', 'astra' ), ) ); } /** * Add Control to self::$controls and Register control to WordPress Customizer. * * @param String $name Slug for the control. * @param Array $atts Control Attributes. * @return void */ public static function add_control( $name, $atts ) { global $wp_customize; self::$controls[ $name ] = $atts; if ( isset( $atts['callback'] ) ) { /** * Register controls */ $wp_customize->register_control_type( $atts['callback'] ); } } /** * Returns control instance * * @param string $control_type control type. * @since 1.4.3 * @return string */ public static function get_control_instance( $control_type ) { $control_class = self::get_control( $control_type ); if ( isset( $control_class['callback'] ) ) { return class_exists( $control_class['callback'] ) ? $control_class['callback'] : false; } return false; } /** * Returns control and its attributes * * @param string $control_type control type. * @since 1.4.3 * @return array */ public static function get_control( $control_type ) { if ( isset( self::$controls[ $control_type ] ) ) { return self::$controls[ $control_type ]; } return array(); } /** * Returns Santize callback for control * * @param string $control control. * @since 1.4.3 * @return string */ public static function get_sanitize_call( $control ) { if ( isset( self::$controls[ $control ]['sanitize_callback'] ) ) { return self::$controls[ $control ]['sanitize_callback']; } return false; } } } /** * Kicking this off by calling 'get_instance()' method */ new Astra_Customizer_Control_Base();
| ver. 1.4 |
Github
|
.
| PHP 7.0.33 | Generation time: 0 |
proxy
|
phpinfo
|
Settings