-
Notifications
You must be signed in to change notification settings - Fork 17
/
gfcptaddonbase.php
427 lines (350 loc) · 15.1 KB
/
gfcptaddonbase.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
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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
<?php
if (!class_exists('GFCPTAddonBase')) {
/*
* Base class for the GFCPT Addon. All common code is in here and differences per version are overrided
*/
class GFCPTAddonBase {
protected $_has_tag_inputs = false;
protected $_included_js;
protected $_tag_inputs = array();
protected $_tag_map = array();
protected $_tag_terms = array();
/*
* Main initilize method for wiring up all the hooks
*/
public function init() {
//alter the way forms are rendered by inserting taxomony dropdowns,radios and checkboxes
add_filter('gform_pre_render' , array(&$this, 'setup_form') );
//alter the way forms are rendered by the admin too!
add_filter('gform_admin_pre_render' , array(&$this, 'setup_form') );
//alter the form for submission - this is mainly for checkboxes
add_filter('gform_pre_submission_filter', array(&$this, 'setup_form') );
//set the post type when saving a post
add_filter("gform_post_data", array(&$this, 'set_post_values'), 10, 2);
//intercept the form save and save any taxonomy links if needed
add_action('gform_after_submission', array(&$this, 'save_taxonomies'), 10, 2);
//enqueue scripts to the page
add_action('gform_enqueue_scripts', array(&$this, 'enqueue_custom_scripts'), 10, 2);
add_action('wp_print_scripts', array(&$this, 'enqueue_scripts'), 10, 2);
add_filter("gform_preview_styles", array(&$this, 'preview_print_styles'), 10, 2);
}
/*
* Setup the form with any taxonomies etc
*/
function setup_form( $form ) {
//loop thru all fields
foreach($form['fields'] as &$field) {
//see if the field is using a taxonomy
$taxonomy = $this->get_field_taxonomy( $field );
if($taxonomy) {
$this->setup_taxonomy_field( $field, $taxonomy );
continue;
}
//if its a select then check if we have set a post type
if ($field['type'] == 'select') {
$post_type = $this->get_field_post_type( $field );
if ($post_type) {
$this->setup_post_type_field( $field, $post_type );
continue;
}
}
}
return $form;
}
function enqueue_scripts() {
if ($this->_has_tag_inputs) {
$script_block = '';
if (sizeof($this->_tag_inputs)>0) {
$script_block = 'var gfcpt_tag_inputs = {"tag_inputs": [';
$input_ids = array();
foreach($this->_tag_inputs as $input_id => $taxonomy) {
$input_ids[] = '{input: "'.$input_id.'", taxonomy: "'.$taxonomy.'"}';
}
$script_block .= implode(', ', $input_ids);
$script_block .= ']};
';
}
if (sizeof($this->_tag_terms)>0) {
$script_block .= 'var gfcpt_tag_taxonomies = [];
';
foreach($this->_tag_terms as $taxonomy => $terms) {
$script_block .= 'gfcpt_tag_taxonomies["'.$taxonomy.'"] = ["'.implode('", "', $terms).'"];
';
}
}
if (strlen($script_block) > 0) {
?>
<script type='text/javascript'>
<?php
echo $script_block;
?>
</script>
<?php
}
}
}
function preview_print_styles($styles, $form){
return array('gfcpt_jquery_ui_theme', 'gfcpt_tagit_css');
}
function enqueue_custom_scripts($form, $is_ajax) {
//loop thru all fields
foreach($form['fields'] as &$field) {
//if its a text field, see if we have set it to save to a taxonomy
if ($field['type'] == 'text' && array_key_exists('saveToTaxonomy', $field)) {
$saveToTaxonomy = $field['saveToTaxonomy'];
if (taxonomy_exists($saveToTaxonomy) && array_key_exists('taxonomyEnhanced', $field)) {
if ($field['taxonomyEnhanced']) {
$this->_has_tag_inputs = true;
$tag_input_id = '#input_'.$form['id'].'_'.$field['id'];
$this->_tag_inputs[$tag_input_id] = $saveToTaxonomy;
if ( !array_key_exists($saveToTaxonomy, $this->_tag_terms) ) {
//get the existing taxonomies and add them to an array to render later
$terms = get_terms($saveToTaxonomy, 'orderby=name&hide_empty=0&fields=names');
$this->_tag_terms[$saveToTaxonomy] = $terms;
}
if (!$this->_included_js) {
//enqueue some scripts for the enhaced UI
$this->_included_js = true;
wp_register_style(
$handle = 'gfcpt_jquery_ui_theme',
$src = plugins_url( 'css/custom/jquery-ui-1.8.16.custom.css' , __FILE__ ) );
wp_enqueue_style('gfcpt_jquery_ui_theme');
wp_register_style(
$handle = 'gfcpt_tagit_css',
$src = plugins_url( 'css/jquery.tagit.css' , __FILE__ ) );
wp_enqueue_style('gfcpt_tagit_css');
wp_register_script(
$handle = 'gfcpt_jquery_ui',
$src = plugins_url( 'js/jquery-ui-1.8.16.custom.min.js' , __FILE__ ),
$deps = array('jquery') );
wp_enqueue_script('gfcpt_jquery_ui');
wp_register_script(
$handle = 'gfcpt_tagit_js',
$src = plugins_url( 'js/tag-it.js' , __FILE__ ),
$deps = array('gfcpt_jquery_ui') );
wp_enqueue_script('gfcpt_tagit_js');
wp_register_script(
$handle = 'gfcpt_tagit_init_js',
$src = plugins_url( 'js/tag-it.init.js' , __FILE__ ),
$deps = array('gfcpt_tagit_js') );
wp_enqueue_script('gfcpt_tagit_init_js');
}
}
}
}
}
}
/*
* Set the post values (if neccessary)
*/
function set_post_values( $post_data, $form ) {
//check if the form saves a post
if ( $this->is_form_a_post_form($form) ) {
$target_post_type = $this->get_form_post_type( $form );
if ($target_post_type)
$post_data["post_type"] = $target_post_type;
//then check if we have set a parent
$parent_post_id = $this->get_form_parent_post_id( $form );
if ($parent_post_id > 0) {
$post_data["post_parent"] = $parent_post_id;
}
}
return $post_data;
}
/*
* Checks if a form includes a 'post field'
*/
function is_form_a_post_form( $form ) {
foreach ($form["fields"] as $field) {
if(in_array($field["type"],
array("post_category","post_title","post_content",
"post_excerpt","post_tags","post_custom_fields","post_image")))
return true;
}
return false;
}
/*
* override this to get the post type for a form
*/
function get_form_post_type( $form ) {
return null;
}
/*
* override this to get the taxonomy for a field
*/
function get_field_taxonomy( $field ) {
return null;
}
/*
* override this to get the post type for a field
*/
function get_field_post_type( $field ) {
return null;
}
/*
* override this to get the parent Id for a form
*/
function get_form_parent_post_id( $form ) {
return 0;
}
/*
* setup a field if it is linked to a post type
*/
function setup_post_type_field( &$field, $post_type ) {
$first_choice = $field['choices'][0]['text'];
$field['choices'] = $this->load_post_type_choices( $post_type, $first_choice );
}
function load_post_type_choices($post_type, $first_choice = '') {
$posts = $this->load_posts_hierarchical( $post_type );
if ($first_choice === '' || $first_choice === 'First Choice'){
// if no default option is specified, dynamically create based on post type name
$post_type_obj = get_post_type_object($post_type);
$choices[] = array('text' => "-- select a {$post_type_obj->labels->singular_name} --", 'value' => '');
} else {
$choices[] = array('text' => $first_choice, 'value' => '');
}
foreach($posts as $post) {
$choices[] = array('value' => $post->ID, 'text' => $post->post_title);
}
return $choices;
}
/*
* Get a hierarchical list of posts
*/
function load_posts_hierarchical( $post_type ) {
$args = array(
'post_type' => $post_type,
'numberposts' => -1,
'orderby' => 'title',
'post_status' => 'publish'
);
$posts = get_posts( $args );
return $this->walk_posts( $posts );
}
/*
* Helper function to recursively 'walk' the posts
*/
function walk_posts( $input_array, $parent_id=0, &$out_array=array(), $level=0 ){
foreach ( $input_array as $item ) {
if ( $item->post_parent == $parent_id ) {
$item->post_title = str_repeat('--', $level) . $item->post_title;
$out_array[] = $item;
$this->walk_posts( $input_array, $item->ID, $out_array, $level+1 );
}
}
return $out_array;
}
/*
* setup a field if it is linked to a taxonomy
*/
function setup_taxonomy_field( &$field, $taxonomy ) {
$first_choice = $field['choices'][0]['text'];
$field['choices'] = $this->load_taxonomy_choices( $taxonomy, $field['type'], $first_choice );
//now check if we are dealing with a checkbox list and do some extra magic
if ( $field['type'] == 'checkbox' ) {
//clear the inputs first
$inputs = array();
$counter = 0;
//recreate the inputs so they are captured correctly on form submission
foreach( $field['choices'] as $choice ) {
$counter++;
if ( ($counter % 10) == 0 ) $counter++; //thanks to Peter Schuster for the help on this fix
$id = floatval( $field['id'] . '.' . $counter );
$inputs[] = array('label' => $choice['text'], 'id' => $id);
}
$field['inputs'] = $inputs;
}
}
/*
* Load any taxonomy terms
*/
function load_taxonomy_choices($taxonomy, $type, $first_choice = '') {
$choices = array();
if ($type === 'select') {
$terms = $this->load_taxonomy_hierarchical( $taxonomy );
if ($first_choice === '' || $first_choice === 'First Choice'){
// if no default option is specified, dynamically create based on taxonomy name
$taxonomy = get_taxonomy($taxonomy);
$choices[] = array('text' => "-- select a {$taxonomy->labels->singular_name} --", 'value' => '');
} else {
$choices[] = array('text' => $first_choice, 'value' => '');
}
} else {
$terms = get_terms($taxonomy, 'orderby=name&hide_empty=0');
}
if ( !array_key_exists("errors",$terms) ) {
foreach($terms as $term) {
$choices[] = array('value' => $term->term_id, 'text' => $term->name);
}
}
return $choices;
}
/*
* Get a hierarchical list of taxonomies
*/
function load_taxonomy_hierarchical( $taxonomy ) {
$args = array(
'taxonomy' => $taxonomy,
'orderby' => 'name',
'hierarchical' => 1,
'hide_empty' => 0
);
$terms = get_categories( $args );
if ( array_key_exists("errors",$terms) ) {
return $terms;
}
else
return $this->walk_terms( $terms );
}
/*
* Helper function to recursively 'walk' the taxonomy terms
*/
function walk_terms( $input_array, $parent_id=0, &$out_array=array(), $level=0 ){
foreach ( $input_array as $item ) {
if ( $item->parent == $parent_id ) {
$item->name = str_repeat('--', $level) . $item->name;
$out_array[] = $item;
$this->walk_terms( $input_array, $item->term_id, $out_array, $level+1 );
}
}
return $out_array;
}
/*
* Loop through all fields and save any linked taxonomies
*/
function save_taxonomies( $entry, $form ) {
// Check if the submission contains a WordPress post
if ( isset ( $entry['post_id'] ) ) {
foreach( $form['fields'] as &$field ) {
$taxonomy = $this->get_field_taxonomy( $field );
if ( !$taxonomy ) continue;
$this->save_taxonomy_field( $field, $entry, $taxonomy );
}
}
}
/*
* Save linked taxonomies for a sinle field
*/
function save_taxonomy_field( &$field, $entry, $taxonomy ) {
if ( array_key_exists( 'type', $field ) && $field['type'] == 'checkbox' ) {
$term_ids = array();
foreach ( $field['inputs'] as $input ) {
$term_id = (int) $entry[ (string) $input['id'] ];
if ( $term_id > 0 )
$term_ids[] = $term_id;
}
if ( !empty ( $term_ids ))
wp_set_object_terms( $entry['post_id'], $term_ids, $taxonomy, true );
} else if ( array_key_exists( 'type', $field ) && $field['type'] == 'text' ) {
$terms = $entry[$field['id']];
if ( !empty($terms) )
wp_set_post_terms( $entry['post_id'], $terms, $taxonomy );
} else {
$term_id = (int) $entry[$field['id']];
if ( $term_id > 0 )
wp_set_object_terms( $entry['post_id'], $term_id, $taxonomy, true );
}
}
}
}
?>