| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291 |
- <?php if ( ! defined( 'ABSPATH' ) ) exit;
- function ninja_forms_display_js( $form_id, $local_vars = '' ) {
- global $post, $ninja_forms_display_localize_js, $wp_locale, $ninja_forms_loading, $ninja_forms_processing;
- if ( defined( 'NINJA_FORMS_JS_DEBUG' ) && NINJA_FORMS_JS_DEBUG ) {
- $suffix = '';
- $src = 'dev';
- } else {
- $suffix = '.min';
- $src = 'min';
- }
- // Get all of our form fields to see if we need to include the datepicker and/or jqueryUI
- $datepicker = 0;
- $qtip = 0;
- $mask = 0;
- $currency = 0;
- $input_limit = 0;
- $rating = 0;
- $calc_value = array();
- $calc_fields = array();
- $calc_eq = false;
- $sub_total = false;
- $tax = false;
- $fields = ninja_forms_get_fields_by_form_id( $form_id );
- if( is_array( $fields ) AND !empty( $fields ) ){
- foreach( $fields as $field ){
- if ( isset ( $field['id'] ) ) {
- $field_id = $field['id'];
- } else {
- $field_id = '';
- }
- if ( isset ( $field['type'] ) ) {
- $field_type = $field['type'];
- } else {
- $field_type = '';
- }
- $field['data'] = apply_filters( 'ninja_forms_display_script_field_data', $field['data'], $field_id );
- if( isset( $field['data']['datepicker'] ) AND $field['data']['datepicker'] == 1 ){
- $datepicker = 1;
- }
- if( isset( $field['data']['show_help'] ) AND $field['data']['show_help'] == 1 ){
- $qtip = 1;
- }
- if( isset( $field['data']['mask'] ) AND $field['data']['mask'] != '' ){
- $mask = 1;
- }
- if( isset( $field['data']['mask'] ) AND $field['data']['mask'] == 'currency' ){
- $currency = 1;
- }
- if( isset( $field['data']['input_limit'] ) AND $field['data']['input_limit'] != '' ){
- $input_limit = $field['data']['input_limit'];
- $input_limit_type = $field['data']['input_limit_type'];
- }
- if( $field_type == '_rating' ){
- $rating = 1;
- }
- // Populate an array of calculation values for the form fields.
- // Check to see if this field has a calc_value. If it does, add this to our calc_value array so that we can tell what it is in our JS.
- if ( isset( $field['data']['calc_value'] ) ) {
- $calc_value[$field_id] = $field['data']['calc_value'];
- } else if ( $field_type == '_list' ) {
- // Get a list of options and their 'calc' setting.
- if ( isset ( $field['data']['list']['options'] ) AND is_array ( $field['data']['list']['options'] ) ) {
- $list_options = $field['data']['list']['options'];
- foreach ( $list_options as $option ) {
- if ( isset ( $field['data']['list_show_value'] ) AND $field['data']['list_show_value'] == 1 ) {
- $key = $option['value'];
- } else {
- $key = $option['label'];
- }
- if ( !isset ( $option['calc'] ) OR ( isset ( $option['calc'] ) AND empty ( $option['calc'] ) ) ) {
- $option['calc'] = 0;
- }
- $calc_value[$field_id][$key] = $option['calc'];
- }
- }
- }
- // Check to see if this is a tax field;
- if ( $field_type == '_tax' ) {
- $tax = $field_id;
- }
- // Check to see if this is a calculation field. If it is, store it in our calc_fields array along with its method.
- if ( $field_type == '_calc' ) {
- if ( isset ( $field['data']['calc_method'] ) ) {
- $calc_method = $field['data']['calc_method'];
- } else {
- $calc_method = 'auto';
- }
- // Check to see if this is a sub_total calculation
- if ( isset ( $field['data']['payment_sub_total'] ) AND $field['data']['payment_sub_total'] == 1 ) {
- $sub_total = $field_id;
- }
- switch ( $calc_method ) {
- case 'auto':
- $calc_fields[$field_id] = array( 'method' => 'auto' );
- break;
- case 'fields':
- $field_ops = $field['data']['calc'];
- $calc_fields[$field_id] = array( 'method' => 'fields', 'fields' => $field_ops );
- break;
- case 'eq':
- $calc_fields[$field_id] = array( 'method' => 'eq', 'eq' => $field['data']['calc_eq'] );
- $calc_eq = true;
- break;
- }
- $calc_fields[$field_id]['places'] = $field['data']['calc_places'];
- }
- }
- // Loop through our fields again looking for calc fields that are totals.
- foreach( $fields as $field ){
- if ( isset ( $field['id'] ) ) {
- $field_id = $field['id'];
- } else {
- $field_id = '';
- }
- if ( isset ( $field['type'] ) ) {
- $field_type = $field['type'];
- } else {
- $field_type = '';
- }
- if ( $field_type == '_calc' ) {
- if ( isset ( $field['data']['payment_total'] ) AND $field['data']['payment_total'] == 1 ) {
- if ( $sub_total AND $tax AND $field['data']['calc_method'] == 'auto' ) {
- $calc_fields[$field_id]['method'] = 'eq';
- $calc_fields[$field_id]['eq'] = 'field_'.$sub_total.' + ( field_'.$sub_total.' * field_'.$tax.' )';
- $calc_eq = true;
- }
- }
- }
- }
- }
- // Loop through our fields once more to add them to our calculation field with the method of 'eq'.
- if ( $calc_eq ) {
- foreach ( $calc_fields as $calc_id => $calc ) {
- if( $calc['method'] == 'eq' ) {
- foreach( $fields as $field ){
- $field_id = $field['id'];
- if (preg_match("/\bfield_".$field_id."\b/i", $calc['eq'] ) ) {
- $calc_fields[$calc_id]['fields'][] = $field_id;
- }
- }
- }
- }
- }
- if ( $datepicker == 1 ) {
- wp_enqueue_script( 'jquery-ui-datepicker' );
- }
- if ( $qtip == 1 ) {
- wp_enqueue_script( 'jquery-qtip',
- NINJA_FORMS_URL .'js/min/jquery.qtip.min.js',
- array( 'jquery', 'jquery-ui-position' ) );
- }
- if ( $mask == 1 ) {
- wp_enqueue_script( 'jquery-maskedinput',
- NINJA_FORMS_URL .'js/min/jquery.maskedinput.min.js',
- array( 'jquery' ) );
- }
- if ( $currency == 1 ) {
- wp_enqueue_script('jquery-autonumeric',
- NINJA_FORMS_URL .'js/min/autoNumeric.min.js',
- array( 'jquery' ) );
- }
- if ( $input_limit != 0 ) {
- wp_enqueue_script('jquery-char-input-limit',
- NINJA_FORMS_URL .'js/min/word-and-character-counter.min.js',
- array( 'jquery' ) );
- }
- if ( $rating == 1 ) {
- wp_enqueue_script('jquery-rating',
- NINJA_FORMS_URL .'js/min/jquery.rating.min.js',
- array( 'jquery' ) );
- }
- $form_row = ninja_forms_get_form_by_id($form_id);
- $form_row = apply_filters( 'ninja_forms_display_form_form_data', $form_row );
- if( isset( $form_row['data']['ajax'] ) ){
- $ajax = $form_row['data']['ajax'];
- }else{
- $ajax = 0;
- }
- if( isset( $form_row['data']['hide_complete'] ) ){
- $hide_complete = $form_row['data']['hide_complete'];
- }else{
- $hide_complete = 0;
- }
- if( isset( $form_row['data']['clear_complete'] ) ){
- $clear_complete = $form_row['data']['clear_complete'];
- }else{
- $clear_complete = 0;
- }
- $ninja_forms_js_form_settings['ajax'] = $ajax;
- $ninja_forms_js_form_settings['hide_complete'] = $hide_complete;
- $ninja_forms_js_form_settings['clear_complete'] = $clear_complete;
- $calc_settings['calc_value'] = '';
- $calc_settings['calc_fields'] = '';
- if ( !empty ( $calc_value ) ) {
- $calc_settings['calc_value'] = $calc_value;
- }
- $calc_settings['calc_fields'] = $calc_fields;
- $plugin_settings = nf_get_settings();
- if(isset($plugin_settings['date_format'])){
- $date_format = $plugin_settings['date_format'];
- }else{
- $date_format = 'm/d/Y';
- }
- $date_format = ninja_forms_date_to_datepicker($date_format);
- $datepicker_args = array();
- if ( !empty( $date_format ) ) {
- $datepicker_args['dateFormat'] = $date_format;
- }
- $currency_symbol = $plugin_settings['currency_symbol'];
- $password_mismatch = esc_html(stripslashes($plugin_settings['password_mismatch']));
- $msg_format = 'inline';
- wp_enqueue_script( 'ninja-forms-display',
- NINJA_FORMS_URL . 'js/' . $src .'/ninja-forms-display' . $suffix . '.js?nf_ver=' . NF_PLUGIN_VERSION,
- array( 'jquery', 'jquery-form', 'backbone', 'underscore' ) );
- if( !isset( $ninja_forms_display_localize_js ) OR !$ninja_forms_display_localize_js ){
- wp_localize_script( 'ninja-forms-display', 'ninja_forms_settings', array('ajax_msg_format' => $msg_format, 'password_mismatch' => $password_mismatch, 'plugin_url' => NINJA_FORMS_URL, 'datepicker_args' => apply_filters( 'ninja_forms_forms_display_datepicker_args', $datepicker_args ), 'currency_symbol' => $currency_symbol, 'date_format' => $date_format ) );
- $ninja_forms_display_localize_js = true;
- }
- wp_localize_script( 'ninja-forms-display','thousandsSeparator', addslashes( $wp_locale->number_format['thousands_sep'] ) );
- wp_localize_script( 'ninja-forms-display','decimalPoint', addslashes( $wp_locale->number_format['decimal_point'] ) );
- wp_localize_script( 'ninja-forms-display', 'ninja_forms_form_'.$form_id.'_settings', apply_filters( 'nf_form_js_settings', $ninja_forms_js_form_settings, $form_id ) );
- wp_localize_script( 'ninja-forms-display', 'ninja_forms_form_'.$form_id.'_calc_settings', $calc_settings );
- wp_localize_script( 'ninja-forms-display', 'ninja_forms_password_strength', array(
- 'empty' => __( 'Strength indicator', 'ninja-forms' ),
- 'short' => __( 'Very weak', 'ninja-forms' ),
- 'bad' => __( 'Weak', 'ninja-forms' ),
- /* translators: password strength */
- 'good' => _x( 'Medium', 'password strength', 'ninja-forms' ),
- 'strong' => __( 'Strong', 'ninja-forms' ),
- 'mismatch' => __( 'Mismatch', 'ninja-forms' )
- ) );
- }
- add_action( 'ninja_forms_display_js', 'ninja_forms_display_js', 10, 2 );
- function ninja_forms_display_css(){
- wp_enqueue_style( 'ninja-forms-display', NINJA_FORMS_URL .'css/ninja-forms-display.css?nf_ver=' . NF_PLUGIN_VERSION );
- wp_enqueue_style( 'jquery-qtip', NINJA_FORMS_URL .'css/qtip.css' );
- wp_enqueue_style( 'jquery-rating', NINJA_FORMS_URL .'css/jquery.rating.css' );
- }
- add_action( 'ninja_forms_display_css', 'ninja_forms_display_css', 10, 2 );
|