1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?php function ninja_forms_process(){ global $wpdb, $ninja_forms_fields, $ninja_forms_processing;
$ajax = $ninja_forms_processing->get_form_setting('ajax'); $form_id = $ninja_forms_processing->get_form_ID();
if(!$ninja_forms_processing->get_all_errors()){ do_action('ninja_forms_process'); ninja_forms_post_process(); }else{ if($ajax == 1){ $json = ninja_forms_json_response(); //header('Content-Type', 'application/json'); echo $json; die(); }else{ //echo 'processing'; //print_r($ninja_forms_processing->get_all_errors()); } } }
|