Changeset 1577526
- Timestamp:
- 01/18/2017 07:45:29 PM (9 years ago)
- Location:
- contact-form-7-datepicker/trunk
- Files:
-
- 1 added
- 4 edited
-
js/jquery-ui-timepicker/i18n/jquery-ui-timepicker-bs.js (added)
-
modules/date.php (modified) (1 diff)
-
modules/datetime.php (modified) (1 diff)
-
modules/time.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
contact-form-7-datepicker/trunk/modules/date.php
r1376157 r1577526 144 144 145 145 public static function add_shortcodes() { 146 if (function_exists('wpcf7_add_ shortcode')) {146 if (function_exists('wpcf7_add_form_tag')) { 147 147 // Remove Contact Form 7's date module 148 148 wpcf7_remove_shortcode('date'); 149 149 wpcf7_remove_shortcode('date*'); 150 150 151 wpcf7_add_ shortcode(array('date', 'date*'), array(__CLASS__, 'shortcode_handler'), true);151 wpcf7_add_form_tag(array('date', 'date*'), array(__CLASS__, 'shortcode_handler'), true); 152 152 } 153 153 } -
contact-form-7-datepicker/trunk/modules/datetime.php
r1376157 r1577526 149 149 150 150 public static function add_shortcodes() { 151 if (function_exists('wpcf7_add_ shortcode')) {152 wpcf7_add_ shortcode(array('datetime', 'datetime*'), array(__CLASS__, 'shortcode_handler'), true);151 if (function_exists('wpcf7_add_form_tag')) { 152 wpcf7_add_form_tag(array('datetime', 'datetime*'), array(__CLASS__, 'shortcode_handler'), true); 153 153 } 154 154 } -
contact-form-7-datepicker/trunk/modules/time.php
r1376157 r1577526 144 144 145 145 public static function add_shortcodes() { 146 if (function_exists('wpcf7_add_ shortcode')) {147 wpcf7_add_ shortcode(array('time', 'time*'), array(__CLASS__, 'shortcode_handler'), true);146 if (function_exists('wpcf7_add_form_tag')) { 147 wpcf7_add_form_tag(array('time', 'time*'), array(__CLASS__, 'shortcode_handler'), true); 148 148 } 149 149 } -
contact-form-7-datepicker/trunk/readme.txt
r1376157 r1577526 1 1 === Plugin Name === 2 Contributors: shockware, baden03, szepe.viktor, xsonic 2 Contributors: shockware, baden03, szepe.viktor, xsonic, sanidm, imelgrat 3 3 Tags: wordpress, datepicker, timepicker, date, time, calendar, contact form 7, forms, jqueryui 4 4 Requires at least: 3.6.1 5 Tested up to: 4. 4.26 Stable tag: 2. 5.25 Tested up to: 4.7.1 6 Stable tag: 2.6.0 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 33 33 34 34 == Changelog == 35 36 = 2.6.0 = 37 * Compatibility with CF7 4.6, replace deprecated calls (imelgrat) 38 * Add bosnian translation for timepicker (sanidm) 35 39 36 40 = 2.5.2 =
Note: See TracChangeset
for help on using the changeset viewer.