<?php
class fukasawa_flickr_widget extends WP_Widget {
function __construct() {
$widget_ops = array(
'classname' => 'fukasawa_flickr_widget',
'description' => __('Displays your latest Flickr photos.', 'fukasawa')
);
parent::__construct( 'fukasawa_flickr_widget', __( 'Flickr Widget', 'fukasawa' ), $widget_ops );
}
function widget( $args, $instance ) {
// Outputs the content of the widget
extract( $args ); // Make before_widget, etc available.
$widget_title = apply_filters( 'widget_title', isset( $instance['widget_title'] ) ? $instance['widget_title'] : '' );
$fli_id = isset( $instance['id'] ) ? $instance['id'] : null;
$fli_number = isset( $instance['number'] ) ? $instance['number'] : 6;
$unique_id = $args['widget_id'];
echo $before_widget;
if ( ! empty( $widget_title ) ) {
echo $before_title . $widget_title . $after_title;
} ?>
<div class="flickr-container">
<script type="text/javascript" src="http://www.flickr.com/badge_code_v2.gne?count=<?php echo $fli_number; ?>&display=latest&size=s&layout=x&source=user&user=<?php echo $fli_id; ?>"></script>
</div><!-- .flickr-container -->
<?php echo $after_widget;
}
function update( $new_instance, $old_instance ) {
// Update and save the widget
return $new_instance;
}
function form( $instance ) {
// Get the options into variables, escaping html characters on the way
$widget_title = isset( $instance['widget_title'] ) ? $instance['widget_title'] : '';
$fli_id = isset( $instance['id'] ) ? $instance['id'] : '';
$fli_number = isset( $instance['number'] ) ? $instance['number'] : '';
?>
<p>
<label for="<?php echo $this->get_field_id( 'widget_title' ); ?>"><?php _e( 'Title', 'fukasawa' ); ?>:
<input id="<?php echo $this->get_field_id( 'widget_title' ); ?>" name="<?php echo $this->get_field_name( 'widget_title' ); ?>" type="text" class="widefat" value="<?php echo $widget_title; ?>" /></label>
</p>
<p>
<label for="<?php echo $this->get_field_id( 'id' ); ?>"><?php _e( 'Flickr ID (use <a target="_blank" href="http://www.idgettr.com">idGettr</a>):', 'fukasawa' ); ?>
<input id="<?php echo $this->get_field_id( 'id' ); ?>" name="<?php echo $this->get_field_name( 'id' ); ?>" type="text" class="widefat" value="<?php echo $fli_id; ?>" /></label>
</p>
<p>
<label for="<?php echo $this->get_field_id( 'number' ); ?>"><?php _e( 'Number of images to display:', 'fukasawa' ); ?>
<input id="<?php echo $this->get_field_id( 'number' ); ?>" name="<?php echo $this->get_field_name( 'number' ); ?>" type="text" class="widefat" value="<?php echo $fli_number; ?>" /></label>
</p>
<?php
}
}
register_widget( 'fukasawa_flickr_widget' );
?>