PATH:
home
/
letacommog
/
mcr
/
wp-content
/
themes
/
betheme
/
functions
<?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 ) { $translate['translate-commented-on'] = mfn_opts_get( 'translate' ) ? mfn_opts_get( 'translate-commented-on', 'commented on' ) : __( 'commented on', 'betheme' ); 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> '. $translate['translate-commented-on'] .' <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 } } }
[+]
..
[+]
post-types
[-] theme-sidebars.php
[edit]
[-] meta-client.php
[edit]
[+]
plugins
[-] class-mfn-love.php
[edit]
[-] meta-post.php
[edit]
[-] theme-mega-menu.php
[edit]
[+]
admin
[-] theme-head.php
[edit]
[-] widget-menu.php
[edit]
[+]
widgets
[-] widget-recent-comments.php
[edit]
[-] widget-login.php
[edit]
[-] widget-flickr.php
[edit]
[-] theme-functions.php
[edit]
[-] class-love.php
[edit]
[+]
tinymce
[-] theme-menu.php
[edit]
[-] theme-hooks.php
[edit]
[-] meta-template.php
[edit]
[-] theme-woocommerce.php
[edit]
[-] meta-slide.php
[edit]
[-] meta-page.php
[edit]
[-] meta-testimonial.php
[edit]
[-] meta-layout.php
[edit]
[-] widget-recent-posts.php
[edit]
[-] meta-offer.php
[edit]
[+]
importer
[-] meta-portfolio.php
[edit]
[-] theme-shortcodes.php
[edit]
[-] widget-tag-cloud.php
[edit]
[-] widget-functions.php
[edit]
[+]
builder