Changeset 867417
- Timestamp:
- 03/01/2014 08:58:43 AM (12 years ago)
- Location:
- contact-form-7-datepicker/trunk
- Files:
-
- 2 deleted
- 6 edited
-
admin.php (modified) (1 diff)
-
contact-form-7-datepicker.php (modified) (1 diff)
-
date-tag-generator.php (deleted)
-
datepicker.php (deleted)
-
modules/date.php (modified) (2 diffs)
-
modules/datetime.php (modified) (2 diffs)
-
modules/time.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
contact-form-7-datepicker/trunk/admin.php
r801560 r867417 175 175 176 176 private static function is_wpcf7_page() { 177 global $current_screen ;177 global $current_screen, $pagenow; 178 178 179 if (is_object($current_screen) && 'toplevel_page_wpcf7' == $current_screen->id)179 if (is_object($current_screen) && strpos($current_screen->id, 'page_wpcf7')) 180 180 return true; 181 181 -
contact-form-7-datepicker/trunk/contact-form-7-datepicker.php
r820497 r867417 5 5 Description: Easily add a date field using jQuery UI's datepicker to your CF7 forms. This plugin depends on Contact Form 7. 6 6 Author: Aurel Canciu 7 Version: 2.4. 37 Version: 2.4.4 8 8 Author URI: https://github.com/relu/ 9 9 */ -
contact-form-7-datepicker/trunk/modules/date.php
r820500 r867417 20 20 21 21 // Tag generator 22 add_action('load-contact_page_wpcf7-new', array(__CLASS__, 'tag_generator')); 22 23 add_action('load-toplevel_page_wpcf7', array(__CLASS__, 'tag_generator')); 23 24 … … 130 131 131 132 public static function tag_generator() { 133 if (! function_exists( 'wpcf7_add_tag_generator')) 134 return; 135 132 136 wpcf7_add_tag_generator('date', 133 137 __('Date field', 'wpcf7'), -
contact-form-7-datepicker/trunk/modules/datetime.php
r820500 r867417 14 14 15 15 // Tag generator 16 add_action('load-contact_page_wpcf7-new', array(__CLASS__, 'tag_generator')); 16 17 add_action('load-toplevel_page_wpcf7', array(__CLASS__, 'tag_generator')); 17 18 … … 135 136 136 137 public static function tag_generator() { 138 if (! function_exists( 'wpcf7_add_tag_generator')) 139 return; 140 137 141 wpcf7_add_tag_generator('datetime', 138 142 __('Date Time field', 'wpcf7'), -
contact-form-7-datepicker/trunk/modules/time.php
r820500 r867417 15 15 16 16 // Tag generator 17 add_action('load-contact_page_wpcf7-new', array(__CLASS__, 'tag_generator')); 17 18 add_action('load-toplevel_page_wpcf7', array(__CLASS__, 'tag_generator')); 18 19 … … 130 131 131 132 public static function tag_generator() { 133 if (! function_exists( 'wpcf7_add_tag_generator')) 134 return; 135 132 136 wpcf7_add_tag_generator('time', 133 137 __('Time field', 'wpcf7'), -
contact-form-7-datepicker/trunk/readme.txt
r820497 r867417 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: 3.8 6 Stable tag: 2.4. 35 Tested up to: 3.8.1 6 Stable tag: 2.4.4 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.4.4 = 37 * Compatible with CF7 3.7.2 35 38 36 39 = 2.4.3 =
Note: See TracChangeset
for help on using the changeset viewer.