Countdown Timer – Widget Countdown - Version 1.7.3

Version Description

  • Edited admin options and install database.

=

Download this release

Release Info

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

Code changes from version 1.7.2 to 1.7.3

includes/admin_menu.php CHANGED
@@ -9,7 +9,7 @@ class wpdevart_countdown_admin_menu{
9
  private $plugin_url;
10
  private $text_parametrs;
11
 
12
- /*############################### Parameters function ########################################*/
13
 
14
  function __construct($param){
15
 
9
  private $plugin_url;
10
  private $text_parametrs;
11
 
12
+ /*###################### Constract params function ##################*/
13
 
14
  function __construct($param){
15
 
includes/front_end.php CHANGED
@@ -13,6 +13,8 @@ class wpdevart_countdown_front_end{
13
 
14
  public static $id_for_content=0;
15
 
 
 
16
  function __construct($params){
17
 
18
  $this->databese_parametrs=$params['databese_parametrs'];
@@ -30,6 +32,7 @@ class wpdevart_countdown_front_end{
30
 
31
  }
32
  /*###################### Scripts and Styles part ##################*/
 
33
  public function generete_front_javascript(){
34
 
35
  wp_enqueue_script('countdown-front-end');
@@ -39,6 +42,7 @@ class wpdevart_countdown_front_end{
39
 
40
  }
41
  /*###################### Shortcode Function ##################*/
 
42
  public function wpdevart_wpdevart_countdown_shortcode( $atts,$content){
43
  self::$id_for_content++;
44
  $output_html='';
13
 
14
  public static $id_for_content=0;
15
 
16
+ /*###################### Constract params function ##################*/
17
+
18
  function __construct($params){
19
 
20
  $this->databese_parametrs=$params['databese_parametrs'];
32
 
33
  }
34
  /*###################### Scripts and Styles part ##################*/
35
+
36
  public function generete_front_javascript(){
37
 
38
  wp_enqueue_script('countdown-front-end');
42
 
43
  }
44
  /*###################### Shortcode Function ##################*/
45
+
46
  public function wpdevart_wpdevart_countdown_shortcode( $atts,$content){
47
  self::$id_for_content++;
48
  $output_html='';
includes/library.php CHANGED
@@ -1,5 +1,7 @@
1
  <?php
 
2
  /*############################### LIBRARY CODE PART ###############################################*/
 
3
  class wpdevart_countdown_setting{
4
  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');
5
  public static function get_animations_type_array($animation=''){
@@ -12,6 +14,7 @@ class wpdevart_countdown_setting{
12
  return $animation;
13
  }
14
  /*############################### ANIMATION FUNCTIONS #######################################*/
 
15
  public static function generete_animation_select($select_id='',$curent_effect='none'){
16
  ?>
17
  <select onClick="alert(countdown_pro_text)" id="<?php echo $select_id; ?>" name="<?php echo $select_id; ?>">
@@ -82,6 +85,7 @@ class wpdevart_countdown_setting{
82
  <?php
83
  }
84
  /*###################### Fonts Function ##################*/
 
85
  public static function generete_fonts($select_id='',$curent_font='none'){
86
  ?>
87
  <select onClick="alert(countdown_pro_text)" id="<?php echo $select_id; ?>" name="<?php echo $select_id; ?>">
@@ -123,6 +127,7 @@ class wpdevart_countdown_setting{
123
  }
124
 
125
  /*############################### STATIC FUNCTION #######################################*/
 
126
  public static function darkest_brigths($color,$pracent){
127
  $new_color=$color;
128
  if(!(strlen($new_color==6) || strlen($new_color)==7))
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');
7
  public static function get_animations_type_array($animation=''){
14
  return $animation;
15
  }
16
  /*############################### ANIMATION FUNCTIONS #######################################*/
17
+
18
  public static function generete_animation_select($select_id='',$curent_effect='none'){
19
  ?>
20
  <select onClick="alert(countdown_pro_text)" id="<?php echo $select_id; ?>" name="<?php echo $select_id; ?>">
85
  <?php
86
  }
87
  /*###################### Fonts Function ##################*/
88
+
89
  public static function generete_fonts($select_id='',$curent_font='none'){
90
  ?>
91
  <select onClick="alert(countdown_pro_text)" id="<?php echo $select_id; ?>" name="<?php echo $select_id; ?>">
127
  }
128
 
129
  /*############################### STATIC FUNCTION #######################################*/
130
+
131
  public static function darkest_brigths($color,$pracent){
132
  $new_color=$color;
133
  if(!(strlen($new_color==6) || strlen($new_color)==7))
includes/widget.php CHANGED
@@ -1,5 +1,7 @@
1
  <?php
 
2
  /*############################### WIDGET CODE PART ######################################*/
 
3
  class wpdevart_countdown extends WP_Widget {
4
  private static $id_for_content=0;
5
  // Constructor //
1
  <?php
2
+
3
  /*############################### WIDGET CODE PART ######################################*/
4
+
5
  class wpdevart_countdown extends WP_Widget {
6
  private static $id_for_content=0;
7
  // Constructor //
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === Countdown WordPress plugin ===
2
  Contributors: wpdevart
3
  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, time counter, countdown system
5
  Requires at least: 3.3.0
6
  Tested up to: 4.7.2
7
- Stable tag: 1.7.2
8
  License: GPLv3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -431,6 +431,10 @@ Dear users, we also recommend you to take a look for this useful plugins - [Word
431
 
432
  * Edit countdown expire time.
433
 
 
 
 
 
434
  == Wordpress Countdown step by step guide ==
435
 
436
  ### WordPress Countdown plugin options
1
  === Countdown WordPress plugin ===
2
  Contributors: wpdevart
3
  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.2
7
+ Stable tag: 1.7.3
8
  License: GPLv3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
431
 
432
  * Edit countdown expire time.
433
 
434
+ = 1.7.3 =
435
+
436
+ * Edited admin options and install database.
437
+
438
  == Wordpress Countdown step by step guide ==
439
 
440
  ### WordPress Countdown plugin options
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.7.2
7
  Author: wpdevart
8
  Author URI: http://wpdevart.com
9
  License: GPL3 http://www.gnu.org/licenses/gpl-3.0.html
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.7.3
7
  Author: wpdevart
8
  Author URI: http://wpdevart.com
9
  License: GPL3 http://www.gnu.org/licenses/gpl-3.0.html