227 lines
		
	
	
		
			5.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			227 lines
		
	
	
		
			5.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * This file handles the customizer fields for the Body.
 | |
|  *
 | |
|  * @package GeneratePress
 | |
|  */
 | |
| 
 | |
| if ( ! defined( 'ABSPATH' ) ) {
 | |
| 	exit; // No direct access, please.
 | |
| }
 | |
| 
 | |
| GeneratePress_Customize_Field::add_title(
 | |
| 	'generate_forms_colors_title',
 | |
| 	array(
 | |
| 		'section' => 'generate_colors_section',
 | |
| 		'title' => __( 'Forms', 'generatepress' ),
 | |
| 		'choices' => array(
 | |
| 			'toggleId' => 'form-colors',
 | |
| 		),
 | |
| 	)
 | |
| );
 | |
| 
 | |
| GeneratePress_Customize_Field::add_wrapper(
 | |
| 	'generate_forms_background_wrapper',
 | |
| 	array(
 | |
| 		'section' => 'generate_colors_section',
 | |
| 		'choices' => array(
 | |
| 			'type' => 'color',
 | |
| 			'toggleId' => 'form-colors',
 | |
| 			'items' => array(
 | |
| 				'form_background_color',
 | |
| 				'form_background_color_focus',
 | |
| 			),
 | |
| 		),
 | |
| 	)
 | |
| );
 | |
| 
 | |
| $forms_selector = 'input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], textarea, select';
 | |
| $forms_focus_selector = 'input[type="text"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="number"]:focus, input[type="tel"]:focus, textarea:focus, select:focus';
 | |
| 
 | |
| GeneratePress_Customize_Field::add_field(
 | |
| 	'generate_settings[form_background_color]',
 | |
| 	'GeneratePress_Customize_Color_Control',
 | |
| 	array(
 | |
| 		'default' => $color_defaults['form_background_color'],
 | |
| 		'sanitize_callback' => 'generate_sanitize_rgba_color',
 | |
| 		'transport' => 'postMessage',
 | |
| 	),
 | |
| 	array(
 | |
| 		'label' => __( 'Background', 'generatepress' ),
 | |
| 		'section' => 'generate_colors_section',
 | |
| 		'choices' => array(
 | |
| 			'alpha' => true,
 | |
| 			'toggleId' => 'form-colors',
 | |
| 			'wrapper' => 'form_background_color',
 | |
| 			'tooltip' => __( 'Choose Initial Color', 'generatepress' ),
 | |
| 		),
 | |
| 		'output' => array(
 | |
| 			array(
 | |
| 				'element'  => $forms_selector,
 | |
| 				'property' => 'background-color',
 | |
| 			),
 | |
| 		),
 | |
| 	)
 | |
| );
 | |
| 
 | |
| GeneratePress_Customize_Field::add_field(
 | |
| 	'generate_settings[form_background_color_focus]',
 | |
| 	'GeneratePress_Customize_Color_Control',
 | |
| 	array(
 | |
| 		'default' => $color_defaults['form_background_color_focus'],
 | |
| 		'sanitize_callback' => 'generate_sanitize_rgba_color',
 | |
| 		'transport' => 'postMessage',
 | |
| 	),
 | |
| 	array(
 | |
| 		'label' => __( 'Background Focus', 'generatepress' ),
 | |
| 		'section' => 'generate_colors_section',
 | |
| 		'choices' => array(
 | |
| 			'alpha' => true,
 | |
| 			'toggleId' => 'form-colors',
 | |
| 			'wrapper' => 'form_background_color_focus',
 | |
| 			'tooltip' => __( 'Choose Focus Color', 'generatepress' ),
 | |
| 			'hideLabel' => true,
 | |
| 		),
 | |
| 		'output' => array(
 | |
| 			array(
 | |
| 				'element'  => $forms_focus_selector,
 | |
| 				'property' => 'background-color',
 | |
| 			),
 | |
| 		),
 | |
| 	)
 | |
| );
 | |
| 
 | |
| GeneratePress_Customize_Field::add_wrapper(
 | |
| 	'generate_forms_text_wrapper',
 | |
| 	array(
 | |
| 		'section' => 'generate_colors_section',
 | |
| 		'choices' => array(
 | |
| 			'type' => 'color',
 | |
| 			'toggleId' => 'form-colors',
 | |
| 			'items' => array(
 | |
| 				'form_text_color',
 | |
| 				'form_text_color_focus',
 | |
| 			),
 | |
| 		),
 | |
| 	)
 | |
| );
 | |
| 
 | |
| GeneratePress_Customize_Field::add_field(
 | |
| 	'generate_settings[form_text_color]',
 | |
| 	'GeneratePress_Customize_Color_Control',
 | |
| 	array(
 | |
| 		'default' => $color_defaults['form_text_color'],
 | |
| 		'sanitize_callback' => 'generate_sanitize_hex_color',
 | |
| 		'transport' => 'postMessage',
 | |
| 	),
 | |
| 	array(
 | |
| 		'label' => __( 'Text', 'generatepress' ),
 | |
| 		'section' => 'generate_colors_section',
 | |
| 		'choices' => array(
 | |
| 			'toggleId' => 'form-colors',
 | |
| 			'wrapper' => 'form_text_color',
 | |
| 			'tooltip' => __( 'Choose Initial Color', 'generatepress' ),
 | |
| 		),
 | |
| 		'output' => array(
 | |
| 			array(
 | |
| 				'element'  => $forms_selector,
 | |
| 				'property' => 'color',
 | |
| 			),
 | |
| 		),
 | |
| 	)
 | |
| );
 | |
| 
 | |
| GeneratePress_Customize_Field::add_field(
 | |
| 	'generate_settings[form_text_color_focus]',
 | |
| 	'GeneratePress_Customize_Color_Control',
 | |
| 	array(
 | |
| 		'default' => $color_defaults['form_text_color_focus'],
 | |
| 		'sanitize_callback' => 'generate_sanitize_hex_color',
 | |
| 		'transport' => 'postMessage',
 | |
| 	),
 | |
| 	array(
 | |
| 		'label' => __( 'Text Focus', 'generatepress' ),
 | |
| 		'section' => 'generate_colors_section',
 | |
| 		'choices' => array(
 | |
| 			'toggleId' => 'form-colors',
 | |
| 			'wrapper' => 'form_text_color_focus',
 | |
| 			'tooltip' => __( 'Choose Focus Color', 'generatepress' ),
 | |
| 			'hideLabel' => true,
 | |
| 		),
 | |
| 		'output' => array(
 | |
| 			array(
 | |
| 				'element'  => $forms_focus_selector,
 | |
| 				'property' => 'color',
 | |
| 			),
 | |
| 		),
 | |
| 	)
 | |
| );
 | |
| 
 | |
| GeneratePress_Customize_Field::add_wrapper(
 | |
| 	'generate_forms_border_wrapper',
 | |
| 	array(
 | |
| 		'section' => 'generate_colors_section',
 | |
| 		'choices' => array(
 | |
| 			'type' => 'color',
 | |
| 			'toggleId' => 'form-colors',
 | |
| 			'items' => array(
 | |
| 				'form_border_color',
 | |
| 				'form_border_color_focus',
 | |
| 			),
 | |
| 		),
 | |
| 	)
 | |
| );
 | |
| 
 | |
| GeneratePress_Customize_Field::add_field(
 | |
| 	'generate_settings[form_border_color]',
 | |
| 	'GeneratePress_Customize_Color_Control',
 | |
| 	array(
 | |
| 		'default' => $color_defaults['form_border_color'],
 | |
| 		'sanitize_callback' => 'generate_sanitize_rgba_color',
 | |
| 		'transport' => 'postMessage',
 | |
| 	),
 | |
| 	array(
 | |
| 		'label' => __( 'Border', 'generatepress' ),
 | |
| 		'section' => 'generate_colors_section',
 | |
| 		'choices' => array(
 | |
| 			'alpha' => true,
 | |
| 			'toggleId' => 'form-colors',
 | |
| 			'wrapper' => 'form_border_color',
 | |
| 			'tooltip' => __( 'Choose Initial Color', 'generatepress' ),
 | |
| 		),
 | |
| 		'output' => array(
 | |
| 			array(
 | |
| 				'element'  => $forms_selector,
 | |
| 				'property' => 'border-color',
 | |
| 			),
 | |
| 		),
 | |
| 	)
 | |
| );
 | |
| 
 | |
| GeneratePress_Customize_Field::add_field(
 | |
| 	'generate_settings[form_border_color_focus]',
 | |
| 	'GeneratePress_Customize_Color_Control',
 | |
| 	array(
 | |
| 		'default' => $color_defaults['form_border_color_focus'],
 | |
| 		'sanitize_callback' => 'generate_sanitize_rgba_color',
 | |
| 		'transport' => 'postMessage',
 | |
| 	),
 | |
| 	array(
 | |
| 		'label' => __( 'Border Focus', 'generatepress' ),
 | |
| 		'section' => 'generate_colors_section',
 | |
| 		'choices' => array(
 | |
| 			'alpha' => true,
 | |
| 			'toggleId' => 'form-colors',
 | |
| 			'wrapper' => 'form_border_color_focus',
 | |
| 			'tooltip' => __( 'Choose Focus Color', 'generatepress' ),
 | |
| 			'hideLabel' => true,
 | |
| 		),
 | |
| 		'output' => array(
 | |
| 			array(
 | |
| 				'element'  => $forms_focus_selector,
 | |
| 				'property' => 'border-color',
 | |
| 			),
 | |
| 		),
 | |
| 	)
 | |
| );
 |