HEX
Server: LiteSpeed
System: Linux premium212.web-hosting.com 4.18.0-553.124.4.lve.el8.x86_64 #1 SMP Fri May 15 13:02:13 UTC 2026 x86_64
User: vitanhod (1367)
PHP: 8.2.31
Disabled: NONE
Upload Files
File: /home/vitanhod/barnabites.es/wp-content/themes/rishi/customizer/classes/Controls/Colors_Section.php
<?php
/**
 * Colors_Section Class File.
 *
 * This file contains the Colors_Section class which extends the Customizer_Control class.
 * The Colors_Section class is used to create a custom control for managing color options in the WordPress Customizer.
 *
 * @package Rishi\Customizer\Controls
 */
namespace Rishi\Customizer\Controls;

use Rishi\Customizer\Customizer_Control;

/**
 * Colors_Section Class.
 *
 * This class extends the Customizer_Control class and is used to create a custom control for managing color options in the WordPress Customizer.
 */
class Colors_Section extends Customizer_Control {
	/**
	 * Get Control ID.
	 *
	 * This method returns the ID of the control. This ID is used to identify the control in the WordPress Customizer.
	 *
	 * @return string The ID of the control.
	 */
	public function get_control_id() {
		return 'layouts_color_options';
	}

	/**
	 * Get Label.
	 *
	 * This method returns the label of the control. This label is displayed in the WordPress Customizer.
	 *
	 * @return string The label of the control.
	 */
	public function get_label() {
		return __( 'Colors', 'rishi' );
	}
}