Current File : /home/pacjaorg/public_html/wp-content/themes/pacja.../functions/widget-recent-comments.php |
<?php
/**
* Widget Muffin Recent Comments
*
* @package Betheme
* @author Muffin group
* @link http://muffingroup.com
*/
if ( ! class_exists( 'Mfn_Recent_Comments_Widget' ) ){
class Mfn_Recent_Comments_Widget extends WP_Widget {
/* ---------------------------------------------------------------------------
* Constructor
* --------------------------------------------------------------------------- */
function __construct(){
$widget_ops = array( 'classname' => 'widget_mfn_recent_comments', 'description' => __( 'The most recent comments.', 'mfn-opts' ) );
parent::__construct( 'widget_mfn_recent_comments', __( 'Muffin Recent Comments', 'mfn-opts' ), $widget_ops );
$this->alt_option_name = 'widget_mfn_recent_comments';
}
/* ---------------------------------------------------------------------------
* Outputs the HTML for this widget.
* --------------------------------------------------------------------------- */
function widget( $args, $instance ) {
if ( ! isset( $args['widget_id'] ) ) $args['widget_id'] = null;
extract( $args, EXTR_SKIP );
echo $before_widget;
$title = apply_filters( 'widget_title', $instance['title'], $instance, $this->id_base);
if( $title ) echo $before_title . $title . $after_title;
$comments = get_comments( apply_filters( 'widget_comments_args', array( 'number' => intval( $instance['count']), 'status' => 'approve', 'post_status' => 'publish', 'post_type' => 'post' ) ) );
if(is_array($comments))
{
$output = '<div class="Recent_comments">';
$output .= '<ul>';
foreach($comments as $comment)
{
$url = get_permalink($comment->comment_post_ID).'#comment-'.$comment->comment_ID .'" title="'.$comment->comment_author .' | '.get_the_title($comment->comment_post_ID);
$output .= '<li>';
$output .= '<span class="date_label">'. date_i18n( get_option( 'date_format' ), strtotime( $comment->comment_date ) ) .'</span>';
$output .= '<p><i class="icon-user"></i> <strong>'.strip_tags($comment->comment_author) .'</strong> '. __('commented on','mfn-opts') .' <a href="'. $url .'">'. get_the_title($comment->comment_post_ID) .'</a></p>';
$output .= '</li>';
}
$output .= '</ul>';
$output .= '</div>'."\n";
}
echo $output;
echo $after_widget;
}
/* ---------------------------------------------------------------------------
* Deals with the settings when they are saved by the admin.
* --------------------------------------------------------------------------- */
function update( $new_instance, $old_instance ) {
$instance = $old_instance;
$instance['title'] = strip_tags( $new_instance['title'] );
$instance['count'] = (int) $new_instance['count'];
return $instance;
}
/* ---------------------------------------------------------------------------
* Displays the form for this widget on the Widgets page of the WP Admin area.
* --------------------------------------------------------------------------- */
function form( $instance ) {
$title = isset( $instance['title']) ? esc_attr( $instance['title'] ) : '';
$count = isset( $instance['count'] ) ? absint( $instance['count'] ) : 2;
?>
<p>
<label for="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>"><?php _e( 'Title:', 'mfn-opts' ); ?></label>
<input class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'title' ) ); ?>" type="text" value="<?php echo esc_attr( $title ); ?>" />
</p>
<p>
<label for="<?php echo esc_attr( $this->get_field_id( 'count' ) ); ?>"><?php _e( 'Number of comments:', 'mfn-opts' ); ?></label>
<input id="<?php echo esc_attr( $this->get_field_id( 'count' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'count' ) ); ?>" type="text" value="<?php echo esc_attr( $count ); ?>" size="3"/>
</p>
<?php
}
}
}