Contact Form for WordPress – Ultimate Form Builder Lite - Version 1.2.4

Version Description

  • Added ufbl_time_format filter for time format change
Download this release

Release Info

Developer Access Keys
Plugin Icon 128x128 Contact Form for WordPress – Ultimate Form Builder Lite
Version 1.2.4
Comparing to
See all releases

Code changes from version 1.2.3 to 1.2.4

inc/views/backend/entry-detail.php CHANGED
@@ -16,7 +16,7 @@
16
  ?>
17
  <div class="ufbl-entry-field-wrap <?php echo ($field_count % 2 == 0) ? 'ufbl-entry-even' : ''; ?>">
18
  <label><?php _e( 'Entry Posted Date', 'ultimate-form-builder-lite' ); ?></label>
19
- <div class="ufbl-entry-value"><?php echo esc_attr( $entry_row['entry_created'] ); ?></div>
20
  </div>
21
  <?php
22
  foreach ( $field_data as $field_key => $field_settings ) {
16
  ?>
17
  <div class="ufbl-entry-field-wrap <?php echo ($field_count % 2 == 0) ? 'ufbl-entry-even' : ''; ?>">
18
  <label><?php _e( 'Entry Posted Date', 'ultimate-form-builder-lite' ); ?></label>
19
+ <div class="ufbl-entry-value"><?php echo date( apply_filters('ufbl_time_format','h:i:s A M jS, Y '), strtotime( $entry_row['entry_created'] ) ); ?></div>
20
  </div>
21
  <?php
22
  foreach ( $field_data as $field_key => $field_settings ) {
inc/views/backend/form-entries-list.php CHANGED
@@ -131,7 +131,7 @@
131
  </div>
132
  </div>
133
  </td>
134
- <td class="shortcode column-shortcode"><?php echo date( 'h:i:s A M jS, Y ', strtotime( $form_entry_row['entry_created'] ) ); ?></td>
135
  </tr>
136
  <?php
137
  $form_counter++;
131
  </div>
132
  </div>
133
  </td>
134
+ <td class="shortcode column-shortcode"><?php echo date( apply_filters('ufbl_time_format','h:i:s A M jS, Y '), strtotime( $form_entry_row['entry_created'] ) ); ?></td>
135
  </tr>
136
  <?php
137
  $form_counter++;
inc/views/backend/form-list.php CHANGED
@@ -76,7 +76,7 @@ defined( 'ABSPATH' ) or die( 'No script kiddies please!' );
76
  </div>
77
  </td>
78
  <td class="shortcode column-shortcode"><input type="text" onFocus="this.select();" readonly="readonly" value="[ufbl form_id=&quot;<?php echo $form->form_id; ?>&quot;]" class="shortcode-in-list-table wp-ui-text-highlight code"></td>
79
- <td class="shortcode column-shortcode"><?php echo date( 'h:i:s A M jS, Y ', strtotime( $form->form_modified ) ); ?></td>
80
  <td class="shortcode column-shortcode ufbl-relative">
81
  <div class="onoffswitch">
82
  <input type="checkbox" name="onoffswitch" class="onoffswitch-checkbox" id="myonoffswitch-<?php echo $form->form_id; ?>" <?php checked( $form->form_status, true ); ?> style="display:none;">
76
  </div>
77
  </td>
78
  <td class="shortcode column-shortcode"><input type="text" onFocus="this.select();" readonly="readonly" value="[ufbl form_id=&quot;<?php echo $form->form_id; ?>&quot;]" class="shortcode-in-list-table wp-ui-text-highlight code"></td>
79
+ <td class="shortcode column-shortcode"><?php echo date( apply_filters('ufbl_time_format','h:i:s A M jS, Y '), strtotime( $form->form_modified ) ); ?></td>
80
  <td class="shortcode column-shortcode ufbl-relative">
81
  <div class="onoffswitch">
82
  <input type="checkbox" name="onoffswitch" class="onoffswitch-checkbox" id="myonoffswitch-<?php echo $form->form_id; ?>" <?php checked( $form->form_status, true ); ?> style="display:none;">
readme.txt CHANGED
@@ -2,9 +2,9 @@
2
  Contributors: Access Keys
3
  Tags: contact form, form builder, form, forms, contact forms, enquiry forms, form manager, email form, lead form, email, database store form, form entry, form entries, email forms
4
  Donate link: http://accesspressthemes.com/donation/
5
- Requires at least: 3.8
6
- Tested up to: 4.5
7
- Stable tag: 1.2.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -146,6 +146,9 @@ Once you install the plugin , you can check some general documentation about how
146
  10. Backend Entry Detail
147
 
148
  == Changelog ==
 
 
 
149
  = 1.2.3 =
150
  * Added ufbl_form_template_count filter
151
  * Updated trasnlation ready text for some missing text
2
  Contributors: Access Keys
3
  Tags: contact form, form builder, form, forms, contact forms, enquiry forms, form manager, email form, lead form, email, database store form, form entry, form entries, email forms
4
  Donate link: http://accesspressthemes.com/donation/
5
+ Requires at least: 4.0
6
+ Tested up to: 4.6
7
+ Stable tag: 1.2.4
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
146
  10. Backend Entry Detail
147
 
148
  == Changelog ==
149
+ = 1.2.4 =
150
+ * Added ufbl_time_format filter for time format change
151
+
152
  = 1.2.3 =
153
  * Added ufbl_form_template_count filter
154
  * Updated trasnlation ready text for some missing text
ultimate-form-builder-lite.php CHANGED
@@ -6,7 +6,7 @@ defined( 'ABSPATH' ) or die( 'No script kiddies please!' );
6
  Plugin Name: Ultimate Form Builder Lite
7
  Plugin URI: https://accesspressthemes.com/wordpress-plugins/ultimate-form-builder-lite/
8
  Description: A plugin to build any type of forms
9
- Version: 1.2.3
10
  Author: AccessPress Themes
11
  Author URI: http://accesspressthemes.com
12
  License: GPL2
@@ -19,7 +19,7 @@ defined( 'ABSPATH' ) or die( 'No script kiddies please!' );
19
  * Necessary Constants for plugin
20
  */
21
  global $wpdb;
22
- defined( 'UFBL_VERSION' ) or define( 'UFBL_VERSION', '1.2.3' ); //plugin version
23
  defined( 'UFBL_SLUG' ) or define( 'UFBL_SLUG', 'ufbl' ); //plugin admin slug
24
  defined( 'UFBL_TD' ) or define( 'UFBL_TD', 'ultimate-form-builder-lite' ); //plugin's text domain
25
  defined( 'UFBL_IMG_DIR' ) or define( 'UFBL_IMG_DIR', plugin_dir_url( __FILE__ ) . 'images' ); //plugin image directory
6
  Plugin Name: Ultimate Form Builder Lite
7
  Plugin URI: https://accesspressthemes.com/wordpress-plugins/ultimate-form-builder-lite/
8
  Description: A plugin to build any type of forms
9
+ Version: 1.2.4
10
  Author: AccessPress Themes
11
  Author URI: http://accesspressthemes.com
12
  License: GPL2
19
  * Necessary Constants for plugin
20
  */
21
  global $wpdb;
22
+ defined( 'UFBL_VERSION' ) or define( 'UFBL_VERSION', '1.2.4' ); //plugin version
23
  defined( 'UFBL_SLUG' ) or define( 'UFBL_SLUG', 'ufbl' ); //plugin admin slug
24
  defined( 'UFBL_TD' ) or define( 'UFBL_TD', 'ultimate-form-builder-lite' ); //plugin's text domain
25
  defined( 'UFBL_IMG_DIR' ) or define( 'UFBL_IMG_DIR', plugin_dir_url( __FILE__ ) . 'images' ); //plugin image directory