Version Description
Download this release
Release Info
Developer | wpdevart |
Plugin | Countdown Timer – Widget Countdown |
Version | 1.9.8 |
Comparing to | |
See all releases |
Code changes from version 1.9.7 to 1.9.8
- includes/admin_menu.php +1 -1
- includes/front_end.php +1 -1
- includes/style/jquery-ui-style.css +1 -1
- includes/style/style.css +1 -1
- includes/widget.php +4 -4
- readme.txt +1 -1
- wpdevart-countdown.php +1 -1
includes/admin_menu.php
CHANGED
@@ -9,7 +9,7 @@ class wpdevart_countdown_admin_menu{
|
|
9 |
private $plugin_url;
|
10 |
private $text_parametrs;
|
11 |
|
12 |
-
/*###################### Constract
|
13 |
|
14 |
function __construct($param){
|
15 |
|
9 |
private $plugin_url;
|
10 |
private $text_parametrs;
|
11 |
|
12 |
+
/*###################### Constract parameters function ##################*/
|
13 |
|
14 |
function __construct($param){
|
15 |
|
includes/front_end.php
CHANGED
@@ -13,7 +13,7 @@ class wpdevart_countdown_front_end{
|
|
13 |
|
14 |
public static $id_for_content=0;
|
15 |
|
16 |
-
/*###################### Constract
|
17 |
|
18 |
function __construct($params){
|
19 |
|
13 |
|
14 |
public static $id_for_content=0;
|
15 |
|
16 |
+
/*###################### Constract parameters function ##################*/
|
17 |
|
18 |
function __construct($params){
|
19 |
|
includes/style/jquery-ui-style.css
CHANGED
@@ -754,7 +754,7 @@ button.ui-button::-moz-focus-inner {
|
|
754 |
border-bottom: none;
|
755 |
border-right: none;
|
756 |
}
|
757 |
-
/* Vertically center icon */
|
758 |
.ui-spinner .ui-icon {
|
759 |
position: absolute;
|
760 |
margin-top: -8px;
|
754 |
border-bottom: none;
|
755 |
border-right: none;
|
756 |
}
|
757 |
+
/* Vertically center icon style */
|
758 |
.ui-spinner .ui-icon {
|
759 |
position: absolute;
|
760 |
margin-top: -8px;
|
includes/style/style.css
CHANGED
@@ -79,7 +79,7 @@
|
|
79 |
display:table-cell;
|
80 |
width: 10%;
|
81 |
}
|
82 |
-
/*Countdown main style
|
83 |
.countdown figure ul{
|
84 |
padding:0px !important;
|
85 |
}
|
79 |
display:table-cell;
|
80 |
width: 10%;
|
81 |
}
|
82 |
+
/*Countdown main style*/
|
83 |
.countdown figure ul{
|
84 |
padding:0px !important;
|
85 |
}
|
includes/widget.php
CHANGED
@@ -6,13 +6,13 @@ class wpdevart_countdown extends WP_Widget {
|
|
6 |
private static $id_for_content=0;
|
7 |
// Constructor //
|
8 |
function __construct() {
|
9 |
-
$widget_ops = array( 'classname' => 'wpdevart_countdown', 'description' => 'Countdown timer for widget ' ); // Widget
|
10 |
$control_ops = array( 'id_base' => 'wpdevart_countdown' ); // Widget Controls
|
11 |
parent::__construct( 'wpdevart_countdown', 'Countdown', $widget_ops, $control_ops ); // Create the widget
|
12 |
|
13 |
}
|
14 |
|
15 |
-
/* Displaying countdown in
|
16 |
|
17 |
function widget($args, $instance) {
|
18 |
self::$id_for_content++;
|
@@ -30,7 +30,7 @@ class wpdevart_countdown extends WP_Widget {
|
|
30 |
echo $after_widget;
|
31 |
}
|
32 |
|
33 |
-
/*############################### Update
|
34 |
|
35 |
function update($new_instance, $old_instance) {
|
36 |
extract( $args );
|
@@ -52,7 +52,7 @@ class wpdevart_countdown extends WP_Widget {
|
|
52 |
|
53 |
}
|
54 |
|
55 |
-
/* Function of Admin page standard options */
|
56 |
function form($instance) {
|
57 |
|
58 |
$defaults = array(
|
6 |
private static $id_for_content=0;
|
7 |
// Constructor //
|
8 |
function __construct() {
|
9 |
+
$widget_ops = array( 'classname' => 'wpdevart_countdown', 'description' => 'Countdown timer for widget ' ); // Widget code
|
10 |
$control_ops = array( 'id_base' => 'wpdevart_countdown' ); // Widget Controls
|
11 |
parent::__construct( 'wpdevart_countdown', 'Countdown', $widget_ops, $control_ops ); // Create the widget
|
12 |
|
13 |
}
|
14 |
|
15 |
+
/* Displaying countdown in the front end*/
|
16 |
|
17 |
function widget($args, $instance) {
|
18 |
self::$id_for_content++;
|
30 |
echo $after_widget;
|
31 |
}
|
32 |
|
33 |
+
/*############################### Update settings Function #######################################*/
|
34 |
|
35 |
function update($new_instance, $old_instance) {
|
36 |
extract( $args );
|
52 |
|
53 |
}
|
54 |
|
55 |
+
/* Function of the Admin page standard options */
|
56 |
function form($instance) {
|
57 |
|
58 |
$defaults = array(
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://wpdevart.com/wordpress-countdown-plugin
|
|
4 |
Tags: countdown, countdown widget, countdown timer, countdown system, countdown generator
|
5 |
Requires at least: 3.3.0
|
6 |
Tested up to: 4.9.6
|
7 |
-
Stable tag: 1.9.
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
4 |
Tags: countdown, countdown widget, countdown timer, countdown system, countdown generator
|
5 |
Requires at least: 3.3.0
|
6 |
Tested up to: 4.9.6
|
7 |
+
Stable tag: 1.9.8
|
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.9.
|
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.9.8
|
7 |
Author: wpdevart
|
8 |
Author URI: http://wpdevart.com
|
9 |
License: GPL3 http://www.gnu.org/licenses/gpl-3.0.html
|