PATH:
home
/
lab2454c
/
archfort.com
/
wp-content
/
plugins
/
wp-user-frontend-pro
/
includes
<?php class WPUF_pro_render_form_element extends WPUF_Render_Form { /** * Prints a repeatable field * * @param array $attr * @param int|null $post_id */ public static function repeat( $attr, $post_id, $type, $form_id, $class, $obj) { $add = plugins_url( 'assets/images/add.png', WPUF_FILE ); $remove = plugins_url( 'assets/images/remove.png', WPUF_FILE ); ?> <div class="wpuf-fields <?php echo ' wpuf_'.$attr['name'].'_'.$form_id; ?>"> <?php if ( isset( $attr['multiple'] ) && '' != $attr['multiple'] ) { ?> <table> <thead> <tr> <?php $num_columns = count( $attr['columns'] ); foreach ($attr['columns'] as $column) { ?> <th> <?php echo $column; ?> </th> <?php } ?> <th style="visibility: hidden;"> Actions </th> </tr> </thead> <tbody> <?php $items = $post_id ? $obj->get_meta( $post_id, $attr['name'], $type, false ) : array(); if ( $items ) { foreach ($items as $item_val) { $column_vals = explode( self::$separator, $item_val ); ?> <tr> <?php for ($count = 0; $count < $num_columns; $count++) { ?> <td> <input type="text" name="<?php echo $attr['name'] . '[' . $count . ']'; ?>[]" value="<?php echo esc_attr( $column_vals[$count] ); ?>" size="<?php echo esc_attr( $attr['size'] ) ?>" data-required="<?php echo $attr['required'] ?>" data-type="text"<?php $obj->required_html5( $attr ); ?> /> </td> <?php } ?> <td> <img class="wpuf-clone-field" alt="<?php esc_attr_e( 'Add another', 'wpuf-pro' ); ?>" title="<?php esc_attr_e( 'Add another', 'wpuf-pro' ); ?>" src="<?php echo $add; ?>"> <img class="wpuf-remove-field" alt="<?php esc_attr_e( 'Remove this choice', 'wpuf-pro' ); ?>" title="<?php esc_attr_e( 'Remove this choice', 'wpuf-pro' ); ?>" src="<?php echo $remove; ?>"> </td> </tr> <?php } //endforeach ?> <?php } else { ?> <tr> <?php for ($count = 0; $count < $num_columns; $count++) { ?> <td> <input type="text" name="<?php echo $attr['name'] . '[' . $count . ']'; ?>[]" size="<?php echo esc_attr( $attr['size'] ) ?>" data-required="<?php echo $attr['required'] ?>" data-type="text"<?php $obj->required_html5( $attr ); ?> /> </td> <?php } ?> <td> <img class="wpuf-clone-field" alt="<?php esc_attr_e( 'Add another', 'wpuf-pro' ); ?>" title="<?php esc_attr_e( 'Add another', 'wpuf-pro' ); ?>" src="<?php echo $add; ?>"> <img class="wpuf-remove-field" alt="<?php esc_attr_e( 'Remove this choice', 'wpuf-pro' ); ?>" title="<?php esc_attr_e( 'Remove this choice', 'wpuf-pro' ); ?>" src="<?php echo $remove; ?>"> </td> </tr> <?php } ?> </tbody> </table> <?php } else { ?> <table> <?php $items = $post_id ? explode( self::$separator, $obj->get_meta( $post_id, $attr['name'], $type, true ) ) : array(); if ( $items ) { foreach ($items as $item) { ?> <tr> <td> <input id="wpuf-<?php echo $attr['name']; ?>" type="text" data-required="<?php echo $attr['required'] ?>" data-type="text"<?php $obj->required_html5( $attr ); ?> name="<?php echo esc_attr( $attr['name'] ); ?>[]" placeholder="<?php echo esc_attr( $attr['placeholder'] ); ?>" value="<?php echo esc_attr( $item ) ?>" size="<?php echo esc_attr( $attr['size'] ) ?>" /> </td> <td> <img style="cursor:pointer; margin:0 3px;" alt="add another choice" title="add another choice" class="wpuf-clone-field" src="<?php echo $add; ?>"> <img style="cursor:pointer;" class="wpuf-remove-field" alt="remove this choice" title="remove this choice" src="<?php echo $remove; ?>"> </td> </tr> <?php } //endforeach ?> <?php } else { ?> <tr> <td> <input id="wpuf-<?php echo $attr['name']; ?>" type="text" data-required="<?php echo $attr['required'] ?>" data-type="text"<?php $obj->required_html5( $attr ); ?> name="<?php echo esc_attr( $attr['name'] ); ?>[]" placeholder="<?php echo esc_attr( $attr['placeholder'] ); ?>" value="<?php echo esc_attr( $attr['default'] ) ?>" size="<?php echo esc_attr( $attr['size'] ) ?>" /> </td> <td> <img style="cursor:pointer; margin:0 3px;" alt="add another choice" title="add another choice" class="wpuf-clone-field" src="<?php echo $add; ?>"> <img style="cursor:pointer;" class="wpuf-remove-field" alt="remove this choice" title="remove this choice" src="<?php echo $remove; ?>"> </td> </tr> <?php } ?> </table> <?php } ?> <span class="wpuf-help"><?php echo stripslashes( $attr['help'] ); ?></span> </div> <?php } /** * Prints a date field * * @param array $attr * @param int|null $post_id */ public static function date( $attr, $post_id, $type, $form_id, $obj ) { $value = $post_id ? $obj->get_meta( $post_id, $attr['name'], $type, true ) : ''; ?> <?php // if date field is assigned as publish date if ( isset ( $attr['is_publish_time'] ) && $attr['is_publish_time'] == 'yes' ) { ?> <input type="hidden" name="wpuf_is_publish_time" value="<?php echo $attr['name']; ?>" /> <?php } ?> <div class="wpuf-fields"> <input id="wpuf-date-<?php echo $attr['name']; ?>" type="text" class="datepicker <?php echo ' wpuf_'.$attr['name'].'_'.$form_id; ?>" data-required="<?php echo $attr['required'] ?>" data-type="text"<?php $obj->required_html5( $attr ); ?> name="<?php echo esc_attr( $attr['name'] ); ?>" placeholder="<?php echo esc_attr( $attr['format'] ); ?>" value="<?php echo esc_attr( $value ) ?>" size="30" /> <span class="wpuf-help"><?php echo stripslashes( $attr['help'] ); ?></span> </div> <script type="text/javascript"> jQuery(function($) { <?php if ( !empty( $attr['mintime'] ) || !empty( $attr['maxtime'] ) ) { $maxtime = !empty( $attr['maxtime'] ) ? 'maxDate:' . $attr['maxtime'] : ''; $mintime = !empty( $attr['mintime'] ) ? 'minDate:' . $attr['mintime'] : ''; if ( $attr['time'] == 'yes' ) { ?> $("#wpuf-date-<?php echo $attr['name']; ?>").datetimepicker({ dateFormat: '<?php echo $attr["format"]; ?>', <?php echo $mintime ?>, <?php echo $maxtime ?> }); <?php } else { ?> $("#wpuf-date-<?php echo $attr['name']; ?>").datepicker({ dateFormat: '<?php echo $attr["format"]; ?>', <?php echo $mintime ?>, <?php echo $maxtime ?> }); <?php } } else { if ( $attr['time'] == 'yes' ) { ?> $("#wpuf-date-<?php echo $attr['name']; ?>").datetimepicker({ dateFormat: '<?php echo $attr["format"]; ?>' }); <?php } else { ?> $("#wpuf-date-<?php echo $attr['name']; ?>").datepicker({ dateFormat: '<?php echo $attr["format"]; ?>' }); <?php } } ?> }); </script> <?php } /** * Prints a file upload field * * @param array $attr * @param int|null $post_id */ public static function file_upload( $attr, $post_id, $type, $form_id, $obj ) { $allowed_ext = ''; $extensions = wpuf_allowed_extensions(); $unique_id = sprintf( '%s-%d', $attr['name'], $form_id ); if ( is_array( $attr['extension'] ) ) { foreach ($attr['extension'] as $ext) { $allowed_ext .= $extensions[$ext]['ext'] . ','; } } else { $allowed_ext = '*'; } $uploaded_items = $post_id ? $obj->get_meta( $post_id, $attr['name'], $type, false ) : array(); if ( $uploaded_items ) { if( is_serialized( $uploaded_items[0] ) ) { $uploaded_items = maybe_unserialize( $uploaded_items[0] ); } if ( is_array( $uploaded_items[0] ) ) { $uploaded_items = $uploaded_items[0]; } } ?> <div class="wpuf-fields"> <div id="wpuf-<?php echo $unique_id; ?>-upload-container"> <div class="wpuf-attachment-upload-filelist" data-type="file" data-required="<?php echo $attr['required']; ?>"> <a id="wpuf-<?php echo $unique_id; ?>-pickfiles" data-form_id="<?php echo $form_id; ?>" class="button file-selector <?php echo ' wpuf_'.$attr['name'].'_'.$form_id; ?>" href="#"><?php _e( 'Select File(s)', 'wpuf-pro' ); ?></a> <ul class="wpuf-attachment-list thumbnails"> <?php if ( $uploaded_items ) { foreach ($uploaded_items as $attach_id) { echo WPUF_Upload::attach_html( $attach_id, $attr['name'] ); if ( is_admin() ) { printf( '<a href="%s">%s</a>', wp_get_attachment_url( $attach_id ), __( 'Download File', 'wpuf-pro' ) ); } } } ?> </ul> </div> </div><!-- .container --> <span class="wpuf-help"><?php echo stripslashes( $attr['help'] ); ?></span> </div> <!-- .wpuf-fields --> <script type="text/javascript"> jQuery(function($) { var uploader = new WPUF_Uploader('wpuf-<?php echo $unique_id; ?>-pickfiles', 'wpuf-<?php echo $unique_id; ?>-upload-container', <?php echo $attr['count']; ?>, '<?php echo $attr['name']; ?>', '<?php echo $allowed_ext; ?>', <?php echo $attr['max_size'] ?>); wpuf_plupload_items.push(uploader); }); </script> <?php } /** * Prints a map field * * @param array $attr * @param int|null $post_id */ public static function map( $attr, $post_id, $type, $form_id, $classname, $obj ) { $value = $post_id ? $obj->get_meta( $post_id, $attr['name'], $type, true ) : ''; $type = $attr['show_lat'] == 'yes' ? 'text' : 'hidden'; $def_address = ''; if ( empty( $value ) ) { $value = ''; } if ( $post_id && is_array( $value ) ) { $def_address = isset( $value['address'] ) ? $value['address'] : ''; $def_lat = isset( $value['lat'] ) ? $value['lat'] : ''; $def_long = isset( $value['lng'] ) ? $value['lng'] : ''; $value = implode( ' || ', $value ); } elseif ( $post_id ) { list( $def_lat, $def_long ) = explode( ',', $value ); } else { list( $def_lat, $def_long ) = explode( ',', $attr['default_pos'] ); } ?> <div id="<?php echo 'wpuf_'.$attr['name'].'_'.$form_id; ?>" class="wpuf-fields <?php echo ' wpuf_'.$attr['name'].'_'.$form_id; ?>" > <div class="wpuf-form-google-map-container <?php echo ( $attr['address'] == 'yes' ) ? 'show-search-box' : 'hide-search-box'; ?>"> <input id="wpuf-map-lat-<?php echo $attr['name']; ?>" type="<?php echo $type; ?>" data-required="<?php echo $attr['required'] ?>" data-type="text" <?php $obj->required_html5( $attr ); ?> name="<?php echo esc_attr( $attr['name'] ); ?>" value="<?php echo esc_attr( $value ) ?>" size="30" /> <input class="wpuf-google-map-search" type="text" id="wpuf-map-add-<?php echo $attr['name']; ?>" placeholder="<?php _e( 'Search address', 'wpuf-pro' ); ?>" value="<?php echo esc_attr( $def_address ) ?>"> <div class="wpuf-form-google-map" id="wpuf-map-<?php echo $attr['name']; ?>"></div> </div> <span class="wpuf-help"><?php echo stripslashes( $attr['help'] ); ?></span> <?php if ( isset( $attr['directions'] ) && $attr['directions'] ) : ?> <div> <a class="btn btn-brand btn-sm" href="https://www.google.com/maps/dir/?api=1&destination=<?php echo $def_lat ? $def_lat : 40.7143528; ?>,<?php echo $def_long ? $def_long : -74.0059731; ?>" target="_blank" rel="nofollow external"><i class="fa fa-map-marker" aria-hidden="true"></i><?php _e( 'Directions »', 'wpuf-pro' ); ?></a> </div> <?php endif; ?> <script type="text/javascript"> (function($) { $(function() { var attr_name = '<?php echo $attr['name']; ?>', def_zoomval = <?php echo $attr['zoom'] ? $attr['zoom'] : null; ?>, def_latval = <?php echo $def_lat ? $def_lat : 0; ?>, def_longval = <?php echo $def_long ? $def_long : 0; ?>; var map_area = $('#wpuf-map-' + attr_name ), input_area = $( '#wpuf-map-lat-' + attr_name ), input_add = $( '#wpuf-map-add-' + attr_name ); var default_pos = {}, default_pos_str = def_latval + ', ' + def_longval, default_zoom = def_zoomval; if (isFinite(def_latval) && isFinite(def_longval)) { default_pos = {lat: parseFloat(def_latval), lng: parseFloat(def_longval)}; } else { default_pos = {lat: 40.7143528, lng: -74.0059731}; } var map = new google.maps.Map(map_area.get(0), { center: default_pos, zoom: parseInt(default_zoom) || 12, mapTypeId: 'roadmap', streetViewControl: false, }); var geocoder = new google.maps.Geocoder(); // Create the search box and link it to the UI element. var input = input_add.get(0); var searchBox = new google.maps.places.SearchBox(input); map.controls[google.maps.ControlPosition.TOP_LEFT].push(input); // Bias the SearchBox results towards current map's viewport. map.addListener('bounds_changed', function() { searchBox.setBounds(map.getBounds()); }); var markers = []; set_marker(default_pos_str); input.addEventListener('input', function () { set_marker(this.value); }); // Listen for the event fired when the user selects a prediction and retrieve // more details for that place. searchBox.addListener('places_changed', function() { var places = searchBox.getPlaces(); if (places.length === 0) { return; } // Clear out the old markers. markers.forEach(function (marker) { marker.setMap(null); }); markers = []; // For each place, get the icon, name and location. var bounds = new google.maps.LatLngBounds(); places.forEach(function (place) { if (!place.geometry) { console.log('Returned place contains no geometry'); return; } // Create a marker for each place. markers.push(new google.maps.Marker({ map: map, position: place.geometry.location })); updatePositionInput(place.geometry.location); if (place.geometry.viewport) { // Only geocodes have viewport. bounds.union(place.geometry.viewport); } else { bounds.extend(place.geometry.location); } }); map.fitBounds(bounds); }); map.addListener('click', function(e) { var latLng = e.latLng; // Clear out the old markers. markers.forEach(function (marker) { marker.setMap(null); }); markers = []; markers.push(new google.maps.Marker({ position: latLng, map: map })); updatePositionInput(latLng); map.panTo(latLng); }); map.addListener('zoom_changed', function () { var zoom = map.getZoom(); }); function set_marker(address) { geocoder.geocode({'address': address}, function(results, status) { if (status === 'OK') { // Clear out the old markers. markers.forEach(function (marker) { marker.setMap(null); }); markers = []; // Create a marker for each place. markers.push(new google.maps.Marker({ map: map, position: results[0].geometry.location })); map.setCenter(results[0].geometry.location); } }); } var firstEl = $('<button>', { title: 'My Location', css: { backgroundColor: '#fff', border: 'none', outline: 'none', width: '18px', height: '18px', borderRadius: '2px', boxShadow: '0 1px 4px rgba(0,0,0,0.3)', cursor: 'pointer', margin: '15px', padding: '0', float: 'right', zIndex: '999', backgroundImage: 'url(https://maps.gstatic.com/tactile/mylocation/mylocation-sprite-1x.png)', } }); var secondEl = $('.wpuf-form-google-map-container').append(firstEl); $(firstEl).on('click', function(ev) { if("geolocation" in navigator) { ev.preventDefault(); if ("geolocation" in navigator) { window.navigator.geolocation.getCurrentPosition(function(position) { set_marker( position.coords.latitude + ', ' + position.coords.longitude ); var latLng = {lat: parseFloat(position.coords.latitude), lng: parseFloat(position.coords.longitude)}; geocoder.geocode({'location': latLng}, function(results, status) { var formatted_address = ''; if ( status === 'OK' ) { var address = results[0]; formatted_address = address.formatted_address; } input_area.val( formatted_address + ' || ' + position.coords.latitude + ' || ' + position.coords.longitude ); }) }); } } }); function updatePositionInput( latLng ) { geocoder.geocode({'location': latLng}, function(results, status) { var formatted_address = ''; if ( status === 'OK' ) { var address = results[0]; formatted_address = address.formatted_address; } input_area.val( formatted_address + ' || ' + latLng.lat() + ' || ' + latLng.lng() ); }) } map.controls[google.maps.ControlPosition.RIGHT_BOTTOM].push(firstEl[0]); wpuf_map_items.push( { 'map' : map, 'center' : default_pos }); google.maps.event.addListener(map, 'click', function(event) { var latlng = event.latLng; geocoder.geocode({'location': latlng}, function( results, status ) { if (status === 'OK') { if (results[0]) { var city, state, zip, country_short, country_long; var arr = results[0].address_components; for (var i = 0 ; i < arr.length; i++) { if ( arr[i].types[0] == 'administrative_area_level_2' ) { city = arr[i].long_name; } else if ( arr[i].types[0] == 'administrative_area_level_1' ) { state = arr[i].long_name; } else if ( arr[i].types == 'postal_code' ) { zip = arr[i].long_name; } else if ( arr[i].types[0] == 'country' ) { country_short = arr[i].short_name; country_long = arr[i].long_name; } } var add = results[0].formatted_address.split(", "); jQuery( "input[name*='[street_address]']" ).val( add[0] ); jQuery( "input[name*='[city_name]']" ).val( city ); jQuery( "input[name*='[state]']" ).val( state ); jQuery( "input[name*='[zip]']" ).val( zip ); jQuery( "[name*='[country_select]'] option" ).filter( function() { return ( jQuery(this).text() == country_long ); }).prop('selected', true); } else { console.log('No results found'); } } else { console.log('Geocoder failed due to: ' + status); } }); }); }); })(jQuery); </script> </div> <?php } /** * Prints an Country List * * @param array $attr * @param int $post_id * @param string $type * @param @form_id */ public static function country_list( $attr, $post_id, $type = 'post', $form_id = null, $classname, $obj ){ $list_visibility_option = $attr['country_list']['country_list_visibility_opt_name']; $country_select_hide_list = isset( $attr['country_list']['country_select_hide_list'] ) && is_array( $attr['country_list']['country_select_hide_list'] )?$attr['country_list']['country_select_hide_list']:array(); $country_select_show_list = isset( $attr['country_list']['country_select_show_list'] ) && is_array( $attr['country_list']['country_select_show_list'] )?$attr['country_list']['country_select_show_list']:array(); if ( $obj->is_meta( $attr ) ) { $sel_val = $obj->get_meta( $post_id, $attr['name'], $type ); } $value = !empty( $sel_val ) ? $sel_val : ( isset( $attr['country_list']['name'] ) ? $attr['country_list']['name'] : '' ); ?> <div class="wpuf-fields"> <select name="<?php echo $attr['name']; ?>"> </select> <script> var field_name = '<?php echo $attr['name'];?>'; var countries = <?php echo wpuf_get_countries( 'json' ); ?>; var banned_countries = JSON.parse('<?php echo json_encode($country_select_hide_list); ?>'); var allowed_countries = JSON.parse('<?php echo json_encode($country_select_show_list); ?>'); var list_visibility_option = '<?php echo $list_visibility_option; ?>'; var sel_country = '<?php echo !empty( $value ) ? $value : '' ; ?>'; var option_string = '<option value=""><?php _e( "Select Country", "wpuf-pro" ); ?></option>'; if( list_visibility_option == 'hide' ) { for(country in countries){ if( jQuery.inArray(countries[country].code,banned_countries) != -1 ){ continue; } option_string = option_string + '<option value="'+ countries[country].code +'" ' + ( sel_country == countries[country].code ? 'selected':'' ) + ' >'+ countries[country].name +'</option>'; } }else if ( list_visibility_option == 'show' ) { for(country in countries){ if( jQuery.inArray(countries[country].code,allowed_countries) != -1 ){ option_string = option_string + '<option value="'+ countries[country].code +'" ' + ( sel_country == countries[country].code ? 'selected':'' ) + ' >'+ countries[country].name +'</option>'; } } }else { for (country in countries) { option_string = option_string + '<option value="'+ countries[country].code +'" ' + ( sel_country == countries[country].code ? 'selected':'' ) + ' >'+ countries[country].name +'</option>'; } } jQuery('select[name="'+ field_name +'"]').html(option_string); </script> </div> <?php } public static function numeric_text( $attr, $post_id, $type = 'post', $form_id = null, $classname, $obj ) { // checking for user profile username $username = false; $taxonomy = false; if ( $post_id ) { if ( $obj->is_meta( $attr ) ) { $value = $obj->get_meta( $post_id, $attr['name'], $type ); } else { // applicable for post tags if ( $type == 'post' && $attr['name'] == 'tags' ) { $post_tags = wp_get_post_tags( $post_id ); $tagsarray = array(); foreach ($post_tags as $tag) { $tagsarray[] = $tag->name; } $value = implode( ', ', $tagsarray ); $taxonomy = true; } elseif ( $type == 'post' ) { $value = get_post_field( $attr['name'], $post_id ); } elseif ( $type == 'user' ) { $value = get_user_by( 'id', $post_id )->$attr['name']; if ( $attr['name'] == 'user_login' ) { $username = true; } } } } else { $value = $attr['default']; if ( $type == 'post' && $attr['name'] == 'tags' ) { $taxonomy = true; } } ?> <div class="wpuf-fields wpuf-numeric_text_holder"> <input class="textfield<?php echo $obj->required_class( $attr ); echo ' wpuf_'.$attr['name'].'_'.$form_id; ?>" id="<?php echo $numeric_field_id = $attr['name']; ?>" type="number" min="<?php echo $attr['min_value_field'];?>" max="<?php echo $attr['max_value_field'] == 0 ? '' : $attr['max_value_field']; ?>" step="<?php echo $attr['step_text_field']; ?>" data-required="<?php echo $attr['required'] ?>" data-type="text"<?php $obj->required_html5( $attr ); ?> name="<?php echo esc_attr( $attr['name'] ); ?>" placeholder="<?php echo esc_attr( $attr['placeholder'] ); ?>" value="<?php echo esc_attr( $value ) ?>" size="<?php echo esc_attr( $attr['size'] ) ?>" <?php echo $username ? 'disabled' : ''; ?> /> <span class="wpuf-help"><?php echo stripslashes( $attr['help'] ); ?></span> <script> jQuery(function($) { $("#<?php echo $numeric_field_id;?>").keydown(function (e) { // Allow: backspace, delete, tab, escape, minus enter and . backspace = 8,delete=46,tab=9,enter=13,.=190,escape=27, minus = 189 if ($.inArray(e.keyCode, [46, 8, 9, 27, 13, 110, 190, 189]) !== -1 || // Allow: Ctrl+A (e.keyCode == 65 && e.ctrlKey === true) || // Allow: home, end, left, right, down, up (e.keyCode >= 35 && e.keyCode <= 40)) { // let it happen, don't do anything return; } // Ensure that it is a number and stop the keypress if ((e.shiftKey || (e.keyCode < 48 || e.keyCode > 57)) && (e.keyCode < 96 || e.keyCode > 105)) { e.preventDefault(); } }); }); </script> <?php if ( $taxonomy ) { ?> <script type="text/javascript"> jQuery(function($) { $('li.tags input[name=tags]').suggest( wpuf_frontend.ajaxurl + '?action=ajax-tag-search&tax=post_tag', { delay: 500, minchars: 2, multiple: true, multipleSep: ', ' } ); }); </script> <?php } ?> </div> <?php } /** * Prints an address field * * @param array $attr * @param int $post_id * @param string $type * @param @form_id */ public static function address_field( $attr, $post_id, $type = 'post', $form_id = null, $classname, $obj ){ // checking for user profile username $username = false; $taxonomy = false; if ( $post_id ) { if ( $obj->is_meta( $attr ) ) { $value = $obj->get_meta( $post_id, $attr['name'], $type ); } else { // applicable for post tags if ( $type == 'post' && $attr['name'] == 'tags' ) { $post_tags = wp_get_post_tags( $post_id ); $tagsarray = array(); foreach ($post_tags as $tag) { $tagsarray[] = $tag->name; } $value = implode( ', ', $tagsarray ); $taxonomy = true; } elseif ( $type == 'post' ) { $value = get_post_field( $attr['name'], $post_id ); } elseif ( $type == 'user' ) { $value = get_user_by( 'id', $post_id )->$attr['name']; if ( $attr['name'] == 'user_login' ) { $username = true; } } } } else { //$value = $attr['default']; if ( $type == 'post' && $attr['name'] == 'tags' ) { $taxonomy = true; } } ?> <div class="wpuf-fields"> <?php $address_fields_meta = isset( $value ) ? $value : array(); $country_select_hide_list = isset( $attr['address']['country_select']['country_select_hide_list'] ) ? $attr['address']['country_select']['country_select_hide_list'] : array(); $country_select_show_list = isset( $attr['address']['country_select']['country_select_show_list'] ) ? $attr['address']['country_select']['country_select_show_list'] : array(); $list_visibility_option = $attr['address']['country_select']['country_list_visibility_opt_name']; foreach( $attr['address'] as $each_field => $field_array ) { ?> <div class="wpuf-address-field <?php echo $each_field; ?>"> <?php if ( isset( $field_array['checked'] ) && !empty( $field_array['checked'] ) ) { ?> <div class="wpuf-sub-fields"> <?php if ( in_array($field_array['type'], array( 'text', 'hidden', 'email', 'password') ) ) { ?> <input type="<?php echo $field_array['type']; ?>" name="<?php echo $attr['name'] . '[' . $each_field . ']'; ?>" value="<?php echo isset( $address_fields_meta[$each_field] )?esc_attr($address_fields_meta[$each_field]):$field_array['value']; ?>" placeholder="<?php echo $field_array['placeholder']?>" class="textfield" size="40" <?php echo isset( $field_array['required'] ) && !empty( $field_array['required'] ) ? 'required' : ''; ?> /> <?php } elseif ( in_array($field_array['type'],array('textarea','select') ) ) { echo '<'.$field_array['type'].' name="'. $attr['name'] . '[' . $each_field . ']' . '" '.( isset( $field_array['required'] ) && !empty( $field_array['required'] ) ? 'required' : '').'>'; echo '</'.$field_array['type'].'>'; if ( $each_field == 'country_select' ) { $address_fields_meta['country_select'] = isset($address_fields_meta['country_select'])?$address_fields_meta['country_select']:$field_array['value']; ?> <script> var field_name = '<?php echo $attr['name'] . '[' . $each_field . ']' ; ?>'; var countries = <?php echo wpuf_get_countries( 'json' ); ?>; var banned_countries = JSON.parse('<?php echo json_encode( $country_select_hide_list ) ?>'); var allowed_countries = JSON.parse('<?php echo json_encode( $country_select_show_list ); ?>'); var list_visibility_option = '<?php echo $list_visibility_option; ?>'; var option_string = '<option value=""><?php _e( "Select Country", "wpuf-pro" ); ?></option>'; var sel_country = '<?php echo isset($address_fields_meta['country_select'])?$address_fields_meta['country_select']:''; ?>'; if ( list_visibility_option == 'hide' ) { for (country in countries){ if ( jQuery.inArray(countries[country].code,banned_countries) != -1 ){ continue; } option_string = option_string + '<option value="'+ countries[country].code +'" ' + ( sel_country == countries[country].code ? 'selected':'' ) + ' >'+ countries[country].name +'</option>'; } } else if( list_visibility_option == 'show' ) { for (country in countries){ if ( jQuery.inArray(countries[country].code,allowed_countries) != -1 ) { option_string = option_string + '<option value="'+ countries[country].code +'" ' + ( sel_country == countries[country].code ? 'selected':'' ) + ' >'+ countries[country].name +'</option>'; } } } else { for (country in countries){ option_string = option_string + '<option value="'+ countries[country].code +'" ' + ( sel_country == countries[country].code ? 'selected':'' ) + ' >'+ countries[country].name +'</option>'; } } jQuery('select[name="'+ field_name +'"]').html(option_string); </script> <?php } } ?> </div> <label class="wpuf-form-sub-label"> <?php echo $field_array['label']; ?> <span class="required"><?php echo ( isset( $field_array['required'] ) && !empty($field_array['required']) ) ? '*' : ''; ?></span> </label> <?php } ?> </div> <?php } ?> <div class="clear"></div> <span class="wpuf-help"><?php echo stripslashes( $attr['help'] ); ?></span> </div> <?php } /** * fieldset start * @param $attr * @param $post_id * @param string $type * @param null $form_id */ public static function step_start( $attr, $post_id, $type = 'post', $form_id = null, $multiform_start, $enable_multistep, $obj ) { if ( $obj->multiform_start == 1 && !empty( $obj->multiform_start ) ) { ?> </fieldset> <?php } else{ $obj->multiform_start = 1; } if ( !empty( $enable_multistep ) ) { ?> <fieldset class="wpuf-multistep-fieldset"> <legend> <?php echo $attr['label'];?> </legend> <button class="wpuf-multistep-prev-btn btn btn-primary"><?php echo $attr['step_start']['prev_button_text']; ?></button> <button class="wpuf-multistep-next-btn btn btn-primary"><?php echo $attr['step_start']['next_button_text']; ?></button> <?php } //return $obj->multiform_start; } /** * Shortcode field * * @param array $attr */ public static function shortcode( $attr, $form_id ) { // Need to check if it is wpuf shortcode ?> <div class="wpuf-fields <?php echo ' wpuf_'.$attr['name'].'_'.$form_id; ?>"> <?php echo do_shortcode( $attr['shortcode'] ); ?> </div> <?php } /** * Prints really simple captcha * * @param array $attr * @param int|null $post_id */ public static function really_simple_captcha( $attr, $post_id, $form_id ) { if ( $post_id ) { return; } if ( !class_exists( 'ReallySimpleCaptcha' ) ) { ?> <div class="wpuf-fields <?php echo ' wpuf_'.$attr['name'].'_'.$form_id; ?>"> <?php _e( 'Error: Really Simple Captcha plugin not found!', 'wpuf-pro' ); ?> </div> <?php return; } $captcha_instance = new ReallySimpleCaptcha(); $word = $captcha_instance->generate_random_word(); $prefix = mt_rand(); $image_num = $captcha_instance->generate_image( $prefix, $word ); ?> <div class="wpuf-fields <?php echo ' wpuf_'.$attr['name'].'_'.$form_id; ?>"> <img src="<?php echo plugins_url( 'really-simple-captcha/tmp/' . $image_num ); ?>" alt="Captcha" /> <input type="text" name="rs_captcha" value="" /> <input type="hidden" name="rs_captcha_val" value="<?php echo $prefix; ?>" /> </div> <?php } /** * Prints a action hook * * @param array $attr * @param int $form_id * @param int|null $post_id * @param array $form_settings */ public static function action_hook( $attr, $form_id, $post_id, $form_settings ) { if ( !empty( $attr['label'] ) ) { do_action( $attr['label'], $form_id, $post_id, $form_settings ); } } /** * Prints a HTML field * * @param array $attr */ public static function toc( $attr, $post_id, $form_id ) { if ( $post_id ) { return; } ?> <div class="wpuf-label"> </div> <div data-required="<?php echo $attr['show_checkbox'] ? 'yes' : 'no' ?>" data-type="radio" class="wpuf-fields <?php echo ' wpuf_'.$attr['name'].'_'.$form_id; ?>"> <!-- <textarea rows="10" cols="40" disabled="disabled" name="toc"></textarea> --> <label> <?php if ( isset( $attr['show_checkbox'] ) && $attr['show_checkbox'] ) : ?> <input type="checkbox" name="wpuf_accept_toc" required="required" /> <?php endif; ?> <?php echo $attr['description']; ?> </label> </div> <?php } /** * @param $attr * @param $post_id * @param $form_id */ public static function ratings( $attr, $post_id, $form_id ) { $value = $post_id ? get_post_meta( $post_id, $attr['name'], true ) : ''; ?> <select name="<?php echo $attr['name']; ?>" class="wpuf-ratings"> <?php foreach( $attr['options'] as $key => $option ) : ?> <option value="<?php echo $option; ?>" <?php echo $option == $value ? 'selected' : '' ; ?> ><?php echo $option; ?></option> <?php endforeach; ?> </select> <script type="text/javascript"> jQuery(function($) { $('.wpuf-ratings').barrating({ theme: 'css-stars' }); $(document).ready(function() { if ( $(".wpuf-form-add :input[name=submit]").val() !== 'Update' ) { $(".br-widget a").removeClass('br-selected'); } }); }); </script> <?php } }
[-] class-events-plugins-integration.php
[edit]
[-] profile-form.php
[edit]
[-] content-restriction.php
[edit]
[-] class-content-filter.php
[edit]
[+]
..
[-] class-customizer-options.php
[edit]
[-] tax-functions.php
[edit]
[-] class-taxonomy-restriction.php
[edit]
[-] class-frontend-account.php
[edit]
[-] modules.php
[edit]
[-] class-render-form.php
[edit]
[+]
post-form-templates
[-] updates.php
[edit]
[-] coupons.php
[edit]
[-] class-invoice.php
[edit]
[-] class-modules.php
[edit]
[-] class-fields-manager.php
[edit]
[+]
libs
[-] class-subscription.php
[edit]
[-] class-menu-restriction.php
[edit]
[+]
templates
[-] frontend-form-profile.php
[edit]
[-] class-invoice-frontend.php
[edit]
[-] form.php
[edit]
[-] class-whats-new.php
[edit]
[-] render-form.php
[edit]
[+]
profile-form-templates
[-] class-tax.php
[edit]
[+]
fields
[-] form-element.php
[edit]
[-] class-new-user-approve.php
[edit]