Version Description
- Edit function descriptions.
=
Download this release
Release Info
Developer | wpdevart |
Plugin | Countdown Timer – Widget Countdown |
Version | 1.7.4 |
Comparing to | |
See all releases |
Code changes from version 1.7.3 to 1.7.4
- includes/admin_menu.php +3 -1
- includes/front_end.php +4 -4
- includes/library.php +1 -1
- includes/widget.php +1 -1
- readme.txt +6 -2
- wpdevart-countdown.php +1 -1
includes/admin_menu.php
CHANGED
@@ -41,7 +41,7 @@ class wpdevart_countdown_admin_menu{
|
|
41 |
return $context;
|
42 |
}
|
43 |
|
44 |
-
/*############ Insert content function ################*/
|
45 |
|
46 |
public function wpdevart_countdown_window_insert_content(){
|
47 |
//wp_enqueue_script('jquery-ui-slider');
|
@@ -401,6 +401,8 @@ class wpdevart_countdown_admin_menu{
|
|
401 |
<?php
|
402 |
die;
|
403 |
}
|
|
|
|
|
404 |
|
405 |
public function create_menu(){
|
406 |
$main_page = add_menu_page( $this->menu_name, $this->menu_name, 'manage_options', str_replace( ' ', '-', $this->menu_name), array($this, 'main_menu_function'),$this->plugin_url.'images/timer.png');
|
41 |
return $context;
|
42 |
}
|
43 |
|
44 |
+
/*############ Insert content function ################*/
|
45 |
|
46 |
public function wpdevart_countdown_window_insert_content(){
|
47 |
//wp_enqueue_script('jquery-ui-slider');
|
401 |
<?php
|
402 |
die;
|
403 |
}
|
404 |
+
|
405 |
+
/*###################### Create menu function ##################*/
|
406 |
|
407 |
public function create_menu(){
|
408 |
$main_page = add_menu_page( $this->menu_name, $this->menu_name, 'manage_options', str_replace( ' ', '-', $this->menu_name), array($this, 'main_menu_function'),$this->plugin_url.'images/timer.png');
|
includes/front_end.php
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
/*############################### Frontend Code #######################################*/
|
4 |
|
5 |
class wpdevart_countdown_front_end{
|
6 |
private $menu_name;
|
@@ -54,7 +54,7 @@ class wpdevart_countdown_front_end{
|
|
54 |
"start_time" => mktime (date("H"), date("i"), date("s"),date("n"), date("j"),date("Y")),
|
55 |
"countdown_end_type" => "time",
|
56 |
"end_date" => date('d-m-Y 23:59'),
|
57 |
-
"end_time" => "0,
|
58 |
"action_end_time" => "hide",
|
59 |
"content_position" => "center",
|
60 |
"top_ditance" => "9",
|
@@ -101,7 +101,7 @@ class wpdevart_countdown_front_end{
|
|
101 |
return $output_html;
|
102 |
}
|
103 |
|
104 |
-
/*############ Countdown JS function ################*/
|
105 |
|
106 |
public function wpdevart_countdown_javascript($parametrs_for_countedown){
|
107 |
$output_js='';
|
@@ -140,7 +140,7 @@ class wpdevart_countdown_front_end{
|
|
140 |
return $output_js;
|
141 |
}
|
142 |
|
143 |
-
/*############ Countdown CSS function ################*/
|
144 |
|
145 |
public function wpdevart_countdown_css($parametrs_for_countedown){
|
146 |
$output_css='';
|
1 |
<?php
|
2 |
|
3 |
+
/*############################### Frontend Code #######################################*/
|
4 |
|
5 |
class wpdevart_countdown_front_end{
|
6 |
private $menu_name;
|
54 |
"start_time" => mktime (date("H"), date("i"), date("s"),date("n"), date("j"),date("Y")),
|
55 |
"countdown_end_type" => "time",
|
56 |
"end_date" => date('d-m-Y 23:59'),
|
57 |
+
"end_time" => "0,8,8",
|
58 |
"action_end_time" => "hide",
|
59 |
"content_position" => "center",
|
60 |
"top_ditance" => "9",
|
101 |
return $output_html;
|
102 |
}
|
103 |
|
104 |
+
/*############ Countdown JS function ################*/
|
105 |
|
106 |
public function wpdevart_countdown_javascript($parametrs_for_countedown){
|
107 |
$output_js='';
|
140 |
return $output_js;
|
141 |
}
|
142 |
|
143 |
+
/*############ Countdown CSS function ################*/
|
144 |
|
145 |
public function wpdevart_countdown_css($parametrs_for_countedown){
|
146 |
$output_css='';
|
includes/library.php
CHANGED
@@ -84,7 +84,7 @@ class wpdevart_countdown_setting{
|
|
84 |
</select>
|
85 |
<?php
|
86 |
}
|
87 |
-
|
88 |
|
89 |
public static function generete_fonts($select_id='',$curent_font='none'){
|
90 |
?>
|
84 |
</select>
|
85 |
<?php
|
86 |
}
|
87 |
+
/*###################### Fonts Function ##################*/
|
88 |
|
89 |
public static function generete_fonts($select_id='',$curent_font='none'){
|
90 |
?>
|
includes/widget.php
CHANGED
@@ -61,7 +61,7 @@ class wpdevart_countdown extends WP_Widget {
|
|
61 |
'text_for_second' => 'Seconds',
|
62 |
'start_time' => mktime (date("H"), date("i"), date("s"),date("n"), date("j"),date("Y")),
|
63 |
'end_time_type' => 'time',
|
64 |
-
'end_time' => '0,
|
65 |
'end_time_date' => date('d-m-Y 23:59'),
|
66 |
'action_end_time' => 'hide',
|
67 |
'content' => '',
|
61 |
'text_for_second' => 'Seconds',
|
62 |
'start_time' => mktime (date("H"), date("i"), date("s"),date("n"), date("j"),date("Y")),
|
63 |
'end_time_type' => 'time',
|
64 |
+
'end_time' => '0,8,8',
|
65 |
'end_time_date' => date('d-m-Y 23:59'),
|
66 |
'action_end_time' => 'hide',
|
67 |
'content' => '',
|
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
|
5 |
Requires at least: 3.3.0
|
6 |
Tested up to: 4.7.2
|
7 |
-
Stable tag: 1.7.
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -435,6 +435,10 @@ Dear users, we also recommend you to take a look for this useful plugins - [Word
|
|
435 |
|
436 |
* Edited admin options and install database.
|
437 |
|
|
|
|
|
|
|
|
|
438 |
== Wordpress Countdown step by step guide ==
|
439 |
|
440 |
### 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.4
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
435 |
|
436 |
* Edited admin options and install database.
|
437 |
|
438 |
+
= 1.7.4 =
|
439 |
+
|
440 |
+
* Edit function descriptions.
|
441 |
+
|
442 |
== Wordpress Countdown step by step guide ==
|
443 |
|
444 |
### 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.
|
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.4
|
7 |
Author: wpdevart
|
8 |
Author URI: http://wpdevart.com
|
9 |
License: GPL3 http://www.gnu.org/licenses/gpl-3.0.html
|