HEX
Server: LiteSpeed
System: Linux server315.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: globfdxw (6114)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: //home/globfdxw/www/wp-content/plugins/kirki/customizer/packages/controls/input-slider/src/Init.php
<?php
/**
 * Init the Kirki input slider package.
 *
 * @package kirki-input-slider
 * @since 1.0.0
 */

namespace Kirki\InputSlider;

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

/**
 * Manage the tabs package.
 *
 * @since 1.0.0
 */
class Init {

	/**
	 * The class constructor.
	 *
	 * @since 1.0.0
	 */
	public function __construct() {

		add_filter( 'kirki_control_types', [ $this, 'control_type' ] );

	}

	/**
	 * The control type.
	 *
	 * @since 1.0.0
	 *
	 * @param array $control_types The existing control types.
	 */
	public function control_type( $control_types ) {

		$control_types['kirki-input-slider'] = 'Kirki\Control\InputSlider';

		return $control_types;

	}

}