Fix countdown widget

This commit is contained in:
Brian Miyaji
2014-03-25 19:28:55 +11:00
parent fcb6435237
commit da2b884af9
7 changed files with 21 additions and 25 deletions

View File

@@ -14,35 +14,35 @@ class SP_Widget_Countdown extends WP_Widget {
echo $before_widget;
if ( $title )
echo $before_title . $title . $after_title;
echo sportspress_countdown( $id, array( 'show_league' => $show_league ) );
sp_get_template( 'countdown.php', array( 'id' => $id, 'show_league' => $show_league ) );
echo $after_widget;
}
function update( $new_instance, $old_instance ) {
$instance = $old_instance;
$instance['title'] = strip_tags($new_instance['title']);
$instance['event'] = intval($new_instance['event']);
$instance['id'] = intval($new_instance['id']);
$instance['show_league'] = intval($new_instance['show_league']);
return $instance;
}
function form( $instance ) {
$instance = wp_parse_args( (array) $instance, array( 'title' => '', 'event' => '', 'show_league' => false ) );
$instance = wp_parse_args( (array) $instance, array( 'title' => '', 'id' => '', 'show_league' => false ) );
$title = strip_tags($instance['title']);
$event = intval($instance['event']);
$id = intval($instance['id']);
$show_league = intval($instance['show_league']);
?>
<p><label for="<?php echo $this->get_field_id('title'); ?>"><?php _e( 'Title:', 'sportspress' ); ?></label>
<input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo esc_attr($title); ?>" /></p>
<p><label for="<?php echo $this->get_field_id('event'); ?>"><?php printf( __( 'Select %s:', 'sportspress' ), __( 'Event', 'sportspress' ) ); ?></label>
<p><label for="<?php echo $this->get_field_id('id'); ?>"><?php printf( __( 'Select %s:', 'sportspress' ), __( 'Event', 'sportspress' ) ); ?></label>
<?php
$args = array(
'post_type' => 'sp_event',
'name' => $this->get_field_name('event'),
'id' => $this->get_field_id('event'),
'selected' => $event,
'name' => $this->get_field_name('id'),
'id' => $this->get_field_id('id'),
'selected' => $id,
'show_option_all' => __( '(Auto)', 'sportspress' ),
'values' => 'ID',
'class' => 'widefat',
@@ -60,4 +60,5 @@ class SP_Widget_Countdown extends WP_Widget {
<?php
}
}
add_action( 'widgets_init', create_function( '', 'return register_widget( "SP_Widget_Countdown" );' ) );
register_widget( 'SP_Widget_Countdown' );

View File

@@ -60,4 +60,5 @@ class SP_Widget_Event_Calendar extends WP_Widget {
<?php
}
}
add_action( 'widgets_init', create_function( '', 'return register_widget( "SP_Widget_Event_Calendar" );' ) );
register_widget( 'SP_Widget_Event_Calendar' );

View File

@@ -78,4 +78,5 @@ class SP_Widget_Event_List extends WP_Widget {
<?php
}
}
add_action( 'widgets_init', create_function( '', 'return register_widget( "SP_Widget_Event_List" );' ) );
register_widget( 'SP_Widget_Event_List' );

View File

@@ -95,4 +95,5 @@ class SP_Widget_League_Table extends WP_Widget {
<?php
}
}
add_action( 'widgets_init', create_function( '', 'return register_widget( "SP_Widget_League_Table" );' ) );
register_widget( 'SP_Widget_League_Table' );

View File

@@ -105,4 +105,5 @@ class SP_Widget_Player_Gallery extends WP_Widget {
<?php
}
}
add_action( 'widgets_init', create_function( '', 'return register_widget( "SP_Widget_Player_Gallery" );' ) );
register_widget( 'SP_Widget_Player_Gallery' );

View File

@@ -123,4 +123,5 @@ class SP_Widget_Player_list extends WP_Widget {
<?php
}
}
add_action( 'widgets_init', create_function( '', 'return register_widget( "SP_Widget_Player_list" );' ) );
register_widget( 'SP_Widget_Player_list' );

View File

@@ -222,10 +222,6 @@ final class SportsPress {
include_once( 'includes/admin/class-sp-admin.php' );
}
if ( defined( 'DOING_AJAX' ) ) {
$this->ajax_includes();
}
if ( ! is_admin() ) {
$this->frontend_includes();
}
@@ -282,13 +278,6 @@ final class SportsPress {
include_once( 'admin/hooks/register-activation-hook.php' );
}
/**
* Include required ajax files.
*/
public function ajax_includes() {
include_once( 'includes/class-sp-ajax.php' ); // Ajax functions for admin and the front-end
}
/**
* Include required frontend files.
*/
@@ -307,6 +296,7 @@ final class SportsPress {
* Include core widgets
*/
public function include_widgets() {
//include_once( 'includes/abstracts/abstract-wc-widget.php' );
include_once( 'includes/widgets/class-sp-widget-countdown.php' );
include_once( 'includes/widgets/class-sp-widget-event-calendar.php' );
include_once( 'includes/widgets/class-sp-widget-event-list.php' );