forked from dimadinev/control-color-alpha
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathColorAlpha.php
84 lines (75 loc) · 1.72 KB
/
ColorAlpha.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?php // phpcs:ignore WordPress.Files.FileName
/**
* Customize API: ColorAlpha class
*
* @package WordPress
* @subpackage Customize
* @since 1.0.0
*/
namespace WPTRT\Customize\Control;
use WP_Customize_Color_Control;
/**
* Customize Color Control class.
*
* @since 1.0.0
*
* @see WP_Customize_Control
*/
class ColorAlpha extends WP_Customize_Color_Control {
/**
* Type.
*
* @access public
* @since 1.0.0
* @var string
*/
public $type = 'color-alpha';
/**
* Enqueue scripts/styles for the color picker.
*
* @access public
* @since 1.0.0
* @return void
*/
public function enqueue() {
$control_root_url = str_replace(
wp_normalize_path( untrailingslashit( WP_CONTENT_DIR ) ),
untrailingslashit( content_url() ),
dirname( __DIR__ )
);
/**
* Filters the URL for the scripts.
*
* @since 1.0.0
* @param string $control_root_url The URL to the root folder of the package.
* @return string
*/
$control_root_url = apply_filters( 'wptrt_color_picker_alpha_url', $control_root_url );
wp_enqueue_script(
'wptrt-control-color-picker-alpha',
$control_root_url . '/dist/main.js',
// We're including wp-color-picker for localized strings, nothing more.
[ 'customize-controls', 'wp-element', 'jquery', 'customize-base', 'wp-color-picker' ], // phpcs:ignore Generic.Arrays.DisallowShortArraySyntax
'1.1',
true
);
}
/**
* Refresh the parameters passed to the JavaScript via JSON.
*
* @since 3.4.0
* @uses WP_Customize_Control::to_json()
*/
public function to_json() {
parent::to_json();
$this->json['choices'] = $this->choices;
}
/**
* Empty JS template.
*
* @access public
* @since 1.0.0
* @return void
*/
public function content_template() {}
}