input.php
3.1 KB
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<?php
/*
* acf_controller_input
*
* This class contains the functionality for input actions used throughout ACF
*
* @type class
* @date 5/09/13
* @since 3.1.8
*
*/
class acf_controller_input
{
/*
* __construct
*
* @description:
* @since 3.1.8
* @created: 23/06/12
*/
function __construct()
{
// actions
add_action('acf/input/admin_head', array($this, 'input_admin_head'));
add_action('acf/input/admin_enqueue_scripts', array($this, 'input_admin_enqueue_scripts'));
}
/*
* input_admin_head
*
* action called when rendering the head of an admin screen. Used primarily for passing PHP to JS
*
* @type action
* @date 27/05/13
*
* @param N/A
* @return N/A
*/
function input_admin_head()
{
// global
global $wp_version, $post;
// vars
$toolbars = apply_filters( 'acf/fields/wysiwyg/toolbars', array() );
$post_id = 0;
if( $post )
{
$post_id = intval( $post->ID );
}
// l10n
$l10n = apply_filters( 'acf/input/admin_l10n', array(
'core' => array(
'expand_details' => __("Expand Details",'acf'),
'collapse_details' => __("Collapse Details",'acf')
),
'validation' => array(
'error' => __("Validation Failed. One or more fields below are required.",'acf')
)
));
// options
$o = array(
'post_id' => $post_id,
'nonce' => wp_create_nonce( 'acf_nonce' ),
'admin_url' => admin_url(),
'ajaxurl' => admin_url( 'admin-ajax.php' ),
'wp_version' => $wp_version
);
// toolbars
$t = array();
if( is_array($toolbars) ){ foreach( $toolbars as $label => $rows ){
$label = sanitize_title( $label );
$label = str_replace('-', '_', $label);
$t[ $label ] = array();
if( is_array($rows) ){ foreach( $rows as $k => $v ){
$t[ $label ][ 'theme_advanced_buttons' . $k ] = implode(',', $v);
}}
}}
?>
<script type="text/javascript">
(function($) {
// vars
acf.post_id = <?php echo is_numeric($post_id) ? $post_id : '"' . $post_id . '"'; ?>;
acf.nonce = "<?php echo wp_create_nonce( 'acf_nonce' ); ?>";
acf.admin_url = "<?php echo admin_url(); ?>";
acf.ajaxurl = "<?php echo admin_url( 'admin-ajax.php' ); ?>";
acf.wp_version = "<?php echo $wp_version; ?>";
// new vars
acf.o = <?php echo json_encode( $o ); ?>;
acf.l10n = <?php echo json_encode( $l10n ); ?>;
acf.fields.wysiwyg.toolbars = <?php echo json_encode( $t ); ?>;
})(jQuery);
</script>
<?php
}
/*
* input_admin_enqueue_scripts
*
* @description:
* @since: 3.6
* @created: 30/01/13
*/
function input_admin_enqueue_scripts()
{
// scripts
wp_enqueue_script(array(
'jquery',
'jquery-ui-core',
'jquery-ui-tabs',
'jquery-ui-sortable',
'wp-color-picker',
'thickbox',
'media-upload',
'acf-input',
'acf-datepicker',
));
// 3.5 media gallery
if( function_exists('wp_enqueue_media') && !did_action( 'wp_enqueue_media' ))
{
wp_enqueue_media();
}
// styles
wp_enqueue_style(array(
'thickbox',
'wp-color-picker',
'acf-global',
'acf-input',
'acf-datepicker',
));
}
}
new acf_controller_input();
?>