Countdown Timer – Widget Countdown - Version 1.8.4

Version Description

Download this release

Release Info

Developer wpdevart
Plugin Icon 128x128 Countdown Timer – Widget Countdown
Version 1.8.4
Comparing to
See all releases

Code changes from version 1.8.3 to 1.8.4

includes/admin_menu.php CHANGED
@@ -239,7 +239,7 @@ class wpdevart_countdown_admin_menu{
239
  </tr>
240
  <tr class="tr_circle">
241
  <td>
242
- Countdown timer Size <span class="pro_feature"> (pro)</span> <span title="Type the Countdown size." class="desription_class">?</span>
243
  </td>
244
  <td>
245
  <input onClick="alert(countdown_pro_text)" type="text" name="countdown_circle_size" id="countdown_circle_size" value="130">(Px)
@@ -293,7 +293,7 @@ class wpdevart_countdown_admin_menu{
293
  <tr>
294
  <td colspan="2">
295
  <div style="display:inline-block; float:left;" class="mceActionPanel"><input type="button" id="cancel" name="cancel" value="Insert Countdown" class="button button-primary" onClick="insert_countdown();"/></div>
296
- <span style="float:right"><a href="http://wpdevart.com/wordpress-countdown-plugin/" target="_blank" style="color: rgba(10, 154, 62, 1);; font-weight: bold; font-size: 18px; text-decoration: none;">Upgrade to Pro Version</a><br></span>
297
  </td>
298
  </tr>
299
  </tfoot>
239
  </tr>
240
  <tr class="tr_circle">
241
  <td>
242
+ Countdown timer size <span class="pro_feature"> (pro)</span> <span title="Type the Countdown size." class="desription_class">?</span>
243
  </td>
244
  <td>
245
  <input onClick="alert(countdown_pro_text)" type="text" name="countdown_circle_size" id="countdown_circle_size" value="130">(Px)
293
  <tr>
294
  <td colspan="2">
295
  <div style="display:inline-block; float:left;" class="mceActionPanel"><input type="button" id="cancel" name="cancel" value="Insert Countdown" class="button button-primary" onClick="insert_countdown();"/></div>
296
+ <span style="float:right"><a href="http://wpdevart.com/wordpress-countdown-plugin" target="_blank" style="color: rgba(10, 154, 62, 1);; font-weight: bold; font-size: 18px; text-decoration: none;">Upgrade to Pro Version</a><br></span>
297
  </td>
298
  </tr>
299
  </tfoot>
includes/library.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
 
3
- /*############################### LIBRARY CODE PART ###############################################*/
4
 
5
  class wpdevart_countdown_setting{
6
  public static $list_of_animations=array('bounce','flash','pulse','rubberBand','shake','swing','tada','wobble','bounceIn','bounceInDown','bounceInLeft','bounceInRight','bounceInUp','fadeIn','fadeInDown','fadeInDownBig','fadeInLeft','fadeInLeftBig','fadeInRight','fadeInRightBig','fadeInUp','fadeInUpBig','flip','flipInX','flipInY','lightSpeedIn','rotateIn','rotateInDownLeft','rotateInDownRight','rotateInUpLeft','rotateInUpRight','rollIn','zoomIn','zoomInDown','zoomInLeft','zoomInRight','zoomInUp');
@@ -128,7 +128,7 @@ class wpdevart_countdown_setting{
128
 
129
  }
130
 
131
- /*############################### STATIC COLOR FUNCTION #######################################*/
132
 
133
  public static function darkest_brigths($color,$pracent){
134
  $new_color=$color;
1
  <?php
2
 
3
+ /*############################### LIBRARY CODE ###############################################*/
4
 
5
  class wpdevart_countdown_setting{
6
  public static $list_of_animations=array('bounce','flash','pulse','rubberBand','shake','swing','tada','wobble','bounceIn','bounceInDown','bounceInLeft','bounceInRight','bounceInUp','fadeIn','fadeInDown','fadeInDownBig','fadeInLeft','fadeInLeftBig','fadeInRight','fadeInRightBig','fadeInUp','fadeInUpBig','flip','flipInX','flipInY','lightSpeedIn','rotateIn','rotateInDownLeft','rotateInDownRight','rotateInUpLeft','rotateInUpRight','rollIn','zoomIn','zoomInDown','zoomInLeft','zoomInRight','zoomInUp');
128
 
129
  }
130
 
131
+ /*############################### THEME COLOR FUNCTION #######################################*/
132
 
133
  public static function darkest_brigths($color,$pracent){
134
  $new_color=$color;
includes/style/effects.css CHANGED
@@ -1,3 +1,4 @@
 
1
  .animated {
2
  -webkit-animation-duration: 1s;
3
  animation-duration: 1s;
1
+ /*Countdown Animation Effects Style*/
2
  .animated {
3
  -webkit-animation-duration: 1s;
4
  animation-duration: 1s;
includes/style/jquery-ui-style.css CHANGED
@@ -271,6 +271,7 @@ button.ui-button::-moz-focus-inner {
271
  .ui-datepicker select.ui-datepicker-year {
272
  width: 45%;
273
  }
 
274
  .ui-datepicker table {
275
  width: 100%;
276
  font-size: .9em;
271
  .ui-datepicker select.ui-datepicker-year {
272
  width: 45%;
273
  }
274
+ /*Countdown datepicker table style*/
275
  .ui-datepicker table {
276
  width: 100%;
277
  font-size: .9em;
includes/widget.php CHANGED
@@ -168,7 +168,7 @@ class wpdevart_countdown extends WP_Widget {
168
  </p>
169
 
170
  <p class="flb_field">
171
- <label>After Countdown expired: </label>
172
  <br>
173
  <select id="<?php echo $this->get_field_id('action_end_time'); ?>" name="<?php echo $this->get_field_name('action_end_time'); ?>">
174
  <option <?php selected('show_text',$instance['action_end_time']) ?> value="show_text">Show text</option>
@@ -231,7 +231,7 @@ class wpdevart_countdown extends WP_Widget {
231
  </p>
232
 
233
  <p class="flb_field tr_circle">
234
- <label >Countdown timer Size:<span class="pro_feature"> (pro)</span></label>
235
  <br>
236
  <input onClick="alert(countdown_pro_text)" type="text" value="50" class="widefat">(Px)
237
  </p>
168
  </p>
169
 
170
  <p class="flb_field">
171
+ <label>After Countdown expire: </label>
172
  <br>
173
  <select id="<?php echo $this->get_field_id('action_end_time'); ?>" name="<?php echo $this->get_field_name('action_end_time'); ?>">
174
  <option <?php selected('show_text',$instance['action_end_time']) ?> value="show_text">Show text</option>
231
  </p>
232
 
233
  <p class="flb_field tr_circle">
234
+ <label >Countdown timer size:<span class="pro_feature"> (pro)</span></label>
235
  <br>
236
  <input onClick="alert(countdown_pro_text)" type="text" value="50" class="widefat">(Px)
237
  </p>
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://wpdevart.com/wordpress-countdown-plugin
4
  Tags: countdown, count down, countdown timer, jQuery countdown, countdown generator, animated countdown, countdown widget, timer, countdown clock, wp countdown timer, event countdown, widget countdown, clock, countdown timer plugin, wordpress countdown, html5 countdown, wp countdown, countdown timer widget, website countdown, date countdown, flash countdown, time counter, countdown system
5
  Requires at least: 3.3.0
6
  Tested up to: 4.7.3
7
- Stable tag: 1.8.3
8
  License: GPLv3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
4
  Tags: countdown, count down, countdown timer, jQuery countdown, countdown generator, animated countdown, countdown widget, timer, countdown clock, wp countdown timer, event countdown, widget countdown, clock, countdown timer plugin, wordpress countdown, html5 countdown, wp countdown, countdown timer widget, website countdown, date countdown, flash countdown, time counter, countdown system
5
  Requires at least: 3.3.0
6
  Tested up to: 4.7.3
7
+ Stable tag: 1.8.4
8
  License: GPLv3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
wpdevart-countdown.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Countdown Wpdevart
4
  Plugin URI: http://wpdevart.com/wordpress-countdown-plugin/
5
  Description: Countdown plugin is an nice tool to create and insert countdown timers into your posts/pages and widgets .
6
- Version: 1.8.3
7
  Author: wpdevart
8
  Author URI: http://wpdevart.com
9
  License: GPL3 http://www.gnu.org/licenses/gpl-3.0.html
@@ -20,7 +20,8 @@ class wpdevart_countdown_main{
20
  private $wpdevart_countdown_version;
21
 
22
  public $wpdevart_countdown_options;
23
-
 
24
 
25
  function __construct(){
26
 
3
  Plugin Name: Countdown Wpdevart
4
  Plugin URI: http://wpdevart.com/wordpress-countdown-plugin/
5
  Description: Countdown plugin is an nice tool to create and insert countdown timers into your posts/pages and widgets .
6
+ Version: 1.8.4
7
  Author: wpdevart
8
  Author URI: http://wpdevart.com
9
  License: GPL3 http://www.gnu.org/licenses/gpl-3.0.html
20
  private $wpdevart_countdown_version;
21
 
22
  public $wpdevart_countdown_options;
23
+
24
+ /*###################### Construct function ##################*/
25
 
26
  function __construct(){
27